QueEmpty (statement)

Syntax QueEmpty
Description Empties the current event queue.
Comments After this statement, QueFlush will do nothing.
Example

                           'This code begins a new queue, then drags a selection over a
                           'range of characters in Notepad.
                           Sub Main()
                           ????AppActivate "Notepad"
                           ????QueEmpty 'Make sure the queue is empty.
                           ????QueMouseDn ebLeftButton,1440,1393
                           ????QueMouseUp ebLeftButton,4147,2363
                           ????QueFlush True
                           End Sub