Jump to content

Unfrog

Members
  • Posts

    11
  • Joined

  • Last visited

Everything posted by Unfrog

  1. I've the HTML script like this : <tr valign="center"><td width="100%"> <div id="div__4668003_0"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td valign="middle" width="5%"> <input name="cg__4668003" type="radio" value="0" /> </td> <td class="radiolist" width="95%"> <span class="style4668003">Yes</span> </td> </tr> </table> </div> </td></tr> Plz, Help me use _FFFormRadioButton for this . And Use _FFFormCheckBox for that one . <tr valign="center"><td width="100%"> <div id="div__4668004_0"> <table border="0" cellpadding="0" cellspacing="0" width="100%"> <tr> <td valign="middle" width="5"> <input name="cg__4668004" type="checkbox" value="1" /> </td> <td class="checklist" width="275"> <span class="style4668004">Adhesive Bandages</span> </td> </tr> </table> </div> </td></tr> Thx
  2. thx . Now i see. I'm looking for the old function _FFclickXY . somebody help me
  3. >"C:\Program Files\AutoIt3\SciTE\..\autoit3.exe" /ErrorStdOut "C:\Documents and Settings\UserXP\Desktop\testforworks.au3" __FFStartProcess: ""C:\Program Files\Mozilla Firefox\firefox.exe" -new-window " http://vdict.com/" -repl 4242 -P Default _FFConnect: OS: WIN_XP WIN32_NT 2600 Service Pack 3 _FFConnect: AutoIt: 3.3.0.0 _FFConnect: FF.au3: 0.6.0.0b-5 _FFConnect: IP: 127.0.0.1 _FFConnect: Port: 4242 _FFConnect: Delay: 2ms _FFConnect: Socket: 1700 __FFSend: try{window.content.top.document.browserDOMWindow}catch(e){'_FFCmd_Err';}; __FFRecv: __FFSend: try{navigator.userAgent}catch(e){'_FFCmd_Err';}; __FFRecv: Mozilla/5.0 (Windows; U; Windows NT 5.1; vi; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 _FFConnect: Browser: Mozilla/5.0 (Windows; U; Windows NT 5.1; vi; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 __FFSendJavascripts: Sending functions to FireFox .......... done _FFLoadWait: ................... loaded in 4855ms >Exit code: 0 Time: 11.380 Nothing change , I've habit write full code and my English is very bad.So i test it on vdict site .With any iframe , I don't care
  4. _FFFrameEnter doesn't work . Help me. #include <FF.au3> _FFStart("http://vdict.com/",Default,1,False,"127.0.0.1",4242) sleep (2000) _FFFrameEnter(4) >"C:\Program Files\AutoIt3\SciTE\..\autoit3.exe" /ErrorStdOut "C:\Documents and Settings\UserXP\Desktop\testforworks.au3" __FFStartProcess: ""C:\Program Files\Mozilla Firefox\firefox.exe" -new-window "http://vdict.com/" -repl 4242 -P Default _FFConnect: OS: WIN_XP WIN32_NT 2600 Service Pack 3 _FFConnect: AutoIt: 3.3.0.0 _FFConnect: FF.au3: 0.5.3.10b _FFConnect: IP: 127.0.0.1 _FFConnect: Port: 4242 _FFConnect: Delay: 2ms _FFConnect: Socket: 1704 __FFSend: try{window.content.top.document.browserDOMWindow}catch(e){'_FFCmd_Err';}; __FFRecv: __FFSend: try{navigator.userAgent}catch(e){'_FFCmd_Err';}; __FFRecv: Mozilla/5.0 (Windows; U; Windows NT 5.1; vi; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 _FFConnect: Browser: Mozilla/5.0 (Windows; U; Windows NT 5.1; vi; rv:1.9.1.5) Gecko/20091102 Firefox/3.5.5 __FFSendJavascripts: Sending functions to FireFox .......... done _FFLoadWait: ................. loaded in 4318ms >Exit code: 0 Time: 10.947
  5. I'm writing a basic script as follows: #Include <File.au3> $FileFullPath = @ScriptDir & "\Test.txt" #Include <Array.au3> $FileOpen = FileOpen($FileFullPath, 0) If $FileOpen=-1 Then MsgBox(0, "Notice", "Cannot open file") Exit EndIf $i = 1 $FileCountLines = _FileCountLines($FileFullPath) Global $Array[1] Do $FileReadLine = FileReadLine($FileOpen, $i) $StringSplit = StringSplit($FileReadLine, ":") _ArrayAdd($Array, $StringSplit[1] & ":" & $StringSplit[2]) _ArrayAdd($Array, $StringSplit[3]) $i = $i + 1 Until $i = $FileCountLines + 1 _ArrayDisplay($Array, "Show Infor") With file test.txt is : C:\Program Files\Yahoo!\Messenger\YahooMessenger.exe:10000 C:\Chrome\chrome.exe:20000 D:\Games\e-Games\NewGAME\~Launcher.exe:15646 C:\Program Files\Muziic\Muziic.exe:1654321 I want to write a simple script , it will be run Applications in test.txt with the number is time out.But I don't know how . Sorry , I'm newbie
  6. Delete.Sorry .Wrong topic
  7. Sorry , my English is not good I plan to write simple code, when I turn on FF it will change my IP with any socks: D
  8. Hi I use Firefox3 How do I change the my IP by Sock5 with FF.au3 I can not access many websites in the U.S. because Firewall Thx for help.
  9. I see , thx So I want to fake my IP to any socks (ex socks5), how i can do that sorry for my english is quite bad
  10. #Include <FF.au3> _FFStart() ; trying to connect to a running FireFox with MozRepl on If _FFConnect("204.188.224.100",1080, 3000) Then ; open a page _FFOpenURL("http://www.ip-adress.com/") Sleep(3000) ; disconnect from FireFox If _FFDisConnect() Then MsgBox(64, "", "Disconnected from FireFox!") Else MsgBox(64, "", "Can't connect to FireFox!") EndIf EndIf What wrong FF not to http://www.ip-adress.com/ SciTE : please !help me
  11. how I can automatically change my IP on FF I can't use _FFConnect("123.24.235.254",3125,1000) it always error
×
×
  • Create New...