Tag Archives: Flash
(more) text effects with TweenMax
EXAMPLE This is an improvement on the technique used here This one deals with linemetrics, and solves the weakness of the other one (that it only works well with monotype fonts) Here’s the class code: Note – you must have … Continue reading
Posted in Uncategorized
Tagged Actionscript, Flash, flash effects, Flex, text, text effect, text effect flex, text effects, tweenLite, tweenMax
3 Comments
Text Effects in Flex with TweenMax
I’ve just been playing around with TweenMax for a short time, playing with animated filters on a Label control in Flex. There may be better ways to do this, but I thought I’d share: example code below:
Posted in Flash, Flex
Tagged Actionscript, Flash, flash effects, Flex, text, text effect, text effect flex, text effects, tweenLite, tweenMax
2 Comments
Using Google Maps API in Flex
This example uses geocoding, getRoute, step by step directions, and printing to create a useful google map in flex.
Posted in Flex
Tagged Actionscript, Flash, Flash Google API, Flex, flex map, google, google API flex, google maps, Google Maps Flex, Map, maps
3 Comments
Undocumented Maximum FontSize
It seems that there is a 127 maximum font size for (at least) label and textArea. If you set fontSize larger than that it will stay at 127. Very annoying. (Ugly) workaround: use scaleX and scaleY to make text bigger. … Continue reading
Posted in Flash, Flex
Tagged Actionscript, Flash, Flex, font, fontSize, maximum, maximum font size, size
2 Comments
Flex ActionScript 3.0 Typewriter Effect
This is a slight modification of the Flash Typewriter effect found here: sample (right click for source)
Posted in Flash, Flex
Tagged actionscript typewriter, Flash, Flex, Flex typewriter, typewriter, typewriter effect, typing
Leave a comment
(No) Fun With HTML – Working With HTML Text In Flex
Working with HTML text in Flex [edit: found an interesting article on this recently here] I have recently been working alot populating TextFields with HTML text in Flex. I have noticed, as the community also shows with a quick google … Continue reading
Posted in Flash, Flex
Tagged Actionscript, Flash, flash supported html, Flex, html, html tags
Leave a comment
How to sell downloads from your Flex app using payloadz and paypal
I was going to write a full article on this subject, then found the following link: link! Then put the following code inside your flex application: <mx:Script> <![CDATA[ public var dlURL1:String=”http://payloadz.com/go/sip?id=youridnumber”; private function dl1():void { var url2:String = this.dlURL1 var … Continue reading
Posted in Flash, Flex
Tagged downloads, Flash, Flex, payloadz, paypal, selling downloads
15 Comments
Flex/Flash TypeError: Error #1009: Cannot access a property or method of a null object reference
I’m sure many of you have experienced this annoying error message. Here’s a recent encounter I had with it, and the fix: I was loading an swf into a flex application. The swf was compiled from an app that had … Continue reading
Posted in Flash, Flex
Tagged Actionscript, actionscript 3.0, Flash, Flex, TypeError: Error #1009: Cannot access a property or met
Leave a comment