Jump to content

Recommended Posts

Posted (edited)

is there anyway to load firefox without it poping up like make it run behind the scene?

please reply thanks

Edited by Duffy
Posted

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

Posted

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

Posted

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

Posted

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 :)

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...