Schließt FireFox
#Include <FF.au3>
_FFQuit()
Return Value
Success: | Returns 1 / $_FF_GLOBAL_SOCKET = -1 |
Failure: | Returns 0 and sets @ERROR |
@ERROR: |
0 ($_FF_ERROR_Success) 2 ($_FF_ERROR_SocketError) |
Remarks
Related
_FFDisConnect
Example
#Include <FF.au3> _FFStart("http://ff-au3-example.thorsten-willert.de/") If _FFIsConnected() Then ; do something ... Sleep(2000) _FFAction("alert","Bye bye ...") ; ... and then closing FireFox _FFQuit() EndIf