Jump to content

Recommended Posts

Posted

So I wrote this script and forgot one thing... The count never changes, so it goes on forever...

How can it be stopped without rebooting the system.. Can't move the mouse to the taskbar...

Thanks!

script follows....

Opt("WinWaitDelay",100)

Opt("WinTitleMatchMode",4)

Opt("WinDetectHiddenText",1)

Opt("MouseCoordMode",0)

WinWait("RCN Webmail Mailbox - Inbox - Mozilla Firefox","")

If Not WinActive("RCN Webmail Mailbox - Inbox - Mozilla Firefox","") Then WinActivate("RCN Webmail Mailbox - Inbox - Mozilla Firefox","")

WinWaitActive("RCN Webmail Mailbox - Inbox - Mozilla Firefox","")

$i = 0

do

MouseMove(704,322)

MouseDown("left")

MouseUp("left")

MouseMove(458,343)

MouseDown("left")

MouseUp("left")

MouseMove(708,320)

MouseDown("left")

MouseUp("left")

MouseMove(469,342)

MouseDown("left")

MouseUp("left")

Until $i = 30

Posted

So I wrote this script and forgot one thing... The count never changes, so it goes on forever...

How can it be stopped without rebooting the system.. Can't move the mouse to the taskbar...

Thanks!

HotKeySet("{ESC}", "_Quit")

; ... the rest of the script

Func _Quit()
      Exit
EndFunc

:)

Valuater's AutoIt 1-2-3, Class... Is now in Session!For those who want somebody to write the script for them: RentACoder"Any technology distinguishable from magic is insufficiently advanced." -- Geek's corollary to Clarke's law
Posted

True... didn't really look at his script :) ctrl alt del. End process.

tried that... since the mouse is moving continuesly, I could not select the task and click it....

Posted

You make it harder than it has to be? He already been told to use HotkeySet.

Yes I understand that now and I thank you.... The point was what if I forgot to put the hotkeyset in there....

Posted

navigate with tab, arrows, ctrl + tab

thanks! I was trying to figure out how to do it with the keyboard, but didn't quite make it work. Now I know how!!!

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...