>On closeWindow
>Tell thestage to go to frame x
>End
>
>OR
>
>On stopmovie("mymiaw")
>Forget(the activeWindow)
>End
>
>OR
>
>On closeWindow forget(the activeWindow)
>
>OR
>
>On closeWindow forget window("nameofwindow")


I'm pretty sure you just typed these in from memory, but on the off 
chance you pasted them, none of them are right. Forget isn't a 
function, so the handler to close the window should be:

on closewindow
    forget the activewindow
end

To tell the stage to do something, you would say:

on closewindow
    tell the stage to go to frame x  --the stage is two words, not one
end


As I say, I think you typed them in here, and that your real routines 
may be correct syntax, but maybe you didn't do both things in 
combination:

on closewindow
    forget the activewindow
    tell the stage to go to frame x
end


This makes me think, who gets the closewindow message anyway? It 
could be that the stage is getting it, in which case you would put 
this into the stage movie script, and not in the MIAW at all:

on closewindow
    forget the activewindow
    go x
end

[To remove yourself from this list, or to change to digest mode, go to
http://www.penworks.com/LUJ/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