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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

checking for the playing of a video sprite syntax

Status
Not open for further replies.

raznov

Programmer
Apr 8, 2002
110
US
What is the correct syntax for checking if a video sprite is playing? For instance if you are checking whether a flash movie is playing on a certain frame you would use...

if the playing ofr sprite 10 = 1 then
do something

Any help would be appreciated
 
Use
Code:
movieRate
to determine if the video is playing:
Code:
--
put sprite(1).movieRate
-- 1.0000 -- playing
-- 0.0000 -- stopped
--
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top