Thanks
If you want to use it in a video you could do something like:
(frame 1)
global timeofstart
on exitFrame me
timeofstart = the ticks
end
(any other frame higher than 1)
global timeofstart, elapsedticks, elapsedseconds, elapsedminutes
on exitframe
go the frame
ticksactuales = the ticks
elapsedticks = the ticks - float(timeofstart)
elapsedseconds = elapsedticks/60
elapsedminutes = elapsedseconds/60
end
I hope it works for you...
Miguel
"Carlos Gonçalves" <carlo...@terra.com.br> escribió en el mensaje
news:cgl565$76o$1...@forums.macromedia.com...
hth
johnAq