I am trying to save memory and space. So instead of using the Timer for my application, I was thinking about using my main loop (ENTER_FRAME) to keep track of time that passes. Is there anything wrong about this ??
+2
A:
Depends on the situation, but either way you might want to have a look at some utility functions like getTimer() and setTimeout();
Goodluck!
George Profenza
2010-01-15 21:12:15
setTimeout() just wraps a regular Timer, so that's really not saving any memory at all. getTimer() is the way to go if you need to keep track of actual time passed.
grapefrukt
2010-01-16 12:49:19