Hi,
Having some issues with frames:
#include <IE.au3>
_IEErrorHandlerRegister()
$oIE = _IEAttach("Advanced")
Local $oFrames = _IEFrameGetCollection($oIE)
Local $iNumFrames = @extended
For $i = 0 To ($iNumFrames - 1)
Local $oFrame = _IEFrameGetCollection($oIE, $i)
MsgBox(0, "Frame Info", _IEPropertyGet($oFrame, "locationurl"))
Next
Teh above example is mainly taken from the Help file. The website has diabled the toolbar, and I cannot gain access to IE developer tools:
I've been trying to get the source or any information from the frames, not getting any errors, but nothing is happening as well.
I do get the following Error from _IEErrorHandlerRegister(), does any one have any more indepth knowledge on how I would proceed with this
--> COM Error Encountered in test.au3
----> $IEComErrorScriptline = 2705
----> $IEComErrorNumberHex = 80070005
----> $IEComErrorNumber = -2147024891
----> $IEComErrorWinDescription = Access is denied.
----> $IEComErrorDescription =
----> $IEComErrorSource =
----> $IEComErrorHelpFile =
----> $IEComErrorHelpContext = 0
----> $IEComErrorLastDllError = 0
--> COM Error Encountered in test.au3
----> $IEComErrorScriptline = 2705
----> $IEComErrorNumberHex = 80070005
----> $IEComErrorNumber = -2147024891
----> $IEComErrorWinDescription = Access is denied.
----> $IEComErrorDescription =
----> $IEComErrorSource =
----> $IEComErrorHelpFile =
----> $IEComErrorHelpContext = 0
----> $IEComErrorLastDllError = 0