VBA to Change Object Action Settings

  • Thread starter Thread starter Andibevan
  • Start date Start date
A

Andibevan

Hi,

Does anyone know what the vba would be to change the action settings of the
active object such that when it is clicked from within a presentation it
opens the item? (Other setting is edit)

Ta

Andi
 
Does anyone know what the vba would be to change the action settings of the
active object such that when it is clicked from within a presentation it
opens the item? (Other setting is edit)

My does PPT2003 ever twist its knickers when you record a macro and set the
Action to OPEN. Wow.

But you want something like this:

With ActiveWindow.Selection.ShapeRange.ActionSettings(ppMouseClick)
.ActionVerb = "OPEN" ' or "EDIT" or whatever
End With
 
Thanks Steve - I did manage to work it out myself with a bit of guessing.

You are completey right though - I personally have never seen an office
application record a macro that then has an error in it !! (no doubt there
are hundreds of places that this occurs that I have missed)

Ta

Andy


Steve Rindsberg said:
Does anyone know what the vba would be to change the action settings of the
active object such that when it is clicked from within a presentation it
opens the item? (Other setting is edit)

My does PPT2003 ever twist its knickers when you record a macro and set the
Action to OPEN. Wow.

But you want something like this:

With ActiveWindow.Selection.ShapeRange.ActionSettings(ppMouseClick)
.ActionVerb = "OPEN" ' or "EDIT" or whatever
End With
 

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

Back
Top