A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Powerpoint, Publisher and Visio » Powerpoint
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Anything like F4 in Word to repeat formatting changes on selected



 
 
Thread Tools Display Modes
  #1  
Old August 19th, 2004, 09:47 PM
Blurry
external usenet poster
 
Posts: n/a
Default Anything like F4 in Word to repeat formatting changes on selected

Is there a function in PPT2003 that works like F4 in Word? Lets you select
text, change color, bolding, etc., then repeat with new selected text just by
pressing the key/keys?
--
Thanks for your help.
  #2  
Old August 20th, 2004, 12:23 AM
Inbar
external usenet poster
 
Posts: n/a
Default

You can do this from VBA using Shape.PickUp() to get the formating
information of a shape and Shape.Apply() to apply it to another shape.
If you simply create macros that do this, you can assign the F4 button to
run this macro.


Inbar.

"Blurry" wrote:

Is there a function in PPT2003 that works like F4 in Word? Lets you select
text, change color, bolding, etc., then repeat with new selected text just by
pressing the key/keys?
--
Thanks for your help.

  #3  
Old August 20th, 2004, 12:28 AM
TAJ Simmons
external usenet poster
 
Posts: n/a
Default

Blurry,

Powerpoint 2004 should have the F4 feature built in.
http://www.soniacoleman.com/Tutorial...htm#6.%20%20F4
Have you tried it ?


See also a A BRIGHTER, BETTER FORMAT PAINTER TOOL

Misc. Tips 3
http://www.rdpslides.com/pptfaq/FAQ00361.htm

Cheers
TAJ Simmons
microsoft powerpoint mvp

awesome - powerpoint backgrounds,
free powerpoint templates, tutorials, hints and tips etc
http://www.powerpointbackgrounds.com

Is there a function in PPT2003 that works like F4 in Word? Lets you select
text, change color, bolding, etc., then repeat with new selected text just by
pressing the key/keys?
--
Thanks for your help.



  #4  
Old August 20th, 2004, 12:31 AM
Sonia
external usenet poster
 
Posts: n/a
Default

See #6 at http://www.soniacoleman.com/Tutorial...uicktricks.htm

Try the Format Painter. It's the icon that looks like a paintbrush, next to
"cut", "copy", and "paste" icons on the toolbar. Search for Format Painter in
the help file and it will explain how to use it.
--

Sonia Coleman
Microsoft PowerPoint MVP Team
Autorun Software, Templates and Tutorials

"Blurry" wrote in message
...
Is there a function in PPT2003 that works like F4 in Word? Lets you select
text, change color, bolding, etc., then repeat with new selected text just by
pressing the key/keys?
--
Thanks for your help.



  #5  
Old August 20th, 2004, 02:04 PM
Steve Rindsberg
external usenet poster
 
Posts: n/a
Default

In article , Inbar wrote:
You can do this from VBA using Shape.PickUp() to get the formating
information of a shape and Shape.Apply() to apply it to another shape.
If you simply create macros that do this, you can assign the F4 button to
run this macro.


How do you assign the F4 button to run the macro? That'd be a very useful thing
to know.

--
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================
Featured Presenter, PowerPoint Live 2004
October 10-13, San Diego, CA www.PowerPointLive.com
================================================

  #6  
Old August 20th, 2004, 06:27 PM
Inbar
external usenet poster
 
Posts: n/a
Default

Acutally in PowerPoint you cannot assign shortcut keys to commands. Only Word
supports this. So, you would have to create the macro, and then add a button
to a menu for this macro simply by going to View-CommandBars-Customize and
finding the macro menu and adding your macro to a new button.

To really hook to F4 you would have to use eventhanlder for the keyboard.

Inbar.

"Steve Rindsberg" wrote:

In article , Inbar wrote:
You can do this from VBA using Shape.PickUp() to get the formating
information of a shape and Shape.Apply() to apply it to another shape.
If you simply create macros that do this, you can assign the F4 button to
run this macro.


How do you assign the F4 button to run the macro? That'd be a very useful thing
to know.

--
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================
Featured Presenter, PowerPoint Live 2004
October 10-13, San Diego, CA www.PowerPointLive.com
================================================


  #7  
Old August 21st, 2004, 03:43 AM
Steve Rindsberg
external usenet poster
 
Posts: n/a
Default

But if you do this, your button will generally only work when the presentation
containing the macro code is open or at least available. To make it reliably
available, you'd need to turn it into an addin.

In article , Inbar wrote:
Acutally in PowerPoint you cannot assign shortcut keys to commands. Only Word
supports this. So, you would have to create the macro, and then add a button
to a menu for this macro simply by going to View-CommandBars-Customize and
finding the macro menu and adding your macro to a new button.

To really hook to F4 you would have to use eventhanlder for the keyboard.

Inbar.

"Steve Rindsberg" wrote:

In article , Inbar wrote:
You can do this from VBA using Shape.PickUp() to get the formating
information of a shape and Shape.Apply() to apply it to another shape.
If you simply create macros that do this, you can assign the F4 button to
run this macro.


How do you assign the F4 button to run the macro? That'd be a very useful thing
to know.

--
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================
Featured Presenter, PowerPoint Live 2004
October 10-13, San Diego, CA www.PowerPointLive.com
================================================




--
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================
Featured Presenter, PowerPoint Live 2004
October 10-13, San Diego, CA www.PowerPointLive.com
================================================

  #8  
Old August 23rd, 2004, 06:27 PM
Inbar
external usenet poster
 
Posts: n/a
Default

Yes, that's correct. You can save it as a PPA and set the registry to load it
everytime PPT loads.

"Steve Rindsberg" wrote:

But if you do this, your button will generally only work when the presentation
containing the macro code is open or at least available. To make it reliably
available, you'd need to turn it into an addin.

In article , Inbar wrote:
Acutally in PowerPoint you cannot assign shortcut keys to commands. Only Word
supports this. So, you would have to create the macro, and then add a button
to a menu for this macro simply by going to View-CommandBars-Customize and
finding the macro menu and adding your macro to a new button.

To really hook to F4 you would have to use eventhanlder for the keyboard.

Inbar.

"Steve Rindsberg" wrote:

In article , Inbar wrote:
You can do this from VBA using Shape.PickUp() to get the formating
information of a shape and Shape.Apply() to apply it to another shape.
If you simply create macros that do this, you can assign the F4 button to
run this macro.

How do you assign the F4 button to run the macro? That'd be a very useful thing
to know.

--
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================
Featured Presenter, PowerPoint Live 2004
October 10-13, San Diego, CA www.PowerPointLive.com
================================================




--
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================
Featured Presenter, PowerPoint Live 2004
October 10-13, San Diego, CA www.PowerPointLive.com
================================================


 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Retaining source formatting from Excel with a mail merge in Word Drew General Discussion 2 August 18th, 2004 07:34 AM
Columns, parallel and block protect agatha Page Layout 1 June 7th, 2004 10:01 PM
Labels Lydia Thompson New Users 2 May 18th, 2004 08:02 AM
saving all documents at once Cindy New Users 4 April 29th, 2004 09:32 AM
Importing selected data into a Word by selecting the relevant record??? Dale Holden Worksheet Functions 0 April 15th, 2004 04:42 AM


All times are GMT +1. The time now is 10:28 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.