Loescht ein Objekt in FireFox.
#Include <FF.au3>
_FFObjDelete($sObject)
Parameters
$sObject | Ein vorher mit _FFObjNew erstelltes Objekt |
Return Value
Success: | Returns 1 |
Failure: | Returns 0 and sets @ERROR |
@ERROR: | 0 ($_FF_ERROR_Success) |
Remarks
Related
_FFObjGet, _FFObjNew, _FFObj
Example
#Include <FF.au3> _FFConnect() If _FFIsConnected() Then _FFOpenURL("google.com") If _FFObjNew("google", "window.content.document") Then MsgBox(64, "Cookie", _FFObj("google","cookie")) ; OR MsgBox(64, "Domain", _FFObj("google.domain")) _FFObjDelete("google") EndIf EndIf