> > on mouseup
> > go movie "blah"
> > doThis() -- will the next movie read this command?
> > end
> 
> No. If you want handlers to execute across movies, put them into a
> script in an external linked cast -- one that all the movies share.

I might add that "go to" doesn't always behave this way.

It's counter-intuitive, especially like old coders like me, but if you
do something like this:

on mouseUp
 go to marker(1)
 doThis()
end

or

on mouseUp
 go to "some Marker"
 doThis()
end

then the second line will execute.

Like Tab says, try it. Experiments are your best learning tool.

Cordially,

Kerry Thompson

[To remove yourself from this list, or to change to digest mode, go to 
http://www.penworks.com/lingo-l.cgi  To post messages to the list, email [EMAIL 
PROTECTED]  (Problems, email [EMAIL PROTECTED]). Lingo-L is for learning and helping 
with programming Lingo.  Thanks!]

Reply via email to