I want to change the mouse pointer to an hourglass while a particular proc is running, no matter where the user moves the mouse. Per the DM help, I created a mouse.dmi file with icon_state "all" as the hourglass, and used the following code in the beginning of the time-consuming proc:
if(usr:client && !usr:auto)
usr:client.mouse_pointer_icon = 'mouse.dmi' // hourglass
This compiled fine, but did absolutely nothing when I ran the proc. I also tried "mouse.dmi", which compiled but did nothing. Any suggestions?