I have several instances of an object, an each of them have a text over them that counts down, sort of like "bomb timers" for each instance. I made an example cap: http://www.mediafire.com/?smxbzllyaje
The "timers" have two private variables "countdown" and "active".
If active=1 - every 1000 milliseconds subtract 1 from value countdown.
"Active" is set to 1 by clicking on an instance. (they are in containers with the text object)
The problem however is, that when I click on the second instance its timer will count down synchronized with the first timer. It's kinda hard to explain, see the .cap and see if you can figure out what I mean. It becomes very evident if you change the "every 1000 milliseconds" to "every 5000 milliseconds", and you click the second instance 3 seconds after you click the first. The second timer will change its number at the exact same time as the first timer, not 3 seconds after the first.
So what would be an easy way to get around this problem?