Jump to content

Recommended Posts

Posted

Ok here I go: If Winactive ( "", "sfsf" ) Then I want to restart the script...how can i do that...I guess I could solve that with a loop, but I don't know how...pls help

Posted

I really suck at this but...

Opt ( "WinTextMatchMode", 2 )

WinWaitActive ( "", "&Send" )

If WinActive ( "", "Send as:" ) Then I want to restart the script untill Send as: is not in the window...

Send ( "text here" )

I want to send the text to the window only if that window doesen't have "send as:" in it...

Posted

If WinActive("", "Send as:") Then

Sleep(500)

Else

Send("Text Here") ; Look into ControlSend also :)

EndIf

that might be a quick fix.... it would help to see some actual code though :(

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