I would like to ask wether this ActivexObject can be accessible using web server through PHP. Because when I include the javascript, it shows that the activexobject is not defined(when using browser), while in edge/ie11 it says "SCRIPT429: Automation server can't create object". But if I double click that JS file, it works perfectly fine. For further information, I'm using this because an application called "Amibroker" have the OLE. here'is the JS that I'm using
var AB = new ActiveXObject("Broker.Application");
AB.ActiveDocument.Name = "UNVR.JK";
AW = AB.ActiveWindow;
AW.ExportImage( "D:\\Export\\UNVR.jpg", 1920, 1080 );
thanks in advance!