Jump to content

Helpppppppppp Meeeeeeeeeeee Please


Guest seraphicz
 Share

Recommended Posts

Guest seraphicz

hi.. i read the loop thingy in the help file but there is always expression which i dont understand can u ppl help me loop this script Please.. thank you very very very much!!!

WinWaitActive("[Conquer]")

Send("{F1}")

Sleep(400)

Send("{F2}")

Sleep(400)

Send("{F3}")

Sleep(600)

thank you again very much...

Link to comment
Share on other sites

The help file is very clear... Judging by what you said, which is minimal, I think you mean this?

WinWaitActive("[Conquer]")

While 1
   Send("{F1}")
   Sleep(400)
   Send("{F2}")
   Sleep(400)
   Send("{F3}")
   Sleep(600)
Wend

qq

Link to comment
Share on other sites

Guest seraphicz

hi.. i read the loop thingy in the help file but there is always expression which i dont understand can u ppl help me loop this script Please.. thank you very very very much!!!

WinWaitActive("[Conquer]")

Send("{F1}")

Sleep(400)

Send("{F2}")

Sleep(400)

Send("{F3}")

Sleep(600)

thank you again very much...

<{POST_SNAPBACK}>

thank u very very very much.. but the help says.. the expression need to be declared but i duno how
Link to comment
Share on other sites

Guest seraphicz

The help file is very clear... Judging by what you said, which is minimal, I think you mean this?

WinWaitActive("[Conquer]")

While 1
   Send("{F1}")
   Sleep(400)
   Send("{F2}")
   Sleep(400)
   Send("{F3}")
   Sleep(600)
Wend

<{POST_SNAPBACK}>

wait i have another problem.. i want the thing to work onli in [Conquer] window but wen the scripts starts wen i go internet or sumthing it stills click F1,2,3 anyone can help???
Link to comment
Share on other sites

wait i have another problem.. i want the thing to work onli in [Conquer] window but wen the scripts starts wen i go internet or sumthing it stills click F1,2,3 anyone can help???

<{POST_SNAPBACK}>

try to understand the tutorial in the documentation. I think you will catch how a script can be written :)
Link to comment
Share on other sites

Guest seraphicz

i need to hand up this script as fast as possible so.. pls anyone can help ? :)

heres the current script

---------------------------------------

WinWaitActive("[Conquer]")

While 1

Send("{F4}")

Sleep(5500)

Send("{F1}")

Sleep(4500)

Send("{F2}")

Sleep(150)

Send("{F3}")

Sleep(200)

Wend

Link to comment
Share on other sites

i need to hand up this script as fast as possible so.. pls anyone can help ?  :)

heres the current script

---------------------------------------

WinWaitActive("[Conquer]")

While 1

  Send("{F4}")

  Sleep(5500)

  Send("{F1}")

  Sleep(4500)

  Send("{F2}")

  Sleep(150)

  Send("{F3}")

  Sleep(200)

Wend

<{POST_SNAPBACK}>

You have to choose Controlsend instead of send but you need to know more parameter that can be display by AutoIt Windows info

PS it is always difficult to help somebody which does take the time to learn

Link to comment
Share on other sites

i need to hand up this script as fast as possible so.. pls anyone can help ?  :)

heres the current script

---------------------------------------

WinWaitActive("[Conquer]")

While 1

  Send("{F4}")

  Sleep(5500)

  Send("{F1}")

  Sleep(4500)

  Send("{F2}")

  Sleep(150)

  Send("{F3}")

  Sleep(200)

Wend

<{POST_SNAPBACK}>

Think about it...

While 1
   WinWaitActive("[Conquer]")
   Send("{F4}")
   Sleep(5500)
   Send("{F1}")
   Sleep(4500)
   Send("{F2}")
   Sleep(150)
   Send("{F3}")
   Sleep(200)
WEnd

That wasnt that hard was it?

You could even do...

While WinActive("[Conquer]")
   Send("{F4}")
   Sleep(5500)
   Send("{F1}")
   Sleep(4500)
   Send("{F2}")
   Sleep(150)
   Send("{F3}")
   Sleep(200)
WEnd

You obviously didnt look much up in the helpfile. Its all there. Not hard to understand. Do NOT demand scripts. You are lucky I even decided to help. Most people if you havent noticed just stopped helping as you are quite demanding and you arent trying to learn for yourself.

JS

AutoIt Links

File-String Hash Plugin Updated! 04-02-2008 Plugins have been discontinued. I just found out.

ComputerGetInfo UDF's Updated! 11-23-2006

External Links

Vortex Revolutions Engineer / Inventor (Web, Desktop, and Mobile Applications, Hardware Gizmos, Consulting, and more)

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...