| View previous topic :: View next topic |
| Author |
Message |
DaveR Valued Contributor


Joined: 03 Sep 2005 Posts: 413 Location: Australia
|
Posted: Sat Mar 18, 2006 1:01 pm Post subject: Clear event queue |
|
|
I've seen a few comments about clearing/flushing the event queue in VDS 5. How exactly do you do this ???
I've tried adding the events to a list in a loop and clearing the list... but the evloop still goes to event(s) I tried to clear. _________________ cheers
Dave |
|
| Back to top |
|
 |
SnarlingSheep Professional Member


Joined: 13 Mar 2001 Posts: 759 Location: Michigan
|
Posted: Sun Mar 19, 2006 1:12 am Post subject: |
|
|
Using '%%event = @event()' should clear @event(). _________________ -Sheep
My pockets hurt... |
|
| Back to top |
|
 |
Serge Professional Member


Joined: 04 Mar 2002 Posts: 1480 Location: Australia
|
Posted: Sun Mar 19, 2006 1:45 am Post subject: |
|
|
| Quote: | | Using '%%event = @event()' should clear @event(). |
i find that sometimes i need to use that line twice for it to work, one after the other
serge _________________
|
|
| Back to top |
|
 |
DaveR Valued Contributor


Joined: 03 Sep 2005 Posts: 413 Location: Australia
|
Posted: Sun Mar 19, 2006 8:34 am Post subject: |
|
|
Thanks guys.
As mv script ends up with about 98 msgevents at the end of a long process I ended up using
| Code: | while @event()
wend |
_________________ cheers
Dave |
|
| Back to top |
|
 |
|