Microsoft Office Forums

Go Back   Microsoft Office Forums > >

Reply
 
Thread Tools Display Modes
  #1  
Old 08-18-2010, 02:43 PM
scottv1001 scottv1001 is offline Click to Add Placeholder Text Windows XP Click to Add Placeholder Text Office 2007
Novice
Click to Add Placeholder Text
 
Join Date: Aug 2010
Posts: 6
scottv1001 is on a distinguished road
Default Click to Add Placeholder Text

I need some advanced help with creating "Click to add" placeholder text in PowerPoint. I'm looking for the same concept as the placeholder text you create for the "Master" slide, but this would be for the actual slide not on a Master slide.

I'm building out a communications template where the user will fill in their own content, but I want to put instructions in the text fields that they will be filling out. So, when they click in the text field my instructions disappear and the text field becomes editable for the end user.

I have to do this on the slide and not the Master slide, to many variables in the content/layout.

Anyone know how to tap into the coding/visual basic functions allowed within Powerpoint? Or any other tips??

Any help would be much appreciated.

Thanks...
Reply With Quote
  #2  
Old 08-19-2010, 07:04 AM
Jercook Jercook is offline Click to Add Placeholder Text Windows XP Click to Add Placeholder Text Office 2010 (Version 14.0)
Novice
 
Join Date: Aug 2010
Location: West Valley Utah
Posts: 13
Jercook is on a distinguished road
Cool Adding a new layout to a slide

This code would add text layout to slide 2:

ActivePresentation.Slides(2).Layout = ppLayoutText



To see the other layout options in the vba enviornment, delete above code past =, enter = and a list of options should be displayed.
Reply With Quote
  #3  
Old 08-19-2010, 10:01 AM
scottv1001 scottv1001 is offline Click to Add Placeholder Text Windows XP Click to Add Placeholder Text Office 2007
Novice
Click to Add Placeholder Text
 
Join Date: Aug 2010
Posts: 6
scottv1001 is on a distinguished road
Default Need it for a text box

Thanks. This is options to modify the Master layout. I'd like to use the same concept but on regular text boxes. Same functions as the Master slide text but using it as random text boxes.

any suggestions for that?

Thanks again.
Reply With Quote
  #4  
Old 08-19-2010, 10:18 AM
Jercook Jercook is offline Click to Add Placeholder Text Windows XP Click to Add Placeholder Text Office 2010 (Version 14.0)
Novice
 
Join Date: Aug 2010
Location: West Valley Utah
Posts: 13
Jercook is on a distinguished road
Cool I think the first code is only for a specific slide

The code shown here should apply to the slidemaster. Note the slidemaster object in the code. In the previous code, 'SlideMaster' isn't present and when I tested it a few days ago, the previous code I sent to you applied only to the specified slide.

This code should be applied to the slidemaster, and all slides linked to the slidemaster:


Application.ActivePresentation.SlideMaster.Background.Fill _
.PresetTextured msoTextureGreenMarble



If this isn't the case, I probably don't understand what I am talking about.
Reply With Quote
  #5  
Old 08-19-2010, 02:57 PM
scottv1001 scottv1001 is offline Click to Add Placeholder Text Windows XP Click to Add Placeholder Text Office 2007
Novice
Click to Add Placeholder Text
 
Join Date: Aug 2010
Posts: 6
scottv1001 is on a distinguished road
Default Text Box properties

The first code you suggested worked for me it just wasn't what I needed. It's somewhat close... Not sure if I'm explaining what I need correctly.

I basically want to modify the properties of a text box. I want to add a text box and enter in the text box a short description/instruction for the end user to fill in thier own text. So when the end user click inside the text box my information disappears allowing the end user to enter thier own information, so they don't have to highlight and delete what I entered. But I don't want to do this within the Master slide.

Hopefully that makes more sense. Thanks again...
Reply With Quote
  #6  
Old 08-19-2010, 04:55 PM
Jercook Jercook is offline Click to Add Placeholder Text Windows XP Click to Add Placeholder Text Office 2010 (Version 14.0)
Novice
 
Join Date: Aug 2010
Location: West Valley Utah
Posts: 13
Jercook is on a distinguished road
Cool I misunderstood

Now I see what you are trying to accompalish. Played with it for awhile with a few problems. I'll give it a better try tomorrow.
Reply With Quote
  #7  
