RE: MIAW closing problem

2000-11-17 Thread Jon Paul Alongi
Hi im desperately trying to create a chatroom usign the multiserver. ive managed to make the lobby and it all works fine but how iwant to be able to click on a user in the group member lsit to initiate a private chat with some one. ive got a peer to peer example but it requires the user types

Re: MIAW closing problem

2000-11-16 Thread Tab Julius
Yes, this will happen, as you have so seen. The MIAW cannot tell the stage to forget the MIAW while the MIAW is in the process of giving the command to do so. Basically, you're pulling the rug out from under the feet of the MIAW while it's in the middle of a call. You can set up very elabor

RE: MIAW closing problem

2000-11-16 Thread Sean Wilson
> I'm pretty sure someone has a more classic > "looping flagWatcher" approach handy. I also found the "looping flag-watcher" approach a bit plain-vanilla and tried a little experiment prompted by (if memory serves) Jakob's telling a list that each window maintains it's own actorList (as well as

Re: MIAW closing problem

2000-11-16 Thread Jakob Hede Madsen
Mike wrote: >I'm opening a MIAW from my projector. I have a close routine (x >in the upper right) with the following code > >on mouseUp > tell the stage to closeMiaw >end > >and in my main movie... > >on closeMiaw > if ilk(gMyMiaw) <> #window then exit -- MIAW is not opened so >exit > clos

MIAW closing problem

2000-11-16 Thread Mike Hiatt
I'm opening a MIAW from my projector. I have a close routine (x in the upper right) with the following code on mouseUp tell the stage to closeMiaw end and in my main movie... on closeMiaw if ilk(gMyMiaw) <> #window then exit -- MIAW is not opened so exit close gMyMiaw