PC Review


Reply
Thread Tools Rate Thread

How to bring to front using slide master in PowerPoint

 
 
=?Utf-8?B?QW5uZU1E?=
Guest
Posts: n/a
 
      3rd May 2007
I created a WordArt in PowerPoint's slide master but can't get it to the
front. It's partly hidden by the images on many slides. When in Side Mster, I
click on the WordArt, then choose "Bring to Front" but it's not working as a
master. Any other way to do it? I can't take the time to do it manually with
170 slides. I'm using MS Office Small Business Edition 2003.
Thanks, Anne
 
Reply With Quote
 
 
 
 
=?Utf-8?B?YW5lYXNpZXJ0b21vcnJvdw==?=
Guest
Posts: n/a
 
      3rd May 2007
Hi Anne

I'm afraid that's the way it's designed (AFAIK) - masters work like the
'background' for the slide so you cannot select elements and re-order
them/delete them etc.

Is there any way you can move/resize the WordArt on the master or the images
that are blocking it? The only other thing I can suggest is to copy and paste
the WordArt from the Master onto the affected slides - it should position
itself in the right place at least. Not ideal I know.

Lucy
--
MOS Master Instructor
www.aneasiertomorrow.com.au major overhaul completed 26/4/07

If this post answered your question please let us know as others may be
interested too


"AnneMD" wrote:

> I created a WordArt in PowerPoint's slide master but can't get it to the
> front. It's partly hidden by the images on many slides. When in Side Mster, I
> click on the WordArt, then choose "Bring to Front" but it's not working as a
> master. Any other way to do it? I can't take the time to do it manually with
> 170 slides. I'm using MS Office Small Business Edition 2003.
> Thanks, Anne

 
Reply With Quote
 
=?Utf-8?B?Sm9obiBXaWxzb24=?=
Guest
Posts: n/a
 
      3rd May 2007
Exactly as Lucy says.

Copy and paste is probably the way to do it. If there are not too many
slides try ctrl V then pagedown repeatedly to speed things up or if there are
a lot try this vba snippet after placing the first "logo" and selecting it.
It will paste all the other slides automatically

Sub pasteall()
Dim osld As Slide
On Error GoTo ErrHandler
ActiveWindow.Selection.ShapeRange.Cut
For Each osld In ActivePresentation.Slides
osld.Shapes.Paste
Next osld
Exit Sub
ErrHandler:
MsgBox "Error! Maybe you didn't select anything?"
End Sub

--
Amazing PPT Hints, Tips and Tutorials-http://www.PPTAlchemy.co.uk
http://www.technologytrish.co.uk/ppttipshome.html
email john AT technologytrish.co.uk


"aneasiertomorrow" wrote:

> Hi Anne
>
> I'm afraid that's the way it's designed (AFAIK) - masters work like the
> 'background' for the slide so you cannot select elements and re-order
> them/delete them etc.
>
> Is there any way you can move/resize the WordArt on the master or the images
> that are blocking it? The only other thing I can suggest is to copy and paste
> the WordArt from the Master onto the affected slides - it should position
> itself in the right place at least. Not ideal I know.
>
> Lucy
> --
> MOS Master Instructor
> www.aneasiertomorrow.com.au major overhaul completed 26/4/07
>
> If this post answered your question please let us know as others may be
> interested too
>
>
> "AnneMD" wrote:
>
> > I created a WordArt in PowerPoint's slide master but can't get it to the
> > front. It's partly hidden by the images on many slides. When in Side Mster, I
> > click on the WordArt, then choose "Bring to Front" but it's not working as a
> > master. Any other way to do it? I can't take the time to do it manually with
> > 170 slides. I'm using MS Office Small Business Edition 2003.
> > Thanks, Anne

 
Reply With Quote
 
=?Utf-8?B?YW5lYXNpZXJ0b21vcnJvdw==?=
Guest
Posts: n/a
 
      3rd May 2007
Hey John

Probably a blonde question but what is osld? You know I would like to
understand this whole VBA thing :-)

Lucy
--
MOS Master Instructor
www.aneasiertomorrow.com.au

If this post answered your question please let us know as others may be
interested too


"John Wilson" wrote:

