CategoryActionScript

ActionScript 3.0

Lazy Number manipulation (such as decimal places or precision)

If you want to manipulate a Number Object (variable) to a specific precision or to fixed decimal places, instead of manipulating the Number itself you can use the Number Class conversion Methods such as toFixed and toPrecision and cast the String Objects they return back to Number Objects: pi = Number(Math.PI.toFixed(2)); trace(pi); // 3.14 Not a replacement for a dedicated rounding function for...

Call to a possibly undefined method addFrameScript

I decided that I should start posting some of the little niggles that I come across everyday, and the solutions that I've found, so that other people can find them somewhat easier than I may have (although that means years of PHP problems have been lost in the mists of time!) addFrameScript is an undocumented method (does not appear in the ActionScript Language Reference) that allows you to...