Verläßt den aktuellen Frame
#Include <FF.au3>
_FFFrameLeave()
Return Value
Success: | Returns 1 |
Failure: | Returns 0 |
@ERROR: |
0 ($_FF_ERROR_Success) |
Remarks
Related
_FFFrameEnter
Example
#Include <FF.au3> If _FFConnect() Then If _FFOpenURL("http://www.autoit.de") Then _FFFrameEnter(2) MsgBox(0,"Frame 2 URL", _FFCmd(".location.href") ) _FFFrameLeave() MsgBox(0,"Top URL",_FFCmd(".location.href") ) EndIf EndIf