well i have this code:
_root.pathtime = getTimer()-game.pathTime add " ms";
it works great when i export in flash 5 but i just got flash 8 and now it says somethings wrong when i try to preview it!?
Any help would be really appreciated! :)
Printable View
well i have this code:
_root.pathtime = getTimer()-game.pathTime add " ms";
it works great when i export in flash 5 but i just got flash 8 and now it says somethings wrong when i try to preview it!?
Any help would be really appreciated! :)
Flash8 doesnt support "add", change it to "+":
_root.pathtime = getTimer()-game.pathTime + " ms";
o ok thanks a ton Tonypa!!!