> Exactly as Lucy says.
>
> Copy and paste is probably the way to do it. If there are not too many
> slides try ctrl V then pagedown repeatedly to speed things up or if there are
> a lot try this vba snippet after placing the first "logo" and selecting it.
> It will paste all the other slides automatically
>
> Sub pasteall()
> Dim osld As Slide
> On Error GoTo ErrHandler
> ActiveWindow.Selection.ShapeRange.Cut
> For Each osld In ActivePresentation.Slides
> osld.Shapes.Paste
> Next osld
> Exit Sub
> ErrHandler:
> MsgBox "Error! Maybe you didn't select anything?"
> End Sub
>
> --
> Amazing PPT Hints, Tips and Tutorials-http://www.PPTAlchemy.co.uk
> http://www.technologytrish.co.uk/ppttipshome.html
> email john AT technologytrish.co.uk
>
>
> "aneasiertomorrow" wrote:
>
> > Hi Anne
> >
> > I'm afraid that's the way it's designed (AFAIK) - masters work like the
> > 'background' for the slide so you cannot select elements and re-order
> > them/delete them etc.
> >
> > Is there any way you can move/resize the WordArt on the master or the images
> > that are blocking it? The only other thing I can suggest is to copy and paste
> > the WordArt from the Master onto the affected slides - it should position
> > itself in the right place at least. Not ideal I know.
> >
> > Lucy
> > --
> > MOS Master Instructor
> > www.aneasiertomorrow.com.au major overhaul completed 26/4/07
> >
> > If this post answered your question please let us know as others may be
> > interested too
> >
> >
> > "AnneMD" wrote:
> >
> > > I created a WordArt in PowerPoint's slide master but can't get it to the
> > > front. It's partly hidden by the images on many slides. When in Side Mster, I
> > > click on the WordArt, then choose "Bring to Front" but it's not working as a
> > > master. Any other way to do it? I can't take the time to do it manually with
> > > 170 slides. I'm using MS Office Small Business Edition 2003.
> > > Thanks, Anne

 
Reply With Quote
 
=?Utf-8?B?QW5uZU1E?=
Guest
Posts: n/a
 
      3rd May 2007
Thank you! Your information will save me fruitless experimenting. If I have
time, I'll do the copy and paste. Anne

"aneasiertomorrow" wrote:

> Hi Anne
>
> I'm afraid that's the way it's designed (AFAIK) - masters work like the
> 'background' for the slide so you cannot select elements and re-order
> them/delete them etc.
>
> Is there any way you can move/resize the WordArt on the master or the images
> that are blocking it? The only other thing I can suggest is to copy and paste
> the WordArt from the Master onto the affected slides - it should position
> itself in the right place at least. Not ideal I know.
>
> Lucy
> --
> MOS Master Instructor
> www.aneasiertomorrow.com.au major overhaul completed 26/4/07
>
> If this post answered your question please let us know as others may be
> interested too
>
>
> "AnneMD" wrote:
>
> > I created a WordArt in PowerPoint's slide master but can't get it to the
> > front. It's partly hidden by the images on many slides. When in Side Mster, I
> > click on the WordArt, then choose "Bring to Front" but it's not working as a
> > master. Any other way to do it? I can't take the time to do it manually with
> > 170 slides. I'm using MS Office Small Business Edition 2003.
> > Thanks, Anne

 
Reply With Quote
 
=?Utf-8?B?QW5uZU1E?=
Guest
Posts: n/a
 
      3rd May 2007
Thanks for the detailed information. I don't understand all the descriptors
but will give it a try when I have a chance. Maybe with the screen open in
front of me, it will become clear. Anne

"John Wilson" wrote:

> Exactly as Lucy says.
>
> Copy and paste is probably the way to do it. If there are not too many
> slides try ctrl V then pagedown repeatedly to speed things up or if there are
> a lot try this vba snippet after placing the first "logo" and selecting it.
> It will paste all the other slides automatically
>
> Sub pasteall()
> Dim osld As Slide
> On Error GoTo ErrHandler
> ActiveWindow.Selection.ShapeRange.Cut
> For Each osld In ActivePresentation.Slides
> osld.Shapes.Paste
> Next osld
> Exit Sub
> ErrHandler:
> MsgBox "Error! Maybe you didn't select anything?"
> End Sub
>
> --
> Amazing PPT Hints, Tips and Tutorials-http://www.PPTAlchemy.co.uk
> http://www.technologytrish.co.uk/ppttipshome.html
> email john AT technologytrish.co.uk
>
>
> "aneasiertomorrow" wrote:
>
> > Hi Anne
> >
> > I'm afraid that's the way it's designed (AFAIK) - masters work like the
> > 'background' for the slide so you cannot select elements and re-order
> > them/delete them etc.
> >
> > Is there any way you can move/resize the WordArt on the master or the images
> > that are blocking it? The only other thing I can suggest is to copy and paste
> > the WordArt from the Master onto the affected slides - it should position
> > itself in the right place at least. Not ideal I know.
> >
> > Lucy
> > --
> > MOS Master Instructor
> > www.aneasiertomorrow.com.au major overhaul completed 26/4/07
> >
> > If this post answered your question please let us know as others may be
> > interested too
> >
> >
> > "AnneMD" wrote:
> >
> > > I created a WordArt in PowerPoint's slide master but can't get it to the
> > > front. It's partly hidden by the images on many slides. When in Side Mster, I
> > > click on the WordArt, then choose "Bring to Front" but it's not working as a
> > > master. Any other way to do it? I can't take the time to do it manually with
> > > 170 slides. I'm using MS Office Small Business Edition 2003.
> > > Thanks, Anne

 
Reply With Quote
 
