VBA

  • Thread starter Thread starter Alexf
  • Start date Start date
A

Alexf

I thought of some more questions!


1) How could you make information (such as "John") appear in another textbox
a slide away?

2) How could make the info from step 1 save itself

3) And last: if you press a button, then the next time you open it, it
skips a certain slide.

Thanks in advance!
 
Thanks for the first two! It helped a lot!
What I mean is that when you press a certain picture on a slide, the next
time you open it, the presentation skips an amount of slides and goes
directly to a specified slide.

Thanks in advance!
 
One thought is to have VBA hide the slides and then save the presentation.
For example if you hid slides 1-10, the next time it would open, it would
start at slide 11. Something like:

ActivePresentation.Slides(1).SlideShowTransition.Hidden = msoTrue

to hide the first slide.

--David
 
Oh...and how do you get the Graphics hardware acceleration to work by
clicking a button in Powerpoint? (Kiosk Mode)

Thanks in advance!
 
Um...actually the question wasn't phrased correctly (different question)

If there was a textbox on slide 3, and another textbox on slide 6, and there
was nothing in both boxes. When someone types in "Hi!", how can you make that
same text appear in the textbox in slide 6?

Another thing: how can you remotely clear the text boxes on slides 3 and 6?

Thanks for everything!
 
On my computer, it doesn't work at all. Could you make a 2 slide presentation
w/ the same information so I can get an Idea? On My computer, it says that
the textbox "cannot have a textrange"
 
If TextBox (Nameenter) was on slide 3, would it be put in place of "Thing"?
Would the Source Shape be Nameenter and the Target Shape be nameoutput
(slide 6)?

And what would "Name the shape" be? Slide 3 (Nameenter) or Slide 6
(nameoutput)?

Thanks!
 
This code is on the textbox in slide 6.

Private Sub nameoutput_Change()
With ActiveWindow.Selection.ShapeRange(1)
..Name = "Type the name you want to use here"
End With
End Sub

It says that it is out of range. What is the 1 for?


On slide 3:

Private Sub nameoutput_Change()
With ActiveWindow.Selection.ShapeRange(6)
..Name = "Type the name you want to use here"
End With
End Sub

It says No currently Active Doccument Window.


I need this code to be used while in Kilosk mode, is this only for editing
mode?
 
One last question: is there some kind of code that can tell you the last time
you used the powerpoint (within Kilosk mode)?

Thanks a bunch!
 
Steve?

Would it be all right to make a tutorial about this, explaining the code,
with your name in the credits under "VBA Code" and "consultant?"

Also; uit'll be on Powerpoint Heaven. If you want a versiodn of it on your
site, could you respond?

If you need to contact me, you can email darkestsunstudios[at]gmail.com.


Thanks!
 
Back
Top