PowerPoint Keyboard Shortcuts

M

MrRahib

I am a math teacher that uses PowerPoint daily in my class. I make
the PowerPoints myself, and I am pretty fast at it. I am being slowed
down by the tedious task of putting custom animations. I used Equation
Editor a lot, and I am fast with it. However, when I want to do a Fly
from Bottom animation, I am slowed down by the act of moving my mouse
to the custom animation template, clicking on entrance, then clicking
on Fly in. I want to be able to make the equation or text, and then
just click on a key board shortcut to give it a fly in customation.
Any ideas?

PS- Does anyone know a keyboard shortcut to inserting a textbox.
Again, I find that it slows me down to move my mouse to the input text
icon to insert a text. Any help would be appreciated.
 
B

Bob Mathews

I'm a shortcut guy too, so I understand the problem. (BTW, you didn't
say which version of PPT you're using. When posting a newsgroup
question, it's almost always helpful to say which OS you're using and
which version of the product. That may have had an effect on the
answer in this case, since shortcuts are different on the Macintosh,
and they're different in PPT 2007 compared with earlier versions of
Office for Windows. I'm going to assume you're using PPT 2003 for
Windows.)

In Word, you no doubt know it's a fairly easy matter to add shortcuts
or change existing ones, but this capability doesn't exist natively in
PPT. For some things in PPT, you can use the macro recorder (Tools >
Macro > Record New Macro), and put an icon on the toolbar for the
macro, but this won't work for assigning animation to an object.

The only way I know of to customize your keyboard shortcuts is to use
a third-party add-in called OfficeOne Shortcut Manager. It's $29.95,
and available here: http://officeone.mvps.org/ppsctmgr/ppsctmgr.html.
But let me hasten to add that I've never used this product, and I
don't know if it will allow you to assign a shortcut key to
animations.

--
Bob Mathews
Director of Training
Design Science, Inc.
bobm at dessci.com
http://www.dessci.com/free.asp?free=news
FREE fully-functional 30-day evaluation of MathType
MathType, WebEQ, MathPlayer, MathFlow, Equation Editor, TeXaide
 
J

John Wilson

If all the animations are the same it would be fairly simple to write a macro
to add them.

This eg would add a medium fly from bottom animation to the selected shape.

Sub addit()
Dim oshp As Shape
Dim osld As Slide
Dim oeff As Effect
On Error GoTo errhandler
Set oshp = ActiveWindow.Selection.ShapeRange(1)
Set osld = ActiveWindow.Selection.SlideRange(1)
Set oeff = osld.TimeLine.MainSequence.AddEffect(oshp, msoAnimEffectFly)
With oeff
..EffectParameters.Direction = msoAnimDirectionBottom
..Timing.Duration = 2
End With
Exit Sub
errhandler:
MsgBox "Please select something!"
End Sub

Don't know how to use vba?
http://www.pptalchemy.co.uk/powerpoint_hints_and_tips_tutorials.html#vba


--
Amazing PPT Hints, Tips and Tutorials

http://www.PPTAlchemy.co.uk
http://www.technologytrish.co.uk
email john AT technologytrish.co.uk
 
L

Lucy Thomson (aka aneasiertomorrow)

Hi Mr Rahib

While it's not a single keyboard shortcut, you could use the following (you
didn't mention your version so here it is for 2003 & 2007):
2003:
alt+d -> m -> enter -> e -> number that fly-in appears as (7 on my pc)
2007:
alt -> a -> c -> enter -> e -> number that fly-in appears as (7 on my pc)

Basically, alt ativates the menu bar then you press the underlined letter in
the command you are after. They have really expanded this feature in 2007
(while thankfully leaving the old keyboard shortcuts alone).

Hope that helps,
Lucy
 

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