Page 1 of 1

On topstack???

Posted: Sun Mar 23, 2008 8:52 pm
by david_ff
I give up; this is probably so darn easy but:
how do you sent a message when you click on window to make it the top window. I've tried

on librarystack
send mouseup to btn "Test"
end librarystack
but that doesn't work.

Thanks, Dave

Posted: Sun Mar 23, 2008 9:08 pm
by BvG
not every term is named as one would expect:

resumestack
and
suspendstack

Try this

Posted: Sun Mar 23, 2008 10:51 pm
by ChristopherBodell
Try:
[ send "mouseUp" to btn "test" ]

with quotes around mouseUp, or you can:

[ systemWindow stack "stackname" ] --or
[ set the systemWindow of stack "stackname" to true ]


--Christopher Bodell

Thanks!

Posted: Sun Mar 23, 2008 11:00 pm
by david_ff
Thanks! It is annoying that 'resumestack' is not listed in the filtered list of messages in the Transcript language dictionary (Help).
BvG wrote:not every term is named as one would expect:

resumestack
and
suspendstack