Change the cursor when I stop on top of an object

General questions about NeoAppBuilder - our rapid application development tool for building HTML5, web and mobile apps.

Moderator: Neosoft Support

Locked
Palamar
Posts: 161
Joined: Wed Apr 06, 2005 4:34 pm

Change the cursor when I stop on top of an object

Post by Palamar »

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 Support
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

Post by Neosoft Support »

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
NeoSoft Support
Palamar
Posts: 161
Joined: Wed Apr 06, 2005 4:34 pm

Re: Change the cursor when I stop on top of an object

Post by Palamar »

thansks Dave!
Locked