Jump to content

matys

Members
  • Posts

    9
  • Joined

  • Last visited

matys's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Oh i didn't saw that you edited your code! I wanna ask why i can't close window "Embedded Web control Test" with "Exit" at top right corner of window? Thanks
  2. I tested it on 2 computers right now, on windows 7 and 8. On both i get loop when notepad is opened. How is that possible that u don't get it ? Thanks for answer
  3. I tryed your script but it's doing same as before. Looping when notepad process is detected. Please help me!
  4. That's nothing i was testing something. How you mean flag to be toggled? Im new in autoit .. Program must all the time check if process exist if not do nothing, if exist than open GUI. Thanks for answers
  5. Hello i am making a script. The main problem is that script is looping when process is found. I want that script open only 1 GUI when process it's recognized. Here is script: #include <MsgBoxConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> while 1 If ProcessExists("notepad.exe") Then ; Check if the Notepad process is running. gui1() Func gui1() while 1 $oIE = ObjCreate("Shell.Explorer.2") ; Create a simple GUI for our output GUICreate("Embedded Web control Test", 640, 580, (@DesktopWidth - 640) / 2, (@DesktopHeight - 580) / 2, BitOR($WS_OVERLAPPEDWINDOW, $WS_CLIPSIBLINGS, $WS_CLIPCHILDREN)) GUICtrlCreateObj($oIE, 10, 40, 600, 360) GUISetState(@SW_SHOW) ;Show GUI $oIE.navigate("http://www.autoitscript.com") WEnd EndFunc ;==>gui Else sleep(10000) endif WEnd Thanks for help!
  6. VERY NICE! but i want make for cod2 aimbot! i try this but that not work good pleas helpp!
  7. hmmm this is not work mate! can u make bedder one i want full script to find black color if find color or not i get error like that i found color or if not found i not found that color.
  8. Hi this is very very cool muttley But i want to get when i push button log in to get navigate to some link. Look that one i find on page to . When u type in window username and password and click log in u will be navigate to webpage and this username and password will be insert into login form. I copy some code from page look it: (pleas help me) This code will help u! #include <IE.au3> $sURL = "www.nexopia.com" $sUserName = "Username" $sPassword = "Password" _IEErrorHandlerRegister() $oIE = _IECreate($sURL) $oFrame = _IEFrameGetCollection($oIE, 1) _IELoadWait($oFrame) $oForm = _IEFormGetObjByName($oFrame, "login") $oUserName = _IEFormElementGetObjByName($oForm, "username") $oPassword = _IEFormElementGetObjByName($oForm, "password") _IEFormElementSetValue($oUserName, $sUserName) _IEFormElementSetValue($oPassword, $sPassword)
  9. Amm this is not working :S i try i get error
×
×
  • Create New...