views:

67

answers:

1

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
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