Search:

Type: Posts; User: JohnWilson; Keyword(s):

Page 1 of 11 1 2 3 4

Search: Search took 0.01 seconds.

  1. There's no way to do this that I know of except...

    There's no way to do this that I know of except as you say pasting the content in.
  2. Replies
    1
    Views
    205

    You should contact Bill at Mr Excel! It does...

    You should contact Bill at Mr Excel!

    It does say Requires PowerPoint 2007 though.
  3. Under the hood it is different to 2003. In 2003...

    Under the hood it is different to 2003. In 2003 they really were shapes with a picture fill. From 2007 they are real pictures cropped to a shape. Might look the same but it is a little better.

    You...
  4. There isn't (the album pages have a blank master)

    There isn't (the album pages have a blank master)
  5. Open the Custom animation pane (ANIMATION TAB) ...

    Open the Custom animation pane (ANIMATION TAB)

    Double click the first entry for the video

    Choose Effect Tab and set stop playing to "After Current Slide"

    Does that work?
  6. As far as I know you could only do this with...

    As far as I know you could only do this with code.

    Sub fixtext_Album()
    Dim osld As Slide
    Dim oshp As Shape
    Dim i As Integer
    For Each osld In ActivePresentation.Slides
    For Each oshp In...
  7. What version of PowerPoint? Are you printing in...

    What version of PowerPoint?
    Are you printing in B&W?
  8. Replies
    2
    Views
    521

    The macro recorder in PowerPoint nearly always...

    The macro recorder in PowerPoint nearly always comes up with code you cannot use in a real situation. Sometimes it's a useful pointer but rarely if ever robust usable code.

    Try this code instead:...
  9. If you have a version before 2010 then ONLY wav...

    If you have a version before 2010 then ONLY wav files can be embedded. There's no way to embedd wma or midi files.

    It is possible with a little trickery to convert to mp3 and then add a wav...
  10. There's no way to do this the default size is...

    There's no way to do this the default size is hard coded. It would be possible to code a "resize me" button on the ribbon to make it a one click fix.
  11. Replies
    10
    Views
    14,900

    If PowerPoint is in the x86 folder it means that...

    If PowerPoint is in the x86 folder it means that IT is 32 bit but Windows is 64 bit. Maybe you need 64 bit Quicktime if Windows is 64 bit?
  12. Replies
    7
    Views
    1,386

    "great job you folks are doing staging the London...

    "great job you folks are doing staging the London games!"

    Wait till we pass the US in the medal table!

    We are heading for AZ in October (Scottsdale) for the Presentation Summit BTW
  13. Replies
    7
    Views
    1,386

    Amazingly Microsoft designed it that way. Their...

    Amazingly Microsoft designed it that way. Their (flawed IMO) rational was that if you went back to a slide you wouldn't want the animation (audio is an animation) again.

    To get around it place a...
  14. I would save as a .thmx file and put it in...

    I would save as a .thmx file and put it in
    C:\ProgramFiles\Microsoft Office\Document Themes 12\
  15. Do you know how to use vba code? In your Excel...

    Do you know how to use vba code?

    In your Excel file press ALT f11
    In the code window that opens INSERT > Module
    Copy and paste in the code below and hit f5.

    Note the code is for charts as...
  16. Saving as a pps will not give any security at...

    Saving as a pps will not give any security at all! You can just rename it to .ppt OR right click >> New OR just use File > Open to edit the file.

    Adding a modify password will give some security...
  17. Replies
    2
    Views
    1,050

    WORK ON A COPY! I would first goto View slide...

    WORK ON A COPY!
    I would first goto View slide master

    Make the Title Only Layout (about 6 down) look like the slide ie Make the Title placeholder narrower and fill it with blue + set the text...
  18. This is new behaviour in versions 2007 and 2010....

    This is new behaviour in versions 2007 and 2010. Not a good idea IMHO but that's how it works.
  19. Just an aside: I wonder when you said set the...

    Just an aside:
    I wonder when you said set the placholders to white you really meant "No Fill"?

    if so make this change

    If oshp.Type = msoPlaceholder Then
    oshp.Fill.Visible=msoFalse ' change...
  20. You'll need to explain a little more Do you...

    You'll need to explain a little more

    Do you mean all placeholders to have a white background? Or maybe Placeholders and textboxes.
    Theme Color = Black - what does that mean?? (or rather what do...
  21. You can do this with code: Sub fixme() Dim...

    You can do this with code:

    Sub fixme()
    Dim osld As Slide
    For Each osld In ActivePresentation.Slides
    On Error Resume Next
    If osld.Shapes.HasTitle Then _
    osld.Shapes.Title.Fill.ForeColor.RGB =...
  22. Replies
    1
    Views
    4,831

    The "Microsoft" method does definitely work so...

    The "Microsoft" method does definitely work so there's something strange going on. I can't imagine any way it would open a slide show using this procedure.

    You do have the full version of 2010 not...
  23. Interesting you blame Microsoft for what is...

    Interesting you blame Microsoft for what is basically a badly designed template. it also sounds like your "Textboxes" are actually shapes because textboxes act slightly differently.

    Anyway that's...
  24. Replies
    5
    Views
    1,905

    Just note though that adding to the master...

    Just note though that adding to the master template doesn't actually work (Why Microsoft?). It has to be an AddIn to work reliably and then you need to know how to write the XML to add a ribbon...
  25. Replies
    5
    Views
    1,905

    The macro in PPt would be: ...

    The macro in PPt would be:

    ActiveWindow.View.PasteSpecial DataType:=ppPasteText

    Thats not the problem. In PowerPoint, unlike Excel you cannot attach macros to the QAT (or anywhere else) and...
Results 1 to 25 of 264
Page 1 of 11 1 2 3 4