jonathanhafkamp Posted November 29, 2005 Posted November 29, 2005 Hello, Does somebody know a code for autoit to block popups in Internet Explorer?
kpu Posted November 29, 2005 Posted November 29, 2005 Hello,Does somebody know a code for autoit to block popups in Internet Explorer?I know your looking for an Auto It solution, but why not use use SP2? Or if your getting a bunch of pop-ups, why not try and fix the issue if there is one?? If you have issues with pop-ups, google. "HijackThis.exe" http://www.kpunderground.com
BigDod Posted November 29, 2005 Posted November 29, 2005 Hello,Does somebody know a code for autoit to block popups in Internet Explorer?There is a basic one Here I do not know if it works I just searched the forums. Time you enjoyed wasting is not wasted time ......T.S. Elliot Suspense is worse than disappointment................Robert Burns God help the man who won't help himself, because no-one else will...........My Grandmother
jonathanhafkamp Posted November 29, 2005 Author Posted November 29, 2005 I know your looking for an Auto It solution, but why not use use SP2? Or if your getting a bunch of pop-ups, why not try and fix the issue if there is one?? If you have issues with pop-ups, google. "HijackThis.exe"I know about this programs, and I use them, but I want to create a popupblocker by myself. So that I can learn more about AutoIt.
jonathanhafkamp Posted November 29, 2005 Author Posted November 29, 2005 There is a basic one Here I do not know if it works I just searched the forums.I already tried, but it closes all the windows
kpu Posted November 29, 2005 Posted November 29, 2005 I know about this programs, and I use them, but I want to create a popupblocker by myself. So that I can learn more about AutoIt.I was just making sure. Good luck on this. http://www.kpunderground.com
jonathanhafkamp Posted November 29, 2005 Author Posted November 29, 2005 I was just making sure. Good luck on this.Thanks ;-)
LxP Posted November 30, 2005 Posted November 30, 2005 This might get you started: ; Loop indefinitely While 1 If WinExists('Some popup window') Then WinClose('Some popup window') If WinExists('Another popup window') Then WinClose('Another popup window') If WinExists('Some spam window') Then WinClose('Some spam window') ยทยทยท ; Brief delay (1/4 sec.) to avoid excessive CPU usage Sleep(250) WEnd
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