Simple analog flash clock "worldmap", specially customized for this blog. Download swf (24 kb) from download section on sidebar, upload it and insert few lines of code to embed clock on your blog. Ask for help if you need it or if you are interested for custom analog clock version. Any designer may also contact me if interested for some sort of team work in making this flash widgets for wider audience. I'm open to suggestions.
28 March 2008
Free Flash Analog Clock - WorldMap
Simple analog flash clock "worldmap", specially customized for this blog. Download swf (24 kb) from download section on sidebar, upload it and insert few lines of code to embed clock on your blog. Ask for help if you need it or if you are interested for custom analog clock version. Any designer may also contact me if interested for some sort of team work in making this flash widgets for wider audience. I'm open to suggestions.
words by
flanture
at
9:43 AM
3
comments
Links to this post
24 March 2008
Win $500 US Cold Hard Cash
Besides first prize, three more will be given to those with most votes, $100 FlashDen voucher each. Maybe this is the opportunity to start with portfolio building. Competitions are always good way to make extra effort, at least better than deadlines, that’s for sure. That gives me an idea – maybe I should run some sort of competition right here on Flanture, why not? Prizes: ads spots and text links, worth $40 per month according to current page rank or free guest posts. Free banner for six month worth $240 - hey that sounds even better than FlashDen ! Hmmm… Nah, I doubt anyone would participate.
words by
flanture
at
12:11 PM
0
comments
Links to this post
Labels: community, competitions, fun
21 March 2008
Flex Builder 3 | Developer Week
Adobe Developer Week 2008 from March 24 to 28 is another event you don’t want to miss. Choose among 20 live online sessions about Air, Flex, ColdFusion and more or choose all 20 if you like. All sessions will be recorder and posted online later. Awesome.
words by
flanture
at
10:48 AM
0
comments
Links to this post
Labels: adobe, air, downloads, flash, flex, flex builder, RIA
18 March 2008
AS3.0 book and free source code
One of those success stories appeared recently at O’Really – Learning ActionScript 3.0: A Beginner's Guide
I Getting Started
II Graphics and Interaction
III Text
IV Sound and Video
V Input / Output
VI Programming Design and Resources
Don’t be fooled that this book will not give you insight in complex concepts. You will need to fight against things like inheritance, encapsulation and polymorphism in object oriented programming, against particle systems, 9-slice scaling and even communication between ActionScript Virtaul Machines.
words by
flanture
at
8:49 AM
1 comments
Links to this post
Labels: actionscript, books, code, downloads, programming, web development
15 March 2008
Next logical step - new domain
Next logical step for me was to get myself new domain and result is www.flanture.com ! It wasn’t quite intentional, but over the months I always presented myself as Flanture, my usernames on Kongregate, Forums and other places was Flanture and this practice have helped me to brand myself and my blog(s) easier. With 1000+ backlinks this blog has become something I never expected it will be, more than hobby, less then full time occupation. I even wonder sometimes what is my primary direction blogging or flash development!
New domain is set to redirect traffic to blogspot, for now. I’m thinking to change blog template in near future if I decide to allow more advertising space.
edit: few minutes ago I run into new cool ActionScript 3.0 book, something to post about next time.
words by
flanture
at
12:12 PM
0
comments
Links to this post
07 March 2008
Steve Jobs vs Flash
Overall, users are willing to see Flash on iPhone just as much as on other mobile devices. It is estimated that over one billion devices will be Flash enabled in 2010, so why not iPhone?
Some speculations say that Adobe and Apple have unresolved disputes from past and some theories claims that situation is tightened because of positioning in future mobile industry. Insiders say that Flash is heavily tested on iPhone and it works just fine and that this is just business politics (read money).
Question is who is losing here? iPhone users without flash based RIA or flash developers? Apple or Adobe?
.
words by
flanture
at
3:19 PM
1 comments
Links to this post
04 March 2008
Math2 ActionScript functions

Some math function are simple to write but often very useful in many situations. Here is part of flanture math2 actionscript library.
sum - sum of all numbers between l and h
prod - product of all numbers between l and h
sumAr - sum of all array elements
static function sumAr(a:Array):Number {
var s:Number = 0;
for(var i=0;i < a.length;i+=1){
s=s+a[i];
}
return s;
}
prodAr - product of all array elements
static function prodAr(a:Array):Number {
var p:Number = 1;
for(var i=0;i < a.length;i+=1){
p=p*a[i];
}
return p;
}
If any of array elements is zero, last function is zero, so:
prodArIZ - product of all array elements, zeros ignored
static function prodArIZ(a:Array):Number {
var p:Number = 1;
for(var i=0;i < a.length;i+=1){
if(a[i]!=0){
p=p*a[i];
}
}
return p;
}
Homework for newbies: write function that returns all prime numbers between 1 and n?
words by
flanture
at
11:11 AM
1 comments
Links to this post
Labels: actionscript, code, examples, open source, programming, tutorials
01 March 2008
Flash / Flex / AIR development jobs widget
Actually, more precise title would be flash / flex / air development jobs widget, because we will not be limited to Flash only. Reasons for making this widget are multiple. Idea is to combine jobs postings and developers CVs in one single widget. Those of you who contacted me looking for Flash job, here is your chance. I will collect your resumes and you will get deserved exposure for free via widget when finished. I havened decided yet but probably I will limit number of resumes presented, so send your email as soon as possible.
Open your favorite email client, write down following informations and send it to:
- your photo 75x75 (not required)
- full name (required)
- year of birth (not required)
- location (not required)
- skills |flash, flex, air, cf ...| (required)
- experience |portfolio url, short description|(required)
- contact|email, msn, twitter or whatever|(required)
Your informations will not be abused. I'm NOT sending you any email, so if you want to be notified when widget is ready, check back often here or even better subscribe via full RSS feed.
.
words by
flanture
at
2:33 PM
0
comments
Links to this post
Labels: air, business, flash, flash jobs, flex, web development, widgets










