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 to pause when reaching a marker??

Status
Not open for further replies.

nowall

IS-IT--Management
Dec 4, 2000
10
CH
hi,

my scene will be composed of several pages of text. What i want is that the first page appear, then pauses indefinitely as soon as it reaches the marker, let's say marker A.
I want to add a "next" button, which, on Mousedown, will continue the presentation, aka the 2nd page between marker A and B. Then, same as before: pause, then "next" button > page markers B-C, then pause, and so on...
I'm sure the solution is simple but i just can't find it;-)

thanx to help me!
 
frame script
on exitframe
go to the frame
end

on your next button

on mouseup
go to the frame + 1
end

or
on mouseup
go next
end
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top