The problem has been noted in SWFObject’s issue log. If you encounter any problem with flashvars not showing up in IE, downgrade SWFAdress to 2.2 will solve the problem. You can download other versions of SWFAdress from SourceForge.
»
Read the rest
Why “z” is not the shortcut key for zoom any more? There’s no “z” in “Bind Tool” but why it’s configured this way? I thought Adobe is trying to standardize all shortcut keys across all its software? Why the help page is online? After I managed to set the help offline, I realized they took [...]
11 comments »
Read the rest
I’ve always been writing this. function addZero(n:int):String { if (n < 10) { return “0″ + n; }else { return “” + n; } } The function adds one leading 0 quite well but if two 0 is needed, it’s quite bad to write all the conditions to check whether it’s less than 100 or [...]
5 comments »
Read the rest
Pixel fonts tend to get blur in Flash. Most of the time the problem can be solved by setting the textfield’s coordinates (x,y) into integers but sometimes it fails to work. I’ve found a new trick to solve this problem. If you check the option of the textfield to be selectable, the texts appear clear [...]
1 comment »
Read the rest