Liefert ein 2-dimensionales Array mit allen Informationen über ein Objekt.
#Include <FF.au3>
_FFGetObjectInfo([$sObject = "window"])
Parameters
$sObject | Ein beliebiges Objekt in FireFox. window = (Default) |
Return Value
Success: | Returns 2 dimensionales Array mit allen Informationen �ber das Objekt. |
Failure: | Returns $array[0][0] = 0 and sets @ERROR |
@ERROR: |
0 ($_FF_ERROR_Success) 8 ($_FF_ERROR_NoMatch) |
Remarks
Example
#Include <Array.au3>#Include <FF.au3> _FFConnect() If _FFIsConnected() Then ; shows all informations about the window-object $a = _FFGetObjectInfo() _ArraySort($a) _ArrayDisplay($a) EndIf