atzoref Posted February 23, 2012 Posted February 23, 2012 Hi, How can I active a specific Tab in Windows Internet Explorer? Then how can I read just the address from the bar and not all the text? Thanks
MilesAhead Posted March 4, 2012 Posted March 4, 2012 I don't do anything with IE. But this page may give some insight. It's for .NET but it's the only useful looking docs I could find for IE tab programmatic access:http://msdn.microsoft.com/en-us/library/ms537636(v=vs.85).aspx My Freeware Page
atzoref Posted March 5, 2012 Author Posted March 5, 2012 Thanks, but I don't know if it's good for me, Also I don't know how to implement it with Autoit. I tell you exactly what I need: 1) Verify TAB name of a new Internet Explorer TAB which open in a new browser or exist browser which already opened 2) Read the address of this specific TAB which opened How can I do that? Thanks.
MilesAhead Posted March 10, 2012 Posted March 10, 2012 (edited) I suggest you use the window spy tool, IE and figure it out. Trial and error is like 90% of programming. Getting other people to do it for you is more appropriate to a forum on management techniques. Edited March 10, 2012 by MilesAhead boomingranny 1 My Freeware Page
6105 Posted March 10, 2012 Posted March 10, 2012 (edited) __IENavigate will help you to open new tab __IENavigate($oIE, $oLink.href, 0, 0x800) ; open new tab _IEQuit($oIE) will close focused tab _IEQuit($oIE) ; close tab _StringBetween to find something in your link: $check = _StringBetween($oIE.LocationURL, $key, $word) ; Search in URL _IEAttach to select/focus to tab (i spend log time to understand this function) $oIE = _IEAttach ("", "instance", $check); ; Focus tab Tedy. EDIT: added _StringBetween Edited March 10, 2012 by 6105 [center][font=courier new,courier,monospace]Die die die my darling[/font][/center][center][font=courier new,courier,monospace]Don't utter a single word[/font][/center][center][font=courier new,courier,monospace]Die die die my darling[/font][/center][center][font=courier new,courier,monospace]Just shut your pretty mouth[/font][/center][center][font=courier new,courier,monospace]I'll be seeing you again[/font][/center][center][font=courier new,courier,monospace]I'll be seeing you[/font][/center][center][font=courier new,courier,monospace]In hell[/font][/center]
atzoref Posted March 20, 2012 Author Posted March 20, 2012 6105 - Great Help!! Thanks, it's works good
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