Jump to content

Command3r

Active Members
  • Posts

    89
  • Joined

  • Last visited

About Command3r

  • Birthday 01/04/1997

Profile Information

  • Location
    Dark Side
  • Interests
    Autoit - FL Studio - PS CS6

Recent Profile Visitors

510 profile views

Command3r's Achievements

  1. LOL.. i read it 4 times to see the "MEDIA_PLAY_PAUSE}" but it says Windows 2000xp only.. i want it on windows 7 what do u mean??
  2. Hello, is there anyway for autoit to send "PlayPause&Stop" & "PreviousNext" keys?? it's a special keys and i don't know how to detectknow them. any helps?
  3. that's what i was looking for, thanks bro <3
  4. is there any command to wait if _IEAction is done?? e.g. [auotit] $oIE = _IECreate("http://www.autoitscript.com/forum/index.php") _IELoadWait($oIE) _IEAction($oIE, "back") ; wait after loading the previous page ; then a command [/autoit] Thanks.
  5. He is developer now, lol the post from 2010 !!
  6. Hello everybody, hope you be okay. I want to search for 2 words on a web-page. search for "Images" if found Then Do "....." and if found "Blabla" Then Do "....." here's an example #include <IE.au3> $oIE = _IECreate("www.google.com/", 1) _IELoadWait($oIE) Func _SearchWord() $IEtxt = _IEBodyReadText($oIE) $wntdTXT = StringInStr($IEtxt, "Images") If $wntdTXT = "Images" Then ; DO SOME COMMANDS ElseIf $wntdTXT = "BLABLA" Then ; DO ANOTHER COMMANDS EndIf endfunc the problem here, is StringInStr "Returns the position of the substring." not the string or i mean not 1 or not. i don't know i explaind well or not, but the Script shows what i want to say Thanks
  7. you can do like mlipok told you. Here an Example for Switch method $msg = MsgBox(2, "", "Select anything") Switch $msg Case 3 MsgBox(0, "", "You pressed Abort") Case 4 MsgBox(0, "", "You pressed Retry") Case 5 MsgBox(0, "", "You pressed Ignore") EndSwitch and for IF method $msg = MsgBox(2, "", "Select anything") If $msg = 3 Then MsgBox(0,"", "You pressed Abort") ElseIf $msg = 4 Then MsgBox(0,"", "You pressed Retry") ElseIf $msg Then MsgBox(0,"", "You pressed Ignore") EndIf do what's better for u, i don't really know whats diffirence hope this what you're looking for If $msgcom = 1 then ; if pressed OK then sleep($time) ; wait the time you want shutdown(32) ; shutdown after waiting ElseIf $msgcom = 2 ; if pressed cancel then msgbox(0, "", "standby is canceled") ; appear the msgbox Endif ; closing the If statement EDIT: add IF method EDIT2: your script
  8. tired of trying, it seems there's one form, but actually there's 2 here's the site and i hope i didnt break the rules http://sj-sro.zapto.org/
  9. @EKY32 notworking also :/
  10. @Dale i tried that but didn't work :S #include <IE.au3> Local $oIE = _IECreate("www.thewebsite.com", "1") _IELoadWait($oIE) $oForm = _IEFormElementGetCollection($oIE, 0) _IEFormElementSetValue($oForm, "testttt")
  11. hello, i have problem that the website i want to fill forms in it has no object name or id in google there's _IEFormGetObjByName($oIE, "f") ; the obj name is "f" _IEFormElementGetObjByName($oForm, "q") ; and the form is "q" in website i want, there's no the fObjName PART. what should i do? the source of the forms </div> <div id="rightcontent"> <div class="box_one"> <div class="box_one_title">User panel</div> <form action="/" method="post"> <table border='1' cellpadding='0' cellspacing='0'> <form method='post' action='index.php'> <input placeholder='Username' name='username' autocomplete='off' class='login_input' type='text'><br> <input placeholder='Password' name='password' autocomplete='off' class='login_input' style='margin-top: -1px;' type='password'><br> <input value='login' name='submit' class='loginbtnwidth' style='width:100%;margin-top: 4px;' type='submit'><br> </form> </table> <br /> <center> <a href='?pg=reg' class='button small green'>&nbsp;&nbsp;Register Now !&nbsp;&nbsp;</a><a href='?pg=forgotpw' class='button small gray'>Forgot Password ?</a> </center> </div> any help would be appreciated, thanks.
  12. Hello, i need to Split big numbers e.g. 20000 make it 20,000 how could i do that??
×
×
  • Create New...