Jump to content

mrjoli021

Active Members
  • Posts

    44
  • Joined

  • Last visited

mrjoli021's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. I belive I have a solution. I will get the mouse poistion and add +- 5 to it put thoose numbers into an array
  2. 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
  3. 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
  4. I several mouse positions and based on them I would like to display something diffrent.
  5. I am looking for a way to open a text box on mouseclick.
  6. thx used the IE Property function and it worked. Thx
  7. 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.
  8. 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?
  9. 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?
  10. 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
  11. I figured it out. thx
  12. I did read the tooltip help and the example says it is the command and after the sleep timer. Which is what I have done but it does not close.
  13. 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?
  14. that worked but what about getting the tooltip to close automatically.
  15. $icg = "Desktopicg.ico" $tv = RegRead("HKLMSOFTWAREWow6432NodeTeamViewerVersion7", "ClientId") #NoTrayIcon #include <GUIConstantsEx.au3> Opt("TrayMenuMode", 3) TraySetIcon($icg) TrayCreateItem("Account: " & @LogonDomain&""[email="&@UserName"]&@UserName[/email]) TrayCreateItem("Hostname: " & @ComputerName) TrayCreateItem("TeamViewer No. " & $tv) TrayCreateItem("IP Address: " & @IPAddress1) TrayCreateItem("") $aboutItem = TrayCreateItem("About") TraySetState() TraySetToolTip("ICG Support") ToolTip("Account: " & @LogonDomain&""[email="&@UserName"]&@UserName[/email] & @CRLF & "Hostname: " & @ComputerName & @CRLF & "TeamViewer No. " & $tv & @CRLF & "IP Address: " & @IPAddress1,0, 0,"Support Info:") Sleep(1000) While 1 $msg = TrayGetMsg() Select Case $msg = 0 ContinueLoop Case $msg = $aboutItem MsgBox(64, "About", "For Support Please contact 888-823-5975") EndSelect WEnd I would like for the icon $icg to show up instead of the autoit icon. Also the tooltip does not close.
×
×
  • Create New...