PC Review


Reply
Thread Tools Rate Thread

How to animate an image to move from the center of the screen?

 
 
=?Utf-8?B?RE9SSQ==?=
Guest
Posts: n/a
 
      11th Jan 2006
I 'd like to animate 2 images from the center of the screen so that one moves
to the upper outer left corner and the other one moves to the lower outer
right corner of the screen. I know in ppt 2002 this can be easily done by
path animation but I can't find anything like that in ppt 2000. Can any body
help if there is a way of doing this in ppt 2000 as the compter we will be
using is downloaded with ppt 2000?
Thanks for your help in advance.
Dori
 
Reply With Quote
 
 
 
 
Austin Myers
Guest
Posts: n/a
 
      11th Jan 2006
PPT 2000 can't do this, use the 2003 PPT viewer instead.



Austin Myers
MS PowerPoint MVP Team

PowerPoint Video and PowerPoint Sound Solutions www.pfcmedia.com




"DORI" <(E-Mail Removed)> wrote in message
news:5BD2FE49-C3E3-457E-B02E-(E-Mail Removed)...
>I 'd like to animate 2 images from the center of the screen so that one
>moves
> to the upper outer left corner and the other one moves to the lower outer
> right corner of the screen. I know in ppt 2002 this can be easily done by
> path animation but I can't find anything like that in ppt 2000. Can any
> body
> help if there is a way of doing this in ppt 2000 as the compter we will be
> using is downloaded with ppt 2000?
> Thanks for your help in advance.
> Dori


 
Reply With Quote
 
=?Utf-8?B?RE9SSQ==?=
Guest
Posts: n/a
 
      12th Jan 2006
Thanks Austin.
The problem with viewer is that the macros and some of the links do not
work. Is there a VBA code that can do the job in ppt 2000?
Thanks,
Dori

"Austin Myers" wrote:

> PPT 2000 can't do this, use the 2003 PPT viewer instead.
>
>
>
> Austin Myers
> MS PowerPoint MVP Team
>
> PowerPoint Video and PowerPoint Sound Solutions www.pfcmedia.com
>
>
>
>
> "DORI" <(E-Mail Removed)> wrote in message
> news:5BD2FE49-C3E3-457E-B02E-(E-Mail Removed)...
> >I 'd like to animate 2 images from the center of the screen so that one
> >moves
> > to the upper outer left corner and the other one moves to the lower outer
> > right corner of the screen. I know in ppt 2002 this can be easily done by
> > path animation but I can't find anything like that in ppt 2000. Can any
> > body
> > help if there is a way of doing this in ppt 2000 as the compter we will be
> > using is downloaded with ppt 2000?
> > Thanks for your help in advance.
> > Dori

>
>

 
Reply With Quote
 
Austin Myers
Guest
Posts: n/a
 
      12th Jan 2006
Nothing pre-written I can think of. (Don't trust my thinking, the internet
is quite large.) But, if you wanted a macro to do this it would not be
terribly difficult to write. Start the PowerPoint VBA editor, open it's
help and search on "move", several examples of code are given.


Austin Myers
MS PowerPoint MVP Team

PowerPoint Video and PowerPoint Sound Solutions www.pfcmedia.com



"DORI" <(E-Mail Removed)> wrote in message
news:2C1CBD5B-EB81-4FBB-8520-(E-Mail Removed)...
> Thanks Austin.
> The problem with viewer is that the macros and some of the links do not
> work. Is there a VBA code that can do the job in ppt 2000?
> Thanks,
> Dori
>
> "Austin Myers" wrote:
>
>> PPT 2000 can't do this, use the 2003 PPT viewer instead.
>>
>>
>>
>> Austin Myers
>> MS PowerPoint MVP Team
>>
>> PowerPoint Video and PowerPoint Sound Solutions www.pfcmedia.com
>>
>>
>>
>>
>> "DORI" <(E-Mail Removed)> wrote in message
>> news:5BD2FE49-C3E3-457E-B02E-(E-Mail Removed)...
>> >I 'd like to animate 2 images from the center of the screen so that one
>> >moves
>> > to the upper outer left corner and the other one moves to the lower
>> > outer
>> > right corner of the screen. I know in ppt 2002 this can be easily done
>> > by
>> > path animation but I can't find anything like that in ppt 2000. Can any
>> > body
>> > help if there is a way of doing this in ppt 2000 as the compter we will
>> > be
>> > using is downloaded with ppt 2000?
>> > Thanks for your help in advance.
>> > Dori

