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!

Working with mov

Status
Not open for further replies.

Baixinha

Programmer
Dec 27, 2000
122
BR
I'm working with a video .MOV and I need to change this video to another one when the user rollover the mouse.

I need change the video but the other video might to start in the same frame that the first finish.

How can I do this process?
 
Not sure what exacly you are trying to do.

You can switch cast members just by doing sprite(x).member = othermoviename.

Or you can change the members file name member(x).filename = othermoviename.mov

repost if your trying for something different.
 
I do this, but I need otherwise that the other movie starts in the same frame that the first one stopped, and this don't happening (the second movie starts at the begin)
 
ahh, ok, now i get you.

curmovietime = sprite(x).movietime
sprite(x).member = othermovie
sprite(x).movietime = curmovietime
updatestage

you may want to have the new movie off the screen, sync the two then move the new one in and the old one off the screen
eg
sprite(x + 1).member = newmovie
sprite(x +1).movietime = sprite(x).movietime
sprite(x+1).loch = sprite(x).loch
sprite(x).loch = -1000

I'm keeping an eye on this post so just keep posting till its sorted out.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top