But I only want them to stay there for 10 seconds.
So I wrote a little function to clear the status field in 10 seconds.
Code: Select all
put "File Saved..." into fld "status" of this stack
send "call clear.status()" to this stack in 10 seconds
function clear.status
beep
put empty into fld "status" of this stack
end clear.status
instead of 10 seconds later. The strange thing here is,
if I put that same exact, Send line of code, in the Message Box, the
clear.status() function gets executed 10 seconds later, the way it should.
Any idea what I'm doing wrong?