=?Utf-8?B?YW5lYXNpZXJ0b21vcnJvdw==?=
Guest
Posts: n/a
 
      3rd May 2007
Glad to help where I can :-)

Lucy
--
MOS Master Instructor
www.aneasiertomorrow.com.au

If this post answered your question please let us know as others may be
interested too


"AnneMD" wrote:

> Thank you! Your information will save me fruitless experimenting. If I have
> time, I'll do the copy and paste. Anne
>
> "aneasiertomorrow" wrote:
>
> > Hi Anne
> >
> > I'm afraid that's the way it's designed (AFAIK) - masters work like the
> > 'background' for the slide so you cannot select elements and re-order
> > them/delete them etc.
> >
> > Is there any way you can move/resize the WordArt on the master or the images
> > that are blocking it? The only other thing I can suggest is to copy and paste
> > the WordArt from the Master onto the affected slides - it should position
> > itself in the right place at least. Not ideal I know.
> >
> > Lucy
> > --
> > MOS Master Instructor
> > www.aneasiertomorrow.com.au major overhaul completed 26/4/07
> >
> > If this post answered your question please let us know as others may be
> > interested too
> >
> >
> > "AnneMD" wrote:
> >
> > > I created a WordArt in PowerPoint's slide master but can't get it to the
> > > front. It's partly hidden by the images on many slides. When in Side Mster, I
> > > click on the WordArt, then choose "Bring to Front" but it's not working as a
> > > master. Any other way to do it? I can't take the time to do it manually with
> > > 170 slides. I'm using MS Office Small Business Edition 2003.
> > > Thanks, Anne

 
Reply With Quote
 
Steve Rindsberg
Guest
Posts: n/a
 
      3rd May 2007
In article <20AB552F-3F76-4503-92A3-(E-Mail Removed)>,
Aneasiertomorrow wrote:
> Hey John
>
> Probably a blonde question but what is osld? You know I would like to
> understand this whole VBA thing :-)


osld is just the name of a variable (a virtual box to store a nugget of data of
some sort). It could have been named Fred or AnEasierTomorrow or LucyFromOz.

But it's become more or less standard to use special letters to remind us of
what type data the variable contains so:

The "Dim osld as Slide" bit tells VBA "The variable osld will contain slide
objects" (well, actually "references" to slides, but it's as good as the same).

The "o" means Object and the "sld" is less typing than "slide".
If we weren't lazy sods, we wouldn't be trying to get the computer to do our
work for us, right?

With that o (object) and sld (slide) reminder in our faces, we know not to ask
VBA to do unreasonable, impossible or immoral things with/to it. Just things
that a slide knows how to do. Handy.

And better ... because VBA now knows that osld will contain slides and only
slides, it can tell us useful things about the properties and methods of slides
when we type stuff in the editor. John types osld. and VBA pops up all of the
things it's possible to do with slides or change about slides. Handier yet.


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


 
Reply With Quote
 
Steve Rindsberg
Guest
Posts: n/a
 
      3rd May 2007
In article <4827BCB8-2EEC-4FEE-BD5E-(E-Mail Removed)>, AnneMD wrote:
> I created a WordArt in PowerPoint's slide master but can't get it to the
> front. It's partly hidden by the images on many slides. When in Side Mster, I
> click on the WordArt, then choose "Bring to Front" but it's not working as a
> master. Any other way to do it? I can't take the time to do it manually with
> 170 slides. I'm using MS Office Small Business Edition 2003.


I won't bother explaining why this happens ... looks like you've gotten several
good replies about that. But have a look here:

Copy a picture or other shape to every slide in a presentation
http://www.pptfaq.com/FAQ00780.htm

(Oops ... I see John's supplied one already. Still, worth having a look at the
page above, if only for the link to the "How do I use this VBA stuff" tutorial)


-----------------------------------------
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
PowerPoint Macro Bring Object To Front jim_epler Microsoft Powerpoint 3 13th Jul 2010 06:21 PM
Can you bring Slide numbers to front? Image Microsoft Powerpoint 3 20th Oct 2009 08:31 AM
how to bring movie to front in powerpoint jjb Microsoft Powerpoint 2 15th Jan 2008 05:07 PM
Re: In PowerPoint I want to manually bring in each bullet on a slide. Luc Microsoft Powerpoint 0 8th Jan 2007 03:19 PM
Slide Master graphics 'in front'? Scott Microsoft Powerpoint 1 5th May 2004 12:26 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 12:19 PM.