Lua Memo

COMオブジェクトを作成する

CreateObject(comserver)

オブジェクトを作成する。

sample

IEを起動して、nadesi.com を開く例。

require('luacom')
ie = luacom.CreateObject("InternetExplorer.Application")
ie.Visble = true
ie:Navigate2("http://nadesi.com")

link