Ric has a code for a animated cursor. Best thing is, no media needed!
position mouse 100,100
sync on
load dll "user32.dll",1
file$="C:WINDOWSCursorswagtail.ani"
newcursor=call dll(1,"LoadCursorFromFileA",file$)
oldcursor=call dll (1,"SetCursor",newcursor)
cursor=newcursor
do
call dll 1,"SetCursor",cursor
if spacekey()=1 and keydown=0 and cursor=newcursor then cursor=oldcursor:keydown=1
if spacekey()=1 and keydown=0 and cursor=oldcursor then cursor=newcursor:keydown=1
if spacekey()=0 then keydown=0
sync
loop
edit
ress spacebar to toggle between the cursors