Duffy Posted May 22, 2008 Posted May 22, 2008 (edited) is there anyway to load firefox without it poping up like make it run behind the scene? please reply thanks Edited May 22, 2008 by Duffy
AlmarM Posted May 22, 2008 Posted May 22, 2008 ShellExecute("www.google.com") $1 = WinGetTitle("Google") WinSetState($1, "", @SW_HIDE) Something like that? Minesweeper A minesweeper game created in autoit, source available. _Mouse_UDF An UDF for registering functions to mouse events, made in pure autoit. 2D Hitbox Editor A 2D hitbox editor for quick creation of 2D sphere and rectangle hitboxes.
Duffy Posted May 22, 2008 Author Posted May 22, 2008 ShellExecute("www.google.com") $1 = WinGetTitle("Google") WinSetState($1, "", @SW_HIDE)Something like that?no that still loads up firefox ..i have a script that makes emails for me but i want it all done behind the scene like nutting is happing all i want done is a box staying in the left corner counting how many emails i made can anyone help me out on this please
Duffy Posted May 22, 2008 Author Posted May 22, 2008 no that still loads up firefox ..i have a script that makes emails for me but i want it all done behind the scene like nutting is happing all i want done is a box staying in the left corner counting how many emails i made can anyone help me out on this please
zorphnog Posted May 22, 2008 Posted May 22, 2008 What do you need firefox for? What are you trying to accomplish? You can use IE in the background via the IE udfs.
Duffy Posted May 22, 2008 Author Posted May 22, 2008 What do you need firefox for? What are you trying to accomplish? You can use IE in the background via the IE udfs.i just wanna know how to run firefox or even ie without it actually poping up thats all if it can be done then please tell me thanks
Rydextillxixdiex Posted May 22, 2008 Posted May 22, 2008 This will open Google and immediately minimize it to your tray, if your computer is quick enough you will not even see it happen . ShellExecute("www.google.com") Global $handle = WinGetHandle("classname=MozillaUIWindowClass") WinSetState($handle, "", @SW_HIDE) WinSetState($handle, "", @SW_SHOWMINIMIZED) Hope this helps. ...will never learn all there is to know about autoit, no worries...i came to the forums :)
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