Page 1 of 1

"set the cursor to" does not run

Posted: Sat Mar 29, 2008 12:50 pm
by ThierryO
Hi everybody,

I use

Code: Select all

set the cursor to none
to hide the cursor when a card is open but this does not run.
Any help is welcome.

Thierry

Posted: Sat Mar 29, 2008 12:59 pm
by BvG
most likely you need to lock the cursor, then unlock it again when you leave the card.

Code: Select all

on opencard
  lock cursor
  set the cursor to none
end opencard
documentation entries:
cursor property
lock cursor command
lockCursor property
unlock cursor command

Posted: Sat Mar 29, 2008 3:40 pm
by ThierryO
I locked the cursor and it is fixed now.
TX BvG