Hi
One more example for you... Grover
i have save the following in a file named <<
Auto_Export_to_png_deskTop.js >>
/////////////// start code ////////////////////////
// Auto Export to PNG
// this _javascript_ which when double clicked will export symbol in
current active window to a .png file
// In the tools menu entry definition:
// Command: wscript.exe
// Arguments: //E:_javascript_ Auto_Export_to_png_deskTop.js
// Initial Directory: E:\Stock\AmiBroker\Scripts\
saveimage = "C:\\Documents and Settings\\Administrator\\Desktop\\";
var oAB = WScript.CreateObject("Broker.Application");
Ticker = oAB.ActiveDocument.Name;
AB = new ActiveXObject("Broker.Application");
DateObj=new Date();
Ye=DateObj.getYear();
M=(DateObj.getMonth()+1);
D=DateObj.getDate();
H=DateObj.getHours();
mi=DateObj.getMinutes();
Win = AB.ActiveWindow;
output=saveimage + Ticker + "-"+D+M+Ye+"_"+H+"-"+mi+
".png";
Win.ExportImage( output, 800, 600 );
var Shell;
Shell = new ActiveXObject("WScript.Shell");
Shell.Popup("Foto is ready",2); // 2 second to close the popup window
/////////////// end code ////////////////////////
thanks
Panos