I'd like a simple script for deleting my IE cookies.
It should be straight forward:
open IE
->&Tools->Internet &Options->Delete Cook&ies
click on "OK"
exit
Here's my attempt:
Run( "C:\Program Files\Internet Explorer\IEXPLORE.EXE http://www.msn.com" )
WinWaitActive( "MSN.com" )
; -> &Tools -> Internet &Options -> Delete Cook&ies
Send( "!t" )
Send( "!o" )
Send( "!i" )
; click on the yes button with Control ID 1
ControlClick( "Delete Cookies", "Delete all cookies", 1 )
; -> &File -> &Close
Send( "!f" )
Send( "!c" )
All I get the windows "doh" sound that you get when you do something invalid.
Any suggestions?