Google Groups no longer supports new Usenet posts or subscriptions. Historical content remains viewable.
Dismiss

Dir MX: Problem with Powerpoint viewer 2003

0 views
Skip to first unread message

Anthony

unread,
Aug 23, 2004, 9:09:02 AM8/23/04
to
Hi,

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


johnAq

unread,
Aug 23, 2004, 9:54:31 AM8/23/04
to
Sounds like you are creating a Powerpoint playlist - a text file of files names
read in by PPT viewer. What about keeping the list internal to director and
launching the ppts one at a time.

hth

johnAq

Michael Hamstra

unread,
Sep 27, 2004, 3:58:35 PM9/27/04
to
I am trying to use the /S switch to NOT display the Splash Screen - Without
success...

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...

Bertil Flink

unread,
Sep 27, 2004, 7:03:39 PM9/27/04
to
I think you should put all the arguments together like this: "/S
mypres.ppt".

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...

Bertil Flink

unread,
Sep 27, 2004, 7:06:55 PM9/27/04
to
Whoops, I forgot a comma btw the arguments:

Args = "/S, mypres.ppt"


"Bertil Flink" <ber...@creativemedia.se> skrev i meddelandet
news:cja68d$1av$1...@forums.macromedia.com...

Bertil Flink

unread,
Sep 27, 2004, 7:14:02 PM9/27/04
to
Just for the record, I tested this and it works:

----------------
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...

Michael Hamstra

unread,
Sep 28, 2004, 8:21:59 AM9/28/04
to
Thanks Bertil.

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...

0 new messages