10-16-2006, 05:45 PM
Of course it is possible that when a window is resized, it destroys itself and creates new window, although I have never seen this. Then better use window name, not handle.
Some info about _error variable. It contains valid information only after an error occurs and err is used, like this:
act "window that does not exist"
err
,out _error.description
In the following situation, _error will contain outdated information, ie information from last error, not from last command:
act "window that does not exist"
err
act "window that exists"
out _error.description
Some info about _error variable. It contains valid information only after an error occurs and err is used, like this:
act "window that does not exist"
err
,out _error.description
In the following situation, _error will contain outdated information, ie information from last error, not from last command:
act "window that does not exist"
err
act "window that exists"
out _error.description
