Re: Cursor in popup stack

2002-11-04 Thread J. Landman Gay
Just to complete the thread, in case anyone else is following this, here is how to get the arrow cursor in a popup stack menu. This goes in the script of an unlocked field: on mouseDown lock cursor set cursor to arrow popup "myPopupStack" end mouseDown The trick is locking the cursor (rememb

Re: Cursor in popup stack

2002-11-04 Thread J. Landman Gay
On 11/4/02 12:48 AM, andu wrote: I wonder if removing the focus from the field might make a difference. Doesn't seem to. :( -- Jacqueline Landman Gay | [EMAIL PROTECTED] HyperActive Software | http://www.hyperactivesw.com _

Re: Cursor in popup stack

2002-11-04 Thread J. Landman Gay
For the cursor issue in popup stacks, this sort of works: In the script of the unlocked field that calls the popup stack: on mouseDown set the locktext of me to true popup "myMenuStack" end mouseDown In the stack being popped up, or in the first card of it: on closeCard set the defaultstack

Re: Cursor in popup stack

2002-11-04 Thread J. Landman Gay
On 11/4/02 11:56 AM, Bill Burman wrote: I had this same persistent "I-beam" cursor problem if I was opening a substack over a mainstack - above a card with an unlocked field. The only thing I could come up with was temporarily locking the text of all fields in the main stack before topleveling th

Re: Cursor in popup stack

2002-11-04 Thread Bill Burman
must be a better solution. Bill Bill Burman, MD HWB Foundation http://www.hwbf.org >Message: 4 >Date: Mon, 04 Nov 2002 00:02:57 -0600 >From: "J. Landman Gay" <[EMAIL PROTECTED]> >Organization: HyperActive Software >To: metacard list <[EMAIL PROTECTED]> &g

Re: Cursor in popup stack

2002-11-03 Thread andu
--On Monday, November 04, 2002 00:02:57 -0600 "J. Landman Gay" <[EMAIL PROTECTED]> wrote: I'm popping up a stack under the cursor to simulate a contextual menu. The stack pops up over an editable field, so the cursor is initially an I-beam when the stack appears. I can't get the cursor to chang

Cursor in popup stack

2002-11-03 Thread J. Landman Gay
I'm popping up a stack under the cursor to simulate a contextual menu. The stack pops up over an editable field, so the cursor is initially an I-beam when the stack appears. I can't get the cursor to change to an arrow while it is over the menu stack. I've tried setting the cursor when the popu