At 21:59 +0100 01_03_18, Disciple1 wrote:
>Just to restate the question, what we are not succeding in doing is having a
>MIAW close through a user event.  The different solutions we have tried are
>all being failures.  Maybe someone could give us an example on how to do
>that?

In the Miaw have these 2 scripts:
(requires D8)

--------<movie script>--------
on closeWindow
   script("miawCloserClass").new(the activeWindow)
end
--------</movie script>--------

--------<parent script "miawCloserClass">--------
--miawCloserClass

property pWindow

on new me, aWindow
   pWindow = aWindow
   tell the stage to timeOut(me.string).new(0, #dummy , me)
end

on exitFrame me, aTimer
   aTimer.forget()
   pWindow.forget()
end
--------</parent script "miawCloserClass">--------

That should rid you completely of the Miaw... unless you have stored 
references to the Miaw that you haven't told us about?
Remember any reference to the Miaw must be cleared for the Miaw to 
leave memory, ie: be garbage collected. So if you by chance did 
something like:

global gMiaw
gMiaw = window "miaw"

Then you need to:
gMiaw = 0

HTH jakob

[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