http://jonraasch.com/blog/embedding-custom-fonts
Monthly Archives: June 2010
Mac Ipad Review
visit http://www.ubergizmo.com/15/archives/2010/04/ipad-review.html
Tweener and “256 levels of recursion were exceeded in one action list”
Tweeners’ great, but I came across one little problem the other day: when I tried to remove an externally loaded swf from the stage while it was mid-animation, Tweener could bring the whole Flash movie to a halt with the error ‘256 levels of recursion were exceeded in one action list’. Obviously that’s bad – …
Continue reading “Tweener and “256 levels of recursion were exceeded in one action list””
Preloading External Images in Flash Using the MovieClipLoader Class
Preloading External Images in Flash Using the MovieClipLoader Class The MovieClipLoader class is an ActionScript tool for loading external content such as images and Flash movies into another Flash movie. Other ways for doing this same thing is the Loader Component and the old .loadMovie() method. The MovieClipLoader class is better than those other two …
Continue reading “Preloading External Images in Flash Using the MovieClipLoader Class”
AS2 tween – tweener how to intercept when the tween is finished
Sometimes, it is needed to know when the tween animation that we have applied to a MovieClip is finished. This way, we can call other functions and carry out other codes in our Flash project. To intercept the event that is initiated by Tweener at the end of the animation, we need to pass a …
Continue reading “AS2 tween – tweener how to intercept when the tween is finished”
fscommand(“quit”) in AS3
function clickHandler(event:MouseEvent):void { fscommand(“quit”); }