Page 1 of 1

need a Windows tech person for help with a macro./script

Posted: January 31st, 2012, 11:04 pm
by tvister580
so i run this script for pvp, on my OP. thing is sometimes i accidentaly hi the hot key more then once and multiple scripts pop up. which causes me to !@#$%^* up and have to alt tab out and close them. is there anyway to lock a process to open once?

it opens up as macroplayer*32.exe and the others just duplicate it. i want to make it to it just opens once.

fyi i use grasssoft/ Advanced macro recorder-player. used it for years.

Re: need a Windows tech person for help with a macro./script

Posted: February 1st, 2012, 1:55 am
by cuervogold
If you are using autoit to make your macro do this.

Code: Register to unlock hidden link

If ProcessExists("macroplayer*32.exe") Then
    MsgBox(0, "You idiot!", "macroplayer*32 is already running.")
Exit 0
EndIf