Hi kjmcneish, and welcome to the forums,
To change cursor you can add a little bit of custom JS. First, select your element that you want to have different cursor style, and under Base Object properties > General > ID, give it a name, for example MyButton. Next, under Actions > mouseover, choose Custom JavaScript and enter following line:
Code:
controller.getElementById('MyButton').style.cursor = "pointer";
Please also take a look at documentation about Custom JS in Animator here: http://docs.sencha.com/animator/1-3/...de/advanced_js
Also, there are different cursor styles available, for reference take a look here: http://www.w3schools.com/cssref/pr_class_cursor.asp