0

How do I change the mouse cursor to indicate a waiting state using Python and PythonCard?

I didn't see anything in the documentation.

Greg
  • 45,306
  • 89
  • 231
  • 297

1 Answers1

1

PythonCard builds on top of wx, so if you import wx you should be able to build a suitable cursor (e.g. with wx.CursorFromImage), set it (e.g. with wx.BeginBusyCursor) when your wait begins, and end it (with wx.EndBusyCursor) when your wait ends.

Alex Martelli
  • 854,459
  • 170
  • 1,222
  • 1,395