View Single Post
  #2  
Old 07-10-2013, 09:52 AM
farshizzo farshizzo is offline
WorldViz Team Member
 
Join Date: Mar 2003
Posts: 2,849
Can you provide a sample script that demonstrates the issue?

Also, here is some sample code that shows how to set the cursor using a Windows icon handle:
Code:
import win32con
import win32gui

waitCursor = win32gui.LoadCursor(0,win32con.IDC_WAIT)
viz.mouse.setCursor(waitCursor)
Reply With Quote