why is this shows up when I run the program, but when I click on position (373, 430) it does not show up
if MouseClick ( "left" , 373, 430, 1 ) = 1 then
ICG()
endif
Func ICG()
ToolTip($account & @CRLF & $computer & @CRLF & $tvid & @CRLF & $ip,0, 0,"ICG Support Info:")
Sleep(10000)
ToolTip("")
EndFunc
I want something like this. I have a map and need to make it as my wallpaper. When I click on certain cities, I would like to get a txt or msgbox to come up with more info on that city.
if MouseClick ( "left" , 373, 430, 1 ) Then
MsgBox(4096, "Test", "This is a test", 10)
EndIf
ShellExecute ("iexplore", "[url="http://www.google.com"]http://www.google.com[/url]")
Send("+{TAB 24}")
Send("{ENTER}")
Send("+{TAB 55}")
Send("hello there")
I would like to input "hello there" after having the browser tab 24 times then hit enter and then tab again 55 times. I have counted the tabs and they are fine, but nothing gets printed in the text field. Again I the website is internal so I cant post it.
it is an internal site, but basically it is a form and what I am doing is calculating the number of tabs and filling it that way, but just wondering if there was an easier way to do this?
I have autoit open a webpage, but I would like to fill out certain fields. One of the fields is a dropdown list and the other is a text field.
how would I go about doing this?
I have an rsync script that runs the backups. I would like this scipt to run only when I connect to my home wifi. I am looking for a way to run the script after I connect to my wifi
I have a directory called X\v5 but when version 6 comes it it will be called X\v6 and so on. How can I write a regular expresson that I can always go that directory no matter what version the client is on?