"set the cursor to" does not run

LiveCode is the premier environment for creating multi-platform solutions for all major operating systems - Windows, Mac OS X, Linux, the Web, Server environments and Mobile platforms. Brand new to LiveCode? Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
ThierryO
Posts: 7
Joined: Thu Mar 13, 2008 11:35 am

"set the cursor to" does not run

Post by ThierryO » Sat Mar 29, 2008 12:50 pm

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

BvG
VIP Livecode Opensource Backer
VIP Livecode Opensource Backer
Posts: 1239
Joined: Sat Apr 08, 2006 1:10 pm
Contact:

Post by BvG » Sat Mar 29, 2008 12:59 pm

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
Various teststacks and stuff:
http://bjoernke.com

Chat with other RunRev developers:
chat.freenode.net:6666 #livecode

ThierryO
Posts: 7
Joined: Thu Mar 13, 2008 11:35 am

Post by ThierryO » Sat Mar 29, 2008 3:40 pm

I locked the cursor and it is fixed now.
TX BvG

Post Reply