Change the cursor when I stop on top of an object
Moderator: Neosoft Support
Change the cursor when I stop on top of an object
Hi folks, I would need to know how to change the cursor when I stop on top of an object. I see that there is an option to change the cursors but I would like to put one of its own, in what way could it be? ... Maybe there is a way to change them all, from normal to drag and drop, etc ... Greetings and thanks!
-
- NeoSoft Team
- Posts: 5628
- Joined: Thu Mar 31, 2005 10:48 pm
- Location: Oregon, USA
- Contact:
Re: Change the cursor when I stop on top of an object
You can add some custom CSS to the styles page of the App Properties screen. For example, to change the mouse over cursor for an object named "Container1" add the following CSS code:
#Container1 {
cursor: crosshair;
}
More info about the cursor property here:
http://www.w3schools.com/cssref/pr_class_cursor.asp
#Container1 {
cursor: crosshair;
}
More info about the cursor property here:
http://www.w3schools.com/cssref/pr_class_cursor.asp
NeoSoft Support
Re: Change the cursor when I stop on top of an object
thansks Dave!