Jump to content

how to stop script


speedi
 Share

Recommended Posts

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

Link to comment
Share on other sites

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
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...