I created an application which aim is to make a list of Powerpoint
presentations and then launch the selected files. With Powerpoint 97, when
the user decides to stop the presentation (example: he is looking at the
pres. n° 2 of 10), he only has to press Escape to stop the presentation and
go back to the Director projector. But with Powerpoint viewer 2003, if he
presses Escape, the viewer goes to the next ppt file so if he is looking at
the pres. n° 2 of 10, he must click 8 times on Escape to quit the viewer and
go back to the projector.
Is there a workaround? I guess it's useless to precise that I must
continue to use Powerpoint viewer 2003!
Thank you in advance.
Anthony
hth
johnAq
I am launching with BuddyAPI using:
set ok = baShell( "open", the moviepath & "PPV2003\PPTVIEW.EXE /S",
"mypres.ppt", the moviePath & "powerpoint\", "normal" )
Without the /S I can launch (with splash) with no problem.
With the /S I get nothing...
Any Suggestions??
Thanks in advance!
Michael Hamstra
"Anthony" <antho_...@wanadoo.fr> wrote in message
news:cgcq9e$h7i$1...@forums.macromedia.com...
Try this (untested):
-------
Operation = "open"
Filename = the moviepath & "PPV2003\PPTVIEW.EXE"
Args = "/S mypres.ppt"
WorkDir = the moviePath & "powerpoint\"
State = "normal"
put baShell(Operation, Filename, Args, WorkDir, State)
------
OR simply:
open Filename & " " & Args
-----
Let me know if it works.
Bertil Flink
Creative Media
"Michael Hamstra" <mic...@hvc-inc.com> skrev i meddelandet
news:cj9rd9$kso$1...@forums.macromedia.com...
Args = "/S, mypres.ppt"
"Bertil Flink" <ber...@creativemedia.se> skrev i meddelandet
news:cja68d$1av$1...@forums.macromedia.com...
----------------
Operation = "open"
Filename = the moviepath & "PPV2003\PPTVIEW.EXE"
Args = "/S, mypres.ppt"
WorkDir = the moviePath & "powerpoint\"
State = "normal"
put baShell(Operation, Filename, Args, WorkDir, State)
---------------
"Michael Hamstra" <mic...@hvc-inc.com> skrev i meddelandet
news:cj9rd9$kso$1...@forums.macromedia.com...
I was successful as well (without the ",") -- using "/S mypres.ppt"
set ok = baShell( "open", the moviepath & "PPV2003\PPTVIEW.EXE","/S
mypres.ppt", the moviePath & "powerpoint\", "normal" )
Thanks for your time and support!
Michael Hamstra
"Bertil Flink" <ber...@creativemedia.se> wrote in message
news:cja6rs$1qa$1...@forums.macromedia.com...