>>
>>


 
Reply With Quote
 
=?Utf-8?B?RE9SSQ==?=
Guest
Posts: n/a
 
      12th Jan 2006
Austin,
I followed your advice and came up with this macro:

Sub Macro2()
ActiveWindow.Selection.SlideRange.Shapes("Rectangle 2").Select
ActiveWindow.Selection.ShapeRange.TextFrame.TextRange.Select
With ActiveWindow.Selection.ShapeRange
.IncrementLeft -303.88
.IncrementTop -212.12
End With
End Sub

Then, I applied the macro to the text box in the action setting. In show
mode, when I click on the text box, it only change in color but it does not
move.
What am I doing wrong?
Can any body help?
Dori
"Austin Myers" wrote:

> Nothing pre-written I can think of. (Don't trust my thinking, the internet
> is quite large.) But, if you wanted a macro to do this it would not be
> terribly difficult to write. Start the PowerPoint VBA editor, open it's
> help and search on "move", several examples of code are given.
>
>
> Austin Myers
> MS PowerPoint MVP Team
>
> PowerPoint Video and PowerPoint Sound Solutions www.pfcmedia.com
>
>
>
> "DORI" <(E-Mail Removed)> wrote in message
> news:2C1CBD5B-EB81-4FBB-8520-(E-Mail Removed)...
> > Thanks Austin.
> > The problem with viewer is that the macros and some of the links do not
> > work. Is there a VBA code that can do the job in ppt 2000?
> > Thanks,
> > Dori
> >
> > "Austin Myers" wrote:
> >
> >> PPT 2000 can't do this, use the 2003 PPT viewer instead.
> >>
> >>
> >>
> >> Austin Myers
> >> MS PowerPoint MVP Team
> >>
> >> PowerPoint Video and PowerPoint Sound Solutions www.pfcmedia.com
> >>
> >>
> >>
> >>
> >> "DORI" <(E-Mail Removed)> wrote in message
> >> news:5BD2FE49-C3E3-457E-B02E-(E-Mail Removed)...
> >> >I 'd like to animate 2 images from the center of the screen so that one
> >> >moves
> >> > to the upper outer left corner and the other one moves to the lower
> >> > outer
> >> > right corner of the screen. I know in ppt 2002 this can be easily done
> >> > by
> >> > path animation but I can't find anything like that in ppt 2000. Can any
> >> > body
> >> > help if there is a way of doing this in ppt 2000 as the compter we will
> >> > be
> >> > using is downloaded with ppt 2000?
> >> > Thanks for your help in advance.
> >> > Dori
> >>
> >>

>
>

 
Reply With Quote
 
Steve Rindsberg
Guest
Posts: n/a
 
      12th Jan 2006
Have a look here for more info:
Macros I record in Normal/Slide view don't work in Slide Show
http://www.rdpslides.com/pptfaq/FAQ00159.htm

Short version: since you can't select anything in slide show view, macros that
start by selecting something ... you guessed it! ... won't work in slide show
view.

This will get you started. First, prepare by selecting the shape you want to
work with and give it a name:

Sub NameTheShapeFirst()
With ActiveWindow.Selection.ShapeRange(1)
.Name = "MisterWiggly"
' or whatever makes sense to you
End With
End Sub

