Some standard actions to work with FireFox
#Include <FF.au3>
_FFAction($sAction[, $vOption = ""[, $vOption2 = ""[, $bLoadWait = True]]])
Parameters
| $sAction | One of the following actions
|
Return Value
| Success: | Return of MozRepl |
| Failure: | Returns "" and sets @ERROR |
| @ERROR: | 0 ($_FF_ERROR_Success) 4 ($_FF_ERROR_InvalidValue) |
Remarks
Links
http://developer.mozilla.org/en/docs/XUL:tabbrowser
Example
#Include <FF.au3> _FFStart("http://ff-au3-example.thorsten-willert.de/") If _FFIsConnected() Then Sleep(2000) _FFAction("presentationmode", True) Sleep(2000) _FFOpenURL("http://www.google.com") Sleep(2000) _FFAction("back") _FFAction("presentationmode", False) Sleep(2000) _FFOpenURL("chrome:bookmarks") Sleep(2000) _FFAction("alert", "Bye bye ...") _FFQuit() EndIf