Waitカーソル変更

http://www.allshadow.com/2008/04/23/how-to-change-the-waiting-cursor/
標準4種類+追加6種類が同封されているが、(like the Vista one)を入れてみる
http://allshadow.com/forum/viewtopic.php?f=3&t=1188&st=0&sk=t&sd=a&start=20#p7570

回転が微妙にずれている気がする^^;
違うものに変更する時に、一々レジストリを修正する必要がある
(「HKLM\Software\Marshall\…」と書いてあるが、「HKCU\Software\Marshall\…」だった)
面倒なのでMortScriptを使う、あぁ便利

cursor[1]="BlueGlass"
cursor[2]="Butterfly"
cursor[3]="Crystal"
cursor[4]="Tux"
cursor[5]="vista"

idx=Choice("Waitカーソル" , "Waitカーソルを", 0, 0, cursor)
if (idx<>0)
    RegWriteString( "HKCU", "Software\Marshall\MarshallWaitCursor", "CurrentSkin", cursor[idx] )
    Run("\Program Files\Marshall WaitCursor\MWCReload.exe")
endif