Jump to content

Hasher

Active Members
  • Posts

    172
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Hasher's Achievements

Prodigy

Prodigy (4/7)

0

Reputation

  1. Resolved. I was doing something stupid!
  2. Hi All , Running a command window for Curl. When I pass it as a hardcorded string it works . Example"https://www.test.com/get.php?order=BuhbBUgug== -o C:\Users\USER\Desktop\Data\" & $c & ".txt But when I use the Base64 variable it fails . Example https://www.test.com/get.php?order=" & $encoded & " -o C:\Users\USER\Desktop\Data\" & $c & ".txt" Tried Stripping White spaces and Carriage returns . Any suggestions ?
  3. Hi all, Does anyone know of similar software to Autoit to control Android apps on Android ?. If not would it be possible to use an Android emulator on windows and get Autoit to control the Emulator apps. Has anyone had any experience with this ? Thanks
  4. Hi guys , Having trouble accessing a frame inside a webpage that links to another site. Smallest html I have extracted is : <html dir="ltr"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <link rel="stylesheet" type="text/css" href="https://www.yandex.ru/yandexmoney/api2/r20170606154550/styles__ltr.css"> <script type="text/javascript" src="https://www.yandex.ru/yandexmoney/api2/r20170606154550/yandexmoney__en.js"> </script><script type="text/javascript" charset="UTF-8" src="//www.yandex.ru/js/bg/DMSYzB5CxBbmmrDh6DpQqVSQFLOwGgAQHKAIm36unqo.js"></script><style></style></head> <body><div class="rc-anchor-alert"></div> <input type="hidden" id="yandexmoney-token" value="03AOPBWq9LTXlVs0rh9LgtF9O4nOZ16ZxbBqk-ucJLf1lwCXRC8PIDUHySzgvgpuvGfnrTeb0yepp5ePD38KKuGyB_yKA9vYlmZNcJcj0OKw-PbH8oi-Lv3xyOA8ttnRMUIshnTJqaoLYFXc7E_DSf3EONs8efGw2NumsS_nC3SJpm01ewO4VSnIU33QKse98XyPlehJn25HQqsc7nrbXjZCFkKJpgtahIgUnGSfR9OI7Aa8_0SvD26qgHsLEvGqdFz8fdzLGvWhzTxTgJGDGtCJPYmfxyidXobcLKNyK6Q3uJovXytfSU2OCyDDjBTMU1G90yA-KPoNNXDnmeSBc7TgPk9JYOmPMWccVU5e6VkL1yKwCfUelN7rWL6xr3M-oItG45kmhpQ2JooOuyMI5DpSBO62DbXh5-jaj0eSIzQUGcsN1JQedMAToEeoLQEmJv1qVPEIPyOOlB"> Trying to access the value "03AOPBWq9LTXlVs0rh9LgtF9O4nOZ16ZxbBqk-ucJLf1lwCXRC8PIDUHySzgvgpuvGfnrTeb0yepp5ePD38KKuGyB_yKA9vYlmZNcJcj0OKw-PbH8oi-Lv3xyOA8ttnRMUIshnTJqaoLYFXc7E_DSf3EONs8efGw2NumsS_nC3SJpm01ewO4VSnIU33QKse98XyPlehJn25HQqsc7nrbXjZCFkKJpgtahIgUnGSfR9OI7Aa8_0SvD26qgHsLEvGqdFz8fdzLGvWhzTxTgJGDGtCJPYmfxyidXobcLKNyK6Q3uJovXytfSU2OCyDDjBTMU1G90yA-KPoNNXDnmeSBc7TgPk9JYOmPMWccVU5e6VkL1yKwCfUelN7rWL6xr3M-oItG45kmhpQ2JooOuyMI5DpSBO62DbXh5-jaj0eSIzQUGcsN1JQedMAToEeoLQEmJv1qVPEIPyOOlB" Any help would be appreciated ! Thanks Paul
  5. Hi Subz and Danp2 .No luck with either of your code , even tried going back to my original . Seems Auto-it can't handle this adequately . Will try in JavaScript
  6. http://www.dmcretail.com/RetailSelect.aspx select a button and it goes to a product listing page http://www.dmcretail.com/productSearch.aspx It does have a form .I want to select a dropdown box. Seems objects have a ID but not a name
  7. Hi Subz that was my first try. That thows this error --> IE.au3 V2.4-0 Warning from function _IEGetObjById, $_IEStatus_NoMatch (ct101)
  8. Hey all I am trying to select a drop down box in a webpage and make a selection. Do this easy in the past but this page is making it hard .Cut down my code significantly for this post. Seems to be only one form on the page and only has an ID but no name #ctl01<form method="post" action="./productSearch.aspx" id="ctl01"> Can someone tell me what I am doing wrong? current error is : --> IE.au3 V2.4-0 Warning from function _IEFormElementGetObjByName, $_IEStatus_NoMatch #include <IE.au3> Local $oIE = _IECreate("http://www.dmcretail.com/RetailSelect.aspx") Local $oSubmit = _IEGetObjByName($oIE, "btnCase") _IEAction($oSubmit, "click") ;~ loads to http://www.dmcretail.com/productSearch.aspx _IELoadWait($oIE) $oForm = _IEFormGetCollection($oIE, 0) $oSelect = _IEFormElementGetObjByName($oForm, 'ctl00$ContentPlaceHolder1$RadPanelBar1$i0$i8$ProductLine')
  9. It's over 800 lines of code , I am trying to narrow it down
  10. Ok so I have autoit app which runs in a compiled state . About every 10th time it runs it throws up an error "Line 5129 : Error in Expression" . Problem is I can't recreate the error un-compiled . I have a error function but it doesn't seem to catch the error. Any suggestions for hunting down this error? My Error check : Global $oMyError = ObjEvent("AutoIt.Error","MyErrFunc") Func MyErrFunc($oMyError) Local $HexNumber Local $strMsg $HexNumber = Hex($oMyError.Number, 8) $strMsg = "Error Number: " & $HexNumber & @CRLF $strMsg &= "WinDescription: " & $oMyError.WinDescription & @CRLF $strMsg &= "Script Line: " & $oMyError.ScriptLine & @CRLF MsgBox(0, "ERROR", $strMsg) SetError(1) Endfunc
  11. Thanks Water . That was the main issue!!
  12. yeah I tried that ! Trying all sorts of outp uts
  13. It was in the code . Cant see why the app isn't processing the file. Am I calling it wrong ?
×
×
  • Create New...