Reliable Cursor Changes?

2008-02-25 Thread Scott Rossi
Hello List: I'm wondering if anyone has come up with a reliable way to do rollover cursor changes in Rev. I'm trying to clean up a client's multimedia stack who has lock cursor handlers all over the place, and I'm wondering if there's a simpler way to define which objects trigger cursor changes o

Re: Reliable Cursor Changes?

2008-02-25 Thread mfstuart
Hi Scott, I just tried this in a new stack... seems to work. I put 3 objects on the stack: Label Field, Field, and a button. For each object, I created a Custom Property: RollOverCursor and gave the values: 1,2, and no value, respectively for each object. For each object, I put the following sc

Re: Reliable Cursor Changes?

2008-02-25 Thread Scott Rossi
Hi Mark: > I just tried this in a new stack... seems to work. > on mouseEnter > switch (the RollOverCursor of me) > case 1 > set cursor to 76 > break > case 2 > set cursor to hand > break > default > reset cursors > end switch > lock cursor > end mouseEnter > > on