Visual basic hyperlinks

G

Guest

I have a jeopardy game i am making. i have the scoring system perfected, but one enhancement would be enjoyed. I would like the link to add whatever the score is that is needed then move the user to another slide. I know how to handle the score, and i know how to create a hyperlink, but i can't get them to work together. i think the problem lies in performing the operation using an addition to the scoring macro, but i have no idea how to make the presentation move to another slide with visual basic. can anyone help me with this?
 
B

Bill Dilworth

'Jump to slide 5
SlideShowWindows(1).View.GotoSlide 5

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

Jakykong said:
I have a jeopardy game i am making. i have the scoring system perfected,
but one enhancement would be enjoyed. I would like the link to add whatever
the score is that is needed then move the user to another slide. I know how
to handle the score, and i know how to create a hyperlink, but i can't get
them to work together. i think the problem lies in performing the operation
using an addition to the scoring macro, but i have no idea how to make the
presentation move to another slide with visual basic. can anyone help me
with this?
 
G

Guest

Check out the examples at my web site

http://www.loyola.edu/education/PowerfulPowerPoint

Chapter 7 (in Examples by Chapter) includes several examples that move from slide to slide and keep score

Try such things as

ActivePresentation.SlideShowWindow.View.Next 'Go to the next slid
ActivePresentation.SlideShowWindow.View.Previous 'Go to the previous slid
ActivePresentation.SlideShowWindow.View.GotoSlide (9) 'Go to slide nin

--Davi

David M. Marcovit
Author of _Powerful PowerPoint for Educators
http://www.loyola.edu/education/PowerfulPowerPoint

----- Jakykong wrote: ----

I have a jeopardy game i am making. i have the scoring system perfected, but one enhancement would be enjoyed. I would like the link to add whatever the score is that is needed then move the user to another slide. I know how to handle the score, and i know how to create a hyperlink, but i can't get them to work together. i think the problem lies in performing the operation using an addition to the scoring macro, but i have no idea how to make the presentation move to another slide with visual basic. can anyone help me with this?
 

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