|  | VBA |  | |
| | | Alexf |  |
| Posted: Sat Aug 09, 2008 6:16 pm Post subject: VBA |  |
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! |
| |
| | | Steve Rindsberg |  |
| Posted: Sun Aug 10, 2008 4:50 am Post subject: Re: VBA |  |
In article <F9BBF341-B648-47C8-A194-E63FDE6981C0@microsoft.com>, Alexf wrote:
| Quote: | I thought of some more questions!
1) How could you make information (such as "John") appear in another textbox a slide away?
|
Assuming you know that the textbox is on, say, slide 42 in is named "MyText"
With ActivePresentation.Slides(42).Shapes("MyText") .TextFrame.TextRange.Text = "John" End With
| Quote: | 2) How could make the info from step 1 save itself
|
ActivePresentation.Save
| Quote: | 3) And last: if you press a button, then the next time you open it, it skips a certain slide.
|
Don't understand the question ... what's "it"?
----------------------------------------- Steve Rindsberg, PPT MVP PPT FAQ: LINK PPTools: LINK ================================================ Live and in personable in the Help Center at PowerPoint Live Sept 21-24, San Diego CA, USA LINK |
| |
| | | Alexf |  |
| Posted: Wed Aug 13, 2008 3:52 pm Post subject: Re: VBA |  |
| |  | |
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!
"Steve Rindsberg" wrote:
| Quote: | In article <F9BBF341-B648-47C8-A194-E63FDE6981C0@microsoft.com>, Alexf wrote: I thought of some more questions!
1) How could you make information (such as "John") appear in another textbox a slide away?
Assuming you know that the textbox is on, say, slide 42 in is named "MyText"
With ActivePresentation.Slides(42).Shapes("MyText") .TextFrame.TextRange.Text = "John" End With
2) How could make the info from step 1 save itself
ActivePresentation.Save
3) And last: if you press a button, then the next time you open it, it skips a certain slide.
Don't understand the question ... what's "it"?
----------------------------------------- Steve Rindsberg, PPT MVP PPT FAQ: LINK PPTools: LINK ================================================ Live and in personable in the Help Center at PowerPoint Live Sept 21-24, San Diego CA, USA LINK
|
|
| |
| | | David M. Marcovitz |  |
| Posted: Thu Aug 14, 2008 12:37 pm Post subject: Re: VBA |  |
| |  | |
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
-- David M. Marcovitz Microsoft PowerPoint MVP Author of _Powerful PowerPoint for Educators_ LINK
=?Utf-8?B?QWxleGY=?= <Alexf@discussions.microsoft.com> wrote in news:2C359BFC-F45E-465C-8D7A-206F4FAB97DD@microsoft.com:
| Quote: | 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!
"Steve Rindsberg" wrote:
In article <F9BBF341-B648-47C8-A194-E63FDE6981C0@microsoft.com>, Alexf wrote: I thought of some more questions!
1) How could you make information (such as "John") appear in another textbox a slide away?
Assuming you know that the textbox is on, say, slide 42 in is named "MyText"
With ActivePresentation.Slides(42).Shapes("MyText") .TextFrame.TextRange.Text = "John" End With
2) How could make the info from step 1 save itself
ActivePresentation.Save
3) And last: if you press a button, then the next time you open it, it skips a certain slide.
Don't understand the question ... what's "it"?
----------------------------------------- Steve Rindsberg, PPT MVP PPT FAQ: LINK PPTools: LINK ================================================ Live and in personable in the Help Center at PowerPoint Live Sept 21-24, San Diego CA, USA LINK
|
|
| |
| | | Steve Rindsberg |  |
| Posted: Thu Aug 14, 2008 2:41 pm Post subject: Re: VBA |  |
| |  | |
In article <2C359BFC-F45E-465C-8D7A-206F4FAB97DD@microsoft.com>, Alexf wrote:
| Quote: | 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.
|
One possibility is to have the picture you click on use an Action Setting of Run Macro. The macro it runs could hide any slides you no longer want the user to see.
| Quote: | Thanks in advance!
"Steve Rindsberg" wrote:
In article <F9BBF341-B648-47C8-A194-E63FDE6981C0@microsoft.com>, Alexf wrote: I thought of some more questions!
1) How could you make information (such as "John") appear in another textbox a slide away?
Assuming you know that the textbox is on, say, slide 42 in is named "MyText"
With ActivePresentation.Slides(42).Shapes("MyText") .TextFrame.TextRange.Text = "John" End With
2) How could make the info from step 1 save itself
ActivePresentation.Save
3) And last: if you press a button, then the next time you open it, it skips a certain slide.
Don't understand the question ... what's "it"?
----------------------------------------- Steve Rindsberg, PPT MVP PPT FAQ: LINK PPTools: LINK ================================================ Live and in personable in the Help Center at PowerPoint Live Sept 21-24, San Diego CA, USA LINK
|
----------------------------------------- Steve Rindsberg, PPT MVP PPT FAQ: LINK PPTools: LINK ================================================ Live and in personable in the Help Center at PowerPoint Live Sept 21-24, San Diego CA, USA LINK |
| |
| | | Alexf |  |
| Posted: Thu Aug 14, 2008 4:01 pm Post subject: Re: VBA |  |
| |
| | | Alexf |  |
| Posted: Thu Aug 14, 2008 4:04 pm Post subject: Re: VBA |  |
Oh...and how do you get the Graphics hardware acceleration to work by clicking a button in Powerpoint? (Kiosk Mode)
Thanks in advance! |
| |
| | | Steve Rindsberg |  |
| Posted: Thu Aug 14, 2008 10:29 pm Post subject: Re: VBA |  |
In article <3E3E61E4-DA29-453B-9552-597D745C3006@microsoft.com>, Alexf wrote:
| Quote: | Oh...and how do you get the Graphics hardware acceleration to work by clicking a button in Powerpoint? (Kiosk Mode)
|
I don't know that you *can* change the setting via code.
----------------------------------------- Steve Rindsberg, PPT MVP PPT FAQ: LINK PPTools: LINK ================================================ Live and in personable in the Help Center at PowerPoint Live Sept 21-24, San Diego CA, USA LINK |
| |
| | | Alexf |  |
| Posted: Fri Aug 15, 2008 2:21 am Post subject: Re: VBA |  |
Any way to get the Set Up Show menu up while in Kiosk mode?
"Steve Rindsberg" wrote:
| Quote: | In article <3E3E61E4-DA29-453B-9552-597D745C3006@microsoft.com>, Alexf wrote: Oh...and how do you get the Graphics hardware acceleration to work by clicking a button in Powerpoint? (Kiosk Mode)
I don't know that you *can* change the setting via code.
----------------------------------------- Steve Rindsberg, PPT MVP PPT FAQ: LINK PPTools: LINK ================================================ Live and in personable in the Help Center at PowerPoint Live Sept 21-24, San Diego CA, USA LINK
|
|
| |
| | | Steve Rindsberg |  |
| Posted: Fri Aug 15, 2008 3:03 pm Post subject: Re: VBA |  |
In article <5741CACB-E532-4263-8CB0-A5A6E31DB75E@microsoft.com>, Alexf wrote:
| Quote: | Any way to get the Set Up Show menu up while in Kiosk mode?
|
The show's already running at that point; I doubt changing the settings would work.
BUT
You might be able to do something like this in code:
- note the current show position - quit the show - change show settings, including StartingSlide - start the show
BUT
In looking for something that might help with the above, I stumbled on the .AcceleratorsEnabled property of SlideShow view.
That might be exactly what you were looking for in the first place.
----------------------------------------- Steve Rindsberg, PPT MVP PPT FAQ: LINK PPTools: LINK ================================================ Live and in personable in the Help Center at PowerPoint Live Sept 21-24, San Diego CA, USA LINK |
| |
| Page 1 of 3 .:. Goto page 1, 2, 3 Next | |
|
|