Adobe Flash CS5.5 and AS3 – How to create a basic, but clean and simple Flash Preloader

One of the problems many flash developers face is creating a preloader that works correctly. If your like me, my first attempt resulted in asking the question, “Why does my preloader first appear on stage beginning at around 70% complete …

Adobe Flash CS5.5 and AS3 – Classic TextField vs. TLFTextField for password usage

The following demonstrates how to use the Classic TextField and the TLFTextField for the purposes of creating a password behavior type text.

Classic Text

Drag a Text Tool to the stage and call the Instance Name, txtPassword
Choose ‘Classic Text’ …

Adobe Flash CS5.5 and AS3 – Click event from frame 1 that calls frame 2 causes click event in frame 2 to fire also

If you compile your game with Flash Player 9 (Publish Settings), this is not an issue. When the Flash Player is set to 10 and above is when propagation occurs.

To prevent this from happening, add the following code…

event.stopPropagation();