Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

display current time of quick time movie

Status
Not open for further replies.

Weirdooz

Technical User
Sep 15, 2002
2
ID
did anyone knows how to display current playing time of quictime movies in text member

thx
 
In a frame script you can put this enterframe handler to get it to work.

on enterframe
put sprite(1).currentTime/1000 into member("a")
end

where sprite 1 is your quickTime sprite.

currentTime is measured in milliseconds so here I divide it by 1000 to get a measure in seconds.


 
or u can do that... put

on ....
put the movietime of sprite 1
sprite 1 the sprite of the movie


end
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top