Jump to content

houston08

Members
  • Posts

    9
  • Joined

  • Last visited

Everything posted by houston08

  1. Thanks for the many Responses. Brewmans first answer was great, I'll read them all though just I can learn more, ie, the finding the 4 sets of numbers separated by the periods.
  2. I'm parsing a list of ip's with ports. in this format: 255.255.255.255:12345 How would I go about removing the colon and the port, leaving just the ip so that I may save it? Thanks!
  3. PS. Not sure why it attached three copies as thumbnails, but w/e. *SOLVED*
  4. I appreciate your patience. In the console there is this >"C:\Program Files (x86)\AutoIt3\SciTE\..\autoit3.exe" /ErrorStdOut "C:\Users\Josh\Documents\test.au3" --> IE.au3 T3.0-0 Error from function _IEAction, $_IEStatus_COMError (0) C:\Program Files (x86)\AutoIt3\Include\IE.au3 (579) : ==> The requested action with this object has failed.: WEnd WEnd^ ERROR >Exit code: 1 Time: 4.211 The only place i see that may indicate what version i'm using is the 1st and third line that has the file path, and the 2nd line, where it says 'T3.0-0'. Attached in the picture, I see no where in the tools menu mentioning beta. I figured out my problem as well. Unless I missed it during the thread, the solution was to COPY the SciTE folder from the Release folder, and put it into the BETA folder. Also move the IE.au3 file to the INCLUDE folder of the BETA directory. THEN run the SciTE Editor from the Beta directory.
  5. Is there a 'How to use beta' thread? I've looked around a bit and didn't find one, but I'm pretty sure I'm using it. I toggled the beta on using the start menu shortcut then started the SciTE4 Editor. Same results.
  6. Ok. Redownloaded and installed Release. Then Downloaded and Installed Beta. Applied the IE file to the includes folder. Ran the script again, here is my new error: --> IE.au3 T3.0-0 Error from function _IEAction, $_IEStatus_COMError (0) C:\Program Files (x86)\AutoIt3\Include\IE.au3 (579) : ==> The requested action with this object has failed.: WEnd WEnd^ ERROR >Exit code: 1 Time: 4.013
  7. Apologies! I will try that now!
  8. I put that file into the include folder. Same Result, different line: --> IE.au3 T3.0-0 Error from function _IEAction, $_IEStatus_COMError (0) C:\Program Files (x86)\AutoIt3\Include\IE.au3 (579) : ==> The requested action with this object has failed.: WEnd WEnd^ ERROR >Exit code: 1 Time: 4.308
  9. Started learning autoit today. Thought I'd take one of my more common tasks and see if I can't auto it. One last thing i have to do every day, no? Note: This script assumes that I'm already logged in to the website on IE. #include <IE.au3> $oIE = _IECreate() _IENavigate($oIE, "[url="https://www.example.com"]https://www.example.com"[/url]) Sleep(1500) ;New Posting _IENavigate($oIE, "[url="https://www.example.com/?new_posting"]https://www.example.com/?new_posting"[/url]) $oForm2 = _IEFormGetCollection($oIE, 0); it is the 1st form on the page _IEFormSubmit($oForm2); <<< Problem Child MsgBox(0,"_IELinkClickByIndex",@error) MsgBox(0,"Notice","Reached EoF") Exit Line 11 is the issue. Whenever I click on the button, it gives me the following error in console: C:\Program Files (x86)\AutoIt3\Include\IE.au3 (560) : ==> The requested action with this object has failed.: WEnd WEnd^ ERROR >Exit code: 1 Time: 4.207 And the script will not continue forward. I've read several posts, and the most recent it seems to be at least 6 months old. Some suggestions were to disable security, add #RequireAdmin (or something of the sort) and a few other things, but so far. Nothing. I appreciate the help. Thanks!
×
×
  • Create New...