Sep 15, 2002 #1 Weirdooz Technical User Joined Sep 15, 2002 Messages 2 Location ID did anyone knows how to display current playing time of quictime movies in text member thx
Sep 16, 2002 #2 archerofloaf Technical User Joined Jul 18, 2001 Messages 128 Location US 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. Upvote 0 Downvote
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.
Jan 10, 2003 #3 alefka Programmer Joined Jan 10, 2003 Messages 1 Location GR or u can do that... put on .... put the movietime of sprite 1 sprite 1 the sprite of the movie end Upvote 0 Downvote