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!

how do i pause playback automatically?

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
i urgently have to make a director presentation that does these things! help me!

1)starts up
2)pauses by itself in the first frame
3)pressing the mouse button starts a quicktime movie.
4)after movie finishes a menu with 3 options of playing other quicktime movies appears
5)after playing menu choice, menu returns.

is this hard??

i'm lost!
 
on frame one have a frame script that is nothing more than

on exitframe
go to the frame
end

Set the QT movie to paused at start, create a play button that tells the QT movie to play. Now comes the fun part, on teh quicktime movie have a script something like
on exitframe
if sprite(1).movietime = member(qtmember).movietime then
go to the frame + 1
end if
end

on frame 2 you will have your next menu that basically repeats the same kind of thing. I would go into more detail but I have a project I need to research, develop and test in under 3 days.

No, its not hard to someone who knows Director, but if your just starting out it probably is. Draw a diagram, working out how your code needs to flow is 80% of the job. you can always look up how to write the code if you know what you need to do.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top