Then modify the macro you run during the show to use the named shape:

Sub Macro2()
With ActiveWindow.Selection.SlideRange.Shapes("MisterWiggly")
.IncrementLeft -303.88
.IncrementTop -212.12
End With
End Sub


In article <BEE05B9E-F0E1-4BFE-9E26-(E-Mail Removed)>, Dori wrote:
> Austin,
> I followed your advice and came up with this macro:
>
> Sub Macro2()
> ActiveWindow.Selection.SlideRange.Shapes("Rectangle 2").Select
> ActiveWindow.Selection.ShapeRange.TextFrame.TextRange.Select
> With ActiveWindow.Selection.ShapeRange
> .IncrementLeft -303.88
> .IncrementTop -212.12
> End With
> End Sub
>
> Then, I applied the macro to the text box in the action setting. In show
> mode, when I click on the text box, it only change in color but it does not
> move.
> What am I doing wrong?
> Can any body help?
> Dori
> "Austin Myers" wrote:
>
> > Nothing pre-written I can think of. (Don't trust my thinking, the internet
> > is quite large.) But, if you wanted a macro to do this it would not be
> > terribly difficult to write. Start the PowerPoint VBA editor, open it's
> > help and search on "move", several examples of code are given.
> >
> >
> > Austin Myers
> > MS PowerPoint MVP Team
> >
> > PowerPoint Video and PowerPoint Sound Solutions www.pfcmedia.com
> >
> >
> >
> > "DORI" <(E-Mail Removed)> wrote in message
> > news:2C1CBD5B-EB81-4FBB-8520-(E-Mail Removed)...
> > > Thanks Austin.
> > > The problem with viewer is that the macros and some of the links do not
> > > work. Is there a VBA code that can do the job in ppt 2000?
> > > Thanks,
> > > Dori
> > >
> > > "Austin Myers" wrote:
> > >
> > >> PPT 2000 can't do this, use the 2003 PPT viewer instead.
> > >>
> > >>
> > >>
> > >> Austin Myers
> > >> MS PowerPoint MVP Team
> > >>
> > >> PowerPoint Video and PowerPoint Sound Solutions www.pfcmedia.com
> > >>
> > >>
> > >>
> > >>
> > >> "DORI" <(E-Mail Removed)> wrote in message
> > >> news:5BD2FE49-C3E3-457E-B02E-(E-Mail Removed)...
> > >> >I 'd like to animate 2 images from the center of the screen so that one
> > >> >moves
> > >> > to the upper outer left corner and the other one moves to the lower
> > >> > outer
> > >> > right corner of the screen. I know in ppt 2002 this can be easily done
> > >> > by
> > >> > path animation but I can't find anything like that in ppt 2000. Can any
> > >> > body
> > >> > help if there is a way of doing this in ppt 2000 as the compter we will
> > >> > be
> > >> > using is downloaded with ppt 2000?
> > >> > Thanks for your help in advance.
> > >> > Dori
> > >>
> > >>

> >
> >

>


-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ: www.pptfaq.com
PPTools: www.pptools.com
================================================


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How to move textbox to center of screen during maximize Benjamins via AccessMonster.com Microsoft Access Forms 0 21st Nov 2007 02:01 AM
How to animate objects to move around a slide but not on and off =?Utf-8?B?U2t5?= Microsoft Powerpoint 1 11th Feb 2007 03:04 AM
VPN Start before logon window - Unable to move to center of screen =?Utf-8?B?dHZ3YXRjaGVy?= Windows XP Work Remotely 0 5th Jan 2005 04:55 PM
Is it possible to animate the background image??? Waldo Microsoft Powerpoint 3 8th Jun 2004 12:43 AM
Hotkey to move cursor arrow to center screen? =?Utf-8?B?Ym9ibmV1ZGVja2Vy?= Windows XP Accessibility 1 13th Feb 2004 02:47 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 09:40 AM.