Home › Forums › General XMetaL Discussion › Access XMetal Dev. API from inside a web application inside a Explorer ActiveX › Reply To: Access XMetal Dev. API from inside a web application inside a Explorer ActiveX
Reply to: Access XMetal Dev. API from inside a web application inside a Explorer ActiveX
March 6, 2009 at 9:08 pmYes. You can instantiate XMetaL Author as a COM object.
Here's a JScript example that might be placed inside a function in an HTML page:
[code]var xmapp = new ActiveXObject(“XMetaL.Application”);
xmapp.Alert(“hello world”);
xmapp = null;[/code]