Old 08-20-2010, 09:49 AM
Jercook Jercook is offline Click to Add Placeholder Text Windows XP Click to Add Placeholder Text Office 2010 (Version 14.0)
Novice
 
Join Date: Aug 2010
Location: West Valley Utah
Posts: 13
Jercook is on a distinguished road
Cool Possible Answer

I couldn't get the Text Box from the Text group of the insert menu to accept user text when run so I tried another solution that seems to work.

In the developer tab on the ribbon, a group called controls contains several active x controls. Add the Active Text Box control to your slide and double-click it.

In the properties box at the left, scroll down to Text and set it to "Enter Your Favorite Color". Then add the following code in the code box:


------------------------------
Private Sub TextBox1_MouseDown(ByVal Button As Integer, ByVal Shift As Integer, ByVal X As Single, ByVal Y As Single) 'this should all be on one line

If TextBox1.Text = "Enter Your Favorite Color" Then TextBox1.Text = ""

End Sub

-------------------------------


When you run the slide and click on the text box, the prompt "Enter your Favorite Color" will clear, waiting for the user input.

This will only work once unless you run some code when the slide appears to re-initialize the text to "Enter Your Favorite Color" since it will now contain whatever the user entered.

Hope this helps. I got this from help on another forum so we both learned something here!

Jerry

Last edited by Jercook; 08-20-2010 at 09:52 AM. Reason: to clarify
Reply With Quote
  #8  
Old 08-20-2010, 12:26 PM
scottv1001 scottv1001 is offline Click to Add Placeholder Text Windows XP Click to Add Placeholder Text Office 2007
Novice
Click to Add Placeholder Text
 
Join Date: Aug 2010
Posts: 6
scottv1001 is on a distinguished road
Default Soooo Close!!

Jerry,

Your so close... and I thank you. Actually it's what I need, BUT I need it to work when your in "edit mode" vs "Slide Show Mode".

I'm basically providing instructions to the end user how to build their communications plan presentation.

Do you think that's possible?

Scott
Reply With Quote
  #9  
Old 08-20-2010, 07:48 PM
Jercook Jercook is offline Click to Add Placeholder Text Windows XP Click to Add Placeholder Text Office 2010 (Version 14.0)
Novice
 
Join Date: Aug 2010
Location: West Valley Utah
Posts: 13
Jercook is on a distinguished road
Cool

Quote:
Originally Posted by scottv1001 View Post
Jerry,

Your so close... and I thank you. Actually it's what I need, BUT I need it to work when your in "edit mode" vs "Slide Show Mode".

I'm basically providing instructions to the end user how to build their communications plan presentation.

Do you think that's possible?

Scott
Sorry. I just don't know. I've tried everything I can think of . The only way I can think of doing it in the editing mode is to create a layout in the Slide Master group (not the master) that has the prompting text in it. I think this would work but from your statements, working with the Slide Master wasn't an option and I can't think of any other approach.

If I think of anything I will post it but not too hopeful at the moment.

Good Luck.

Jerry
Reply With Quote
  #10  
Old 08-23-2010, 10:44 AM
scottv1001 scottv1001 is offline Click to Add Placeholder Text Windows XP Click to Add Placeholder Text Office 2007
Novice
Click to Add Placeholder Text
 
Join Date: Aug 2010
Posts: 6
scottv1001 is on a distinguished road
Default I'll keep playing/poking around

Thanks for all your help. I'll keep playing around to figure out how to make this work. If anything comes to mind, let me know..
Reply With Quote
Reply



Similar Threads
Thread Thread Starter Forum Replies Last Post
What is this right-click sub-menu called? wornways Word 3 08-13-2010 09:17 PM
Click to Add Placeholder Text Creating a 1 click checkbox in Word somethingelse Word 2 03-09-2010 01:24 PM
auto click hyperlink malemodel_75@yahoo.com Outlook 0 02-05-2010 12:05 PM
click a cell to go to a worksheet victor Excel 0 10-27-2006 02:57 PM
Click to Add Placeholder Text My Subforms jump when I click the tab jbryanh Office 1 10-13-2005 07:12 AM

Other Forums: Access Forums

All times are GMT -7. The time now is 11:00 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Search Engine Optimisation provided by DragonByte SEO (Lite) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
MSOfficeForums.com is not affiliated with Microsoft