Hello, I'm new to Lingo so I apologise if this question is really basic.
Basically I want to find out the elapsed time between the start of a movie
and a mouseDown event.
I am using the following script, but the variable 'difference' is being set
to odd values -
(I was expecting the format to be the same as that of 'the long time').
Can anyone help?
Thank you :0)
Lee.

global gTheStartTime, gTimeNow

on startMovie
  gTheStartTime = the long time
end

on mouseDown
  gTimeNow = the long time
end

on stopMovie
  difference = gTimeNow - gTheStartTime
  put difference
end

[To remove yourself from this list, or to change to digest mode, go to 
http://www.penworks.com/lingo-l.cgi  To post messages to the list, email 
[EMAIL PROTECTED]  (Problems, email [EMAIL PROTECTED]). Lingo-L is for 
learning and helping with programming Lingo.  Thanks!]

Reply via email to