VB script

A

Antony

Hi,

I am trying to create a remote control that will allow me to work with dual
screens. What I want is when I have the presentation working over 2
monitors, I can control the presentation. I am aware that in slide show
settings, is the option of using Presenter, but I've found this too
restrictive.

I can create the basic macros to advance the slides on the presentation
monitor, but what I really need is to know how the coding would work for the
user to input which slide they went too.

For example:

SlideShowWindows(Index:=1).View.Next

will take my to the next slide on my 2nd monitor - the actual display area.
Is there anyway I can allow the user to input which slide it goes too (ie
SlideShowWindows(INdex:=1).View.USERCHOICE ? Even better still, I would like
to be able to click on the slide preview (normal view) and it appear on the
2nd monitor.

I hope that's not too confusing. And please bear in mind that I am still
very new at the whole coding thing, so opening and editing a Macro is as
about as far as it goes.

thanks

Antony
(This email has been checked
by Norton Antivirus 2004)
www.cdtoday.co.uk
 
B

Bill Dilworth

Sounds like the line of code you are looking for is:
SlideShowWindows(1).View.GotoSlide 12
' goto slide number 12

But there are other ways.
From within any active presentation, just type 12 and {enter} to do the same
thing.
or use ready-made solutions:
http://officeone.mvps.org/powershow/powershow.html
http://officeone.mvps.org/sundaystar/sundaystar.html


--
Bill Dilworth, Microsoft PPT MVP
===============
Please spend a few minutes checking vestprog2@
out www.pptfaq.com This link will yahoo.
answer most of our questions, before com
you think to ask them.

Change org to com to defuse anti-spam,
ant-virus, anti-nuisance misdirection.
..
..
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top