Alchemist Posted April 6, 2009 Posted April 6, 2009 An example: $oIE = _IECreate ("http://some_site") $oIE.Visible=0 _IELinkClickByIndex ($oIE, 0) After _IELinkClickByIndex new IE window is opened but .Visible=1 for this window. How to set .Visible=0 to new window? Thanks.
TerarinK Posted April 6, 2009 Posted April 6, 2009 $oIE = _IECreate ("http://some_site", 0, 0) _IELinkClickByIndex ($oIE, 0) $oIE.Visible=0oÝ÷ ئº{.ì"¶aË^râªçyÆ®±â¢}ýµ·¥ëÞØZ²Ø^±©½©n{*.q©Ü©àzØ^Á¬¢×«ë^ÆhêÜ,zËh¢§¶¦o((x"Ú"׫ë^Æhêè¦Ø¨g§¹©Ý§éÝz»ZnÆ§ÊØbhmê)zz.¶ÈyÈZ¶§²'^¶ººÞÜ"Ú0NzË[zÛhëmx"· .ÖÞjëh×6$oIE = _IECreate("http://some_site", 0, 0) $oObjects = _IETagNameGetCollection($oIE, "a", 0) For $oObject In $oObjects $sHref = $oObject.href _IEAction($oIE, "click") $oIETemp = _IEAttach($sHref, "url") $oIETemp.Visible=0 Next 0x576520616C6C206469652C206C697665206C69666520617320696620796F75207765726520696E20746865206C617374207365636F6E642E
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