Does anyone know of a way to open an external file from Flash in ActionScript 3 without the request first going through the browser. Specifically, I want to open a PowerPoint presentation directly with PowerPoint.
I've tried:
var url:String = "MyContent/My presentation.pptx";
var request:URLRequest = new URLRequest(url);
navigateToURL(request);
Which works well, but it first makes the request to the browser instead of opening it natively with PowerPoint.
NOTE: This is a desktop Flash piece that won't be on the web.