PPS file open 2 to 3 times
Hi
I'm using ssCore.Shell.open to open external files bundled in my application and it works like a charm for all file types except for PowerPoint fullscreen presentations (PPS) where it opens the file 2 to 3 times and the user has to close them everytime.. Does anyone know why that happens or how to deal with it?? here is my code:
on (release){
ssCore.Layout.extractFile({resource:"\\Presentatio ns\\myprez.pps", destination:"tempdir://Presentations\\myprez.pps"})
ssCore.Shell.open({path:"tempdir://Presentations\\myprez.pps", verb:"open"});
}
Thank you in advance