From: sean_n Date: 2008-04-12T21:45:04+09:00 Subject: AutoIt over Ruby question - How do I call ObjGet()? Here's an example of using autoit inside of ruby. require 'win32ole' autoit = WIN32OLE.new("AutoItX3.Control") autoit.WinActivate('Yahoo!') So if this works, how come this doesn't work? require 'win32ole' autoit = WIN32OLE.new("AutoItX3.Control") obj=autoit.ObjGet('','InternetExplorer.Application') How do I call the ObjGet() function? In other words, what COM object contains that method?