Returns a 2-dimensional array with every information of an object.
#Include <FF.au3>
_FFGetObjectInfo([$sObject = "window"])
Parameters
| $sObject | Any object in FireFox. window = (Default) |
Return Value
| Success: | Returns a 2-dimensional array. |
| 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