Jump to content

ironmankho

Active Members
  • Posts

    65
  • Joined

  • Last visited

ironmankho's Achievements

Wayfarer

Wayfarer (2/7)

0

Reputation

  1. HI i am automating this url _http://graphic.com/postsend?PostId=34026 here is my code #include <IE.au3> Local $oIE = _IECreate("http://graphic-dl.com/postsend?PostId=34026") Local $oForm = _IEFormGetObjByName($oIE, "form0") Local $oText = _IEFormElementGetObjByName($oForm, "Name") _IEFormElementSetValue($oText, "meethayaam") Local $oText = _IEFormElementGetObjByName($oForm, "email") _IEFormElementSetValue($oText, "meethayaam@gmail.com") Sleep(2000) _IEFormSubmit($oForm) code work fine. It fill 2 field but unable to submit any idea why it not work ?
  2. Download javascript render page like 'http://momentjs.com/' possible in Autoit ?
  3. HI i am trying to donwload javascript render page with below code #include <IE.au3> #include <MsgBoxConstants.au3> Local $oIE =_IECreate(<snip> Local $sHTML = _IEDocReadHTML($oIE) MsgBox($MB_SYSTEMMODAL, "Document Source", $sHTML) _IEQuit($oIE) but it is not work as i expect it navigate another page my traget is only render page of this link <snip> i will very happy if any body guide me how i achive this <snip>
  4. dantay9 , yes it is true StringRegExp is difficult to learn .... but thanks for your link ThickOfIt Thanks for your advise ....i am newbie and try understand this ..but it will more help full me if you more explain ..please ivan your suggestion and code is awesome .... but using IEImgGetCollectionhave problem ..it download all images of web page than reply .instead i using INetget it only download source code of page and then exaime ..that is why i use this
  5. hi i am extracting image link from using below code #Include <string.au3> #include <INet.au3> $Source = _INetGetSource("http://widelec.org/index.php?site=blog&action=detail&text=&blog_id=3211&page2=0&section=1&pages=100") $Between = _StringBetween($Source, '<img src="stuff/', '<p><small></small></p>') $file = FileOpen("C:\cd1.txt",1) FileWriteLine($file, $Between[0]) MsgBox(0, "Result", $Between[0]) #Include <string.au3> #include <INet.au3> ;$Source = _"c:\cd.txt" $Source = _INetGetSource("http://widelec.org/index.php?site=blog&action=detail&text=&blog_id=3211&page2=0&section=1&pages=100") $Between = _StringBetween($Source, '<img src="stuff/', '<p><small></small></p>') $file = FileOpen("C:\cd1.txt",1) FileWriteLine($file, $Between[0]) MsgBox(0, "Result", $Between[0]) Now i am get fine result like blizzard/blizzard_01.jpg"> and now my question is what type of loop i will use to get all images link like this [i know that there are 100 in number ]
  6. can it is possible it search all hard drive partition ? to specific extension file like *.doc How ?
  7. Your code is awesome ..... it is possible it search only specific extension on c: drive like *.xls
  8. Thanks for this help dantay9 & DaleHohm .that is why i love auto it ..... now complete code is #include <IE.au3> $oIE = _IECreate("http://widelec.org/zdjecie,siedziba-blizzarda,3211.html") $oH1 = _IETagnameGetCollection($oIE, "h1", 1) $a =_IEPropertyGet($oH1, "innertext") MsgBox(4096, "Test", $a, 10) #include <INet.au3> #Include <string.au3> $Source = _INetGetSource("http://widelec.org/zdjecie,siedziba-blizzarda,3211.html") $Between = _StringBetween($Source, '<h1 class="detail">', '</h1>') MsgBox(0, "Result", $Between[0])
  9. i need simple method for this ...._InetGetSource() is best ....but is there any alternative method ? i already know that heading of article is always in [<H1 class=detail>Siedziba Blizzard`a</H1>]
  10. i am trying to read specific text in web page ... want this txt into variable e.g http://widelec.org/zdjecie,siedziba-blizzarda,3211.html my target text is "Siedziba Blizzard`a" with examine with debugBer V5.3 get this [<H1 class=detail>Siedziba Blizzard`a</H1>] sorry for this type of dumb question ... i am not experent in Auto it ..but your little help will lot for me .basically i am media chance multimedia builder user.
  11. I wish to download a webpage from website http://www.ajaxmatters.com/ when we use IE to save {via save page HTML} it will like that AJAX Matters Indepth AJAX Tutorials, Articles and More.htm and folder of its pictures AJAX Matters Indepth AJAX Tutorials, Articles and More_files i already read INetGet .... but it only save txt file .... and i also know that it is possible to that with complex code like read all images then download ..but i want simplicity .... is there example OR code , idea suggestion most welcome
  12. I am creating custom google translator .. I think it is very difficult task . I only done some step i.e how open page (I already deeply read help file but it is not help full for me ) 1- #include <IE.au3> $oIE = _IECreate ("http://translate.google.com/") ; now send some text via clipboard 2. $mydata = ClipGet()
  13. it is down loader helper not a hack program .................it works normal way means it do all work that you do manually
  14. Thanks it is amazing code for Rapidshare downloader ... great work
  15. Thanks !!! it code is amazing very close to next "key" security means if you have Valid USB than you can use .............
×
×
  • Create New...