Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
powerscript_extendscript_actions [2024/12/11 06:02] – [Boot Loader] o2wikipowerscript_extendscript_actions [2024/12/11 06:04] (current) – [Examples] o2wiki
Line 354: Line 354:
  
 <sxh javascript; > <sxh javascript; >
-//+if(typeof _powerScriptCommand === 'undefined'){ 
 + // get this filename 
 + var thisFilename = $.fileName; 
 + 
 + // escape shashes and ' 
 + thisFilename = thisFilename.replace(/\\/g, '\\\\').replace(/\'/g, '\\\''
 + 
 + // Send JSON string with command "evalFile" 
 + var lib = new ExternalObject( "lib:PlugPlugExternalObject"); 
 + var eventObj = new CSXSEvent(); 
 + eventObj.type = "nz.co.o2creative.events.lwAction";  
 + eventObj.data = '{"action": "evalFile", "data": {"filename": "' + thisFilename + '"}}'; 
 + eventObj.dispatch();  
 + 
 + // exit 
 + return;  
 +}
  
 // Dimensions Script // Dimensions Script