Returns an array with informations about all existing links.
#Include <FF.au3>
_FFLinksGetAll()
Return Value
Success: | Returns $array[n][n]:
|
|||||||||||||||||||||||||||||||||
Failure: | Returns $array[0][0] = 0 | |||||||||||||||||||||||||||||||||
@ERROR: |
0 ($_FF_ERROR_Success) |
Remarks
Example
#Include <FF.au3>#Include <Array.au3> _FFStart("http://ff-au3-example.thorsten-willert.de/") If _FFIsConnected() Then $aLinks = _FFLinksGetAll() _ArrayDisplay($aLinks) EndIf