m4tius Posted May 16, 2010 Posted May 16, 2010 Is there any refresh function in FF.au3? Cuz i dont wanna change window names in ControlSend anymore ;p
JohnOne Posted May 16, 2010 Posted May 16, 2010 _FFACTION("reload") maybe. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
GEOSoft Posted May 16, 2010 Posted May 16, 2010 Send("{F5}") George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!"
m4tius Posted May 16, 2010 Author Posted May 16, 2010 ^ I want to refresh when FF is minimized... This doesnt work: _FFACTION("reload") Before I wrote this: While 1 HotKeySet("{Home}","Refresh") WEnd Func Refresh() ControlSend("YouTube - Bullet For My Valentine- Hit The Floor - Mozilla Firefox","","[CLASS:MozillaWindowClass;INSTANCE:2]", "{F5}") EndFunc But it doesnt work too ;/
somdcomputerguy Posted May 16, 2010 Posted May 16, 2010 This doesnt work: _FFACTION("reload") Are you using FF.au3 (V0.6.0.0b) correctly? - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change.
m4tius Posted May 16, 2010 Author Posted May 16, 2010 I guess so #include <FF.au3> While 1 HotKeySet("{Home}","Refresh") WEnd Func Refresh() _FFACTION("reload") EndFunc
somdcomputerguy Posted May 16, 2010 Posted May 16, 2010 And MozRepl is installed and running? You might need to use _FFConnect or _FFStart before _FFAction. - Bruce /*somdcomputerguy */ If you change the way you look at things, the things you look at change.
JohnOne Posted May 16, 2010 Posted May 16, 2010 you dont want to be putting a hotkey set in a loop Have you used the FF udf before ? AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
m4tius Posted May 16, 2010 Author Posted May 16, 2010 ^ No, its my first time. I just want refresh already opened FF. I tried 1 time with MozRepl and nothing.
GEOSoft Posted May 16, 2010 Posted May 16, 2010 you dont want to be putting a hotkey set in a loop Have you used the FF udf before ? Definitly not and it should also be unset in the function and then reset. #include <FF.au3> HotKeySet("{Home}","Refresh") Func Refresh() HotKeySet("{Home}") _FFACTION("reload") HotKeySet("{Home}","Refresh") EndFunc George Question about decompiling code? Read the decompiling FAQ and don't bother posting the question in the forums.Be sure to read and follow the forum rules. -AKA the AutoIt Reading and Comprehension Skills test.*** The PCRE (Regular Expression) ToolKit for AutoIT - (Updated Oct 20, 2011 ver:3.0.1.13) - Please update your current version before filing any bug reports. The installer now includes both 32 and 64 bit versions. No change in version number. Visit my Blog .. currently not active but it will soon be resplendent with news and views. Also please remove any links you may have to my website. it is soon to be closed and replaced with something else. "Old age and treachery will always overcome youth and skill!"
m4tius Posted May 16, 2010 Author Posted May 16, 2010 #include <FF.au3> HotKeySet("{Home}","Refresh") While 1 WEnd Func Refresh() HotKeySet("{Home}") _FFACTION("reload") HotKeySet("{Home}","Refresh") EndFunc Doesnt work ;/. Damn is such a simple thing, but i dont know what is wrong ;/
JohnOne Posted May 16, 2010 Posted May 16, 2010 What is outputting in the console window ? AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
m4tius Posted May 16, 2010 Author Posted May 16, 2010 __FFSend ==> Socket Error _FFCmd ==> Error return value
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now