From: Siep Korteling Date: 2008-03-15T21:22:19+09:00 Subject: Re: hide and unhide Junkone wrote: > is there a way i can hide or unhide a window on the computer. let us > say i am running Internet explorer browsing software and i want to > hide it or unhide it for some reason usng ruby commands. is it > possible. I only know how to do it on windows with Internet Explorer: require 'win32ole' ie = WIN32OLE::new('InternetExplorer.Application') ie.navigate("http://www.google.com") print "retrieving " while ie.readystate == 1 #iexplore not visible while loading page sleep 1 print "." end ie.visible = true sleep 2 ie.visible = false sleep 2 ie.visible = true sleep 1 ie.quit Regards, Siep -- Posted via http://www.ruby-forum.com/.