I have a button component with 3 states: normal, hover, pressed. When I launch prototype, cursor changes to a hand when I hover, but return to an arrow mode when I press. Is there any way to fix it?
+1 While pressed the cursor should stay pointer, for sure
But here’s a little workaround: connect the pressed state to your default state with a ‘while pressing’ condition and ‘change to’ action too. This will not change the original operation of the button (because you’re already pressing, haha :)), but your cursor stays pointer.
1 Like
thanks! works for me