So if you embed an animated cursor on a GUI with GUICtrlCreateIcon the animation goes quite slow. Is there a way to speed it up?
#include <GUIConstants.au3>
GUICreate('', 64, 64)
GUICtrlCreateIcon('C:\windows\cursors\aero_busy_l.ani', 0, 0, 0, 64, 64)
GUISetState()
While GUIGetMsg() <>...