fabianmoronzirfas
7/23/2013 - 8:35 AM

_run.jsx

#target "InDesign"
// run script without install to ScriptPanel

(function(){
  var script_path = File.openDialog();
  try {
    script_path ? $.evalFile(script_path) : exit();
  }
  catch(e){
    alert(decodeURI(script_path) + "\n" + e);
  };
})();