Re: lock screen doesn't!

2005-11-20 Thread AbilityForms
In a message dated 11/19/05 11:58:23 PM, [EMAIL PROTECTED] writes: Hi everyone, I'm using Mac OSX. Why is it that when I use the following script I get a flash of stack otherStack? I thought lock screen wouldn't allow that to happen. on mouseUp      lock screen      push

Re: lock screen doesn't!

2005-11-20 Thread Raymond E. Griffith
I wonder if adding the following might achieve what you are looking for: on mouseUp open invisible stack OtherStack to false end mouseUp I don't think you'd need to lock or unlock the screen. Being invisible, you would not see the stack, so no flash, and no need to push or pop the card

Re: lock screen doesn't!

2005-11-20 Thread Ken Ray
On 11/20/05 8:26 AM, Raymond E. Griffith [EMAIL PROTECTED] wrote: I wonder if adding the following might achieve what you are looking for: on mouseUp open invisible stack OtherStack to false Actually you don't need the to false part of this (I'm sure it was a copy/paste error)... but

Re: lock screen doesn't!

2005-11-20 Thread Tracey Griffith
On 11/20/05 1:20 PM, Ken Ray [EMAIL PROTECTED] wrote: On 11/20/05 8:26 AM, Raymond E. Griffith [EMAIL PROTECTED] wrote: I wonder if adding the following might achieve what you are looking for: on mouseUp open invisible stack OtherStack to false Actually you don't need the to

Re: lock screen doesn't!

2005-11-19 Thread Ken Ray
On 11/19/05 12:52 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi everyone, I'm using Mac OSX. Why is it that when I use the following script I get a flash of stack otherStack? I thought lock screen wouldn't allow that to happen. on mouseUp lock screen push cd go stack

Re: lock screen doesn't!

2005-11-19 Thread AbilityForms
In a message dated 11/19/05 2:19:47 PM, [EMAIL PROTECTED] writes: Hi everyone, I'm using Mac OSX. Why is it that when I use the following script I get a flash of stack otherStack? I thought lock screen wouldn't allow that to happen. on mouseUp      lock screen      push cd     

Re: lock screen doesn't!

2005-11-19 Thread Ken Ray
On 11/19/05 2:38 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: In a message dated 11/19/05 2:19:47 PM, [EMAIL PROTECTED] writes: Hi everyone, I'm using Mac OSX. Why is it that when I use the following script I get a flash of stack otherStack? I thought lock screen wouldn't allow that