pcjunki Posted November 21, 2014 Posted November 21, 2014 I have one script I use that runs a _iecreate sets some properties and what not my 2nd script, how do I get a handle on the internet page to start running other ie actions? such as _ieaction ?
Moderators Solution SmOke_N Posted November 21, 2014 Moderators Solution Posted November 21, 2014 _IEAttach pcjunki 1 Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.
pcjunki Posted November 21, 2014 Author Posted November 21, 2014 thank you for that post, I think I'm on the right track, and understand.... but still having an issue .... #include <ie.au3> $URL = ("https://www.autoitscript.com/autoit3/docs/libfunctions/_IEAttach.htm") _IEAttach($URL,"URL") _IEAction($URL, "PRINT")
pcjunki Posted November 21, 2014 Author Posted November 21, 2014 nevermind...I got it #include <ie.au3> $URL = ("https://www.autoitscript.com/autoit3/docs/libfunctions/_IEAttach.htm") $attach = _IEAttach($URL,"URL") _IEAction($attach, "PRINT")
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now