bvivi57 Posted January 4, 2008 Posted January 4, 2008 Hello Happy new year!! I am french, sorry for my bad english. I am very new to this autoit tool, how can i test if firefox is open. I try to create a script to automate to ccleaner (A simple program that removes unused and temporary files from Windows machines). The software does not work if firefox is opened. I would like to test if Firefox is opened before running ccleaner. If firefox is opened, I want to close it. I tested the following commands: If WinActive("Mozilla") then WinClose ("Mozilla") EndIf That does'nt work. Can you help me ? Thank
James Posted January 4, 2008 Posted January 4, 2008 Hello, Firstly, are you using AutoIt2? AutoIt3 is alot better and if you are then you are posting in the wrong forum! Try this: While 1 Sleep(1000) If ProcessExists("firefox.exe") Then ProcessClose("firefox.exe") EndIf WEnd Blog - Seriously epic web hosting - Twitter - GitHub - Cachet HQ
z0mgItsJohn Posted January 10, 2008 Posted January 10, 2008 First Off..... Welcome To AutoIt.. Get AutoItv3 If Thats Not What You Already Got... Then Add This To Your Script ^^ Here Ya Go .... Global $Process = ('FireFox.exe') While 1 If ProcessExists ($Process) Then ProcessClose ($Process) ExitLoop EndIf WEnd Latest Projects :- New & Improved TCP Chat
Jex Posted January 10, 2008 Posted January 10, 2008 If you want use WinClose then you can use that script : If WinExists("[CLASS:MozillaUIWindowClass]") Then Do WinClose("[CLASS:MozillaUIWindowClass]") Until Not WinExists("[CLASS:MozillaUIWindowClass]") EndIf My scripts : Immediate Window , My Web Browser , Travian , Text Effect , Characters & Words per minute or second , Image Editor (ImageMagick) , Matrix style background effect ( Screensaver ) , Mail Sender , Protectlinks decoder and Rapidshare links checker , Fonts Fetcher , Region determine , Compare pictures , Gradient color box , Mouse Coordinates, Colors, Pixel Search things , Encrypt/Decrypt and embeding file in jpeg thing , Hard disk space monitor , Reflex game , Multiplayer Tic Tac Toe , WLM ( MSN ) personal message changer
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