This is a question I’ve been wondering about for a while …
If I have a variable like this:
var sw:Number = stage.stageWidth;
and I need to use “sw” or stage.stageWidth a number of times, is my code then better optimized if I only write “sw” or might I as well write stage.stageWidth all the time?
I mean, I know it’s easier to just write “sw” but does flash “figure my code out” faster if I’ve already defined what the stageWidth is once? (sw).
Hope you understand my question, thanks