I want to execute some code when the document is opened. But I couldn't find how to add the code to the open event of the document. Anyone can help?
Thanks!
I want to execute some code when the document is opened. But I couldn't find how to add the code to the open event of the document. Anyone can help?
Thanks!
function Round(fValue, fDecimals){// round fValue to fRound decimal placesreturn Math.round(fValue * Math.pow(10, fDecimals) ) / Math.pow(10, fDecimals);} // end round function
// create and call an undefined function(// define functionfunction () {app.alert('Hello World!', 3, 0);return;}// call undefined function() );
George Kaiser