0qwerty0 Posted July 27, 2008 Posted July 27, 2008 Hi, I need help... I want to close every ERROR window, i done it like this: WinWait("Error") WinClose("Error") But, how to repeat that command to close EVERY error window ! After closing 1 window, it's not working anymore for other windows with same name "Error". Thanks !
monoceres Posted July 27, 2008 Posted July 27, 2008 (edited) Put it in an never ending loop. Check the help section under language reference in the help file. Edited July 27, 2008 by monoceres Broken link? PM me and I'll send you the file!
sandin Posted July 27, 2008 Posted July 27, 2008 While 1 if WinExists("Error") then WinClose("Error") Sleep(10) WEnd Some cool glass and image menu | WinLIRC remote controler | Happy Holidays to all... | Bounce the sun, a game in which you must save the sun from falling by bouncing it back into the sky | Hook Leadtek WinFast TV Card Remote Control Msges | GDI+ sliding toolbar | MIDI Keyboard (early alpha stage, with lots of bugs to fix) | Alt+Tab replacement | CPU Benchmark with pretty GUI | Ini Editor - Edit/Create your ini files with great ease | Window Manager (take total control of your windows) Pretty GUI! | Pop-Up window from a button | Box slider for toolbar | Display sound volume on desktop | Switch hotkeys with mouse scroll
0qwerty0 Posted July 27, 2008 Author Posted July 27, 2008 While 1 if WinExists("Error") then WinClose("Error") Sleep(10) WEnd Thanks it work ! (Hvala!)
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