Make sure that macro security isn't disabling the macros
Assuming this is OK maybe you could post up the version of PowerPoint and
the code in the macros

Signature
Amazing PPT Hints, Tips and Tutorials
http://www.PPTAlchemy.co.uk
http://www.technologytrish.co.uk
email john AT technologytrish.co.uk
> I have made a presentation of only one slide, when pressing different command
> buttons shows different pictures -using some macros. After creating it, the
[quoted text clipped - 6 lines]
>
> Any help?
vt - 03 Mar 2008 13:56 GMT
MS Office 2003
Here is the macro for one of the buttons:
-----
Private Sub CommandButton1_Click()
If OptionButton1 = True Then
Image1.Visible = True
Image2.Visible = False
Image3.Visible = False
Image4.Visible = False
Image5.Visible = False
Image6.Visible = False
Image7.Visible = False
Image8.Visible = False
Image9.Visible = False
Image10.Visible = False
Image11.Visible = False
Image12.Visible = False
Else
Image1.Visible = False
Image2.Visible = False
Image3.Visible = False
Image4.Visible = False
Image5.Visible = False
Image6.Visible = False
Image7.Visible = True
Image8.Visible = False
Image9.Visible = False
Image10.Visible = False
Image11.Visible = False
Image12.Visible = False
End If
End Sub
-----
it is just to make invisible all other pictures and make the one wanted
visible. The "if-then-else" are just to present different pictures according
to a selection of an option button.
thanks
> Make sure that macro security isn't disabling the macros
>
[quoted text clipped - 11 lines]
> >
> > Any help?
John Wilson - 03 Mar 2008 14:09 GMT
Setting shapes visible true or false like this often conflicts with normal
animation. Are there animations on the slide?
You probably don't need any code at all to do what you need just triggered
entrance and exit animations this would avoid problems with using the viewer
or security settings.
http://www.pptalchemy.co.uk/powerpoint_hints_and_tips_tutorials.html#triggers

Signature
Amazing PPT Hints, Tips and Tutorials
http://www.PPTAlchemy.co.uk
http://www.technologytrish.co.uk
email john AT technologytrish.co.uk
> MS Office 2003
> Here is the macro for one of the buttons:
[quoted text clipped - 50 lines]
> > >
> > > Any help?
vt - 03 Mar 2008 14:19 GMT
Thanks. Yes, I know, but I want to be able to select which pictures to show
during the presentation. And not to have the animations decided (and thus
animated as usual with entrances and exits) before.
> Setting shapes visible true or false like this often conflicts with normal
> animation. Are there animations on the slide?
[quoted text clipped - 58 lines]
> > > >
> > > > Any help?
John Wilson - 03 Mar 2008 14:28 GMT
And that's exactly what triggers do!

Signature
Amazing PPT Hints, Tips and Tutorials
http://www.PPTAlchemy.co.uk
http://www.technologytrish.co.uk
email john AT technologytrish.co.uk
> Thanks. Yes, I know, but I want to be able to select which pictures to show
> during the presentation. And not to have the animations decided (and thus
[quoted text clipped - 62 lines]
> > > > >
> > > > > Any help?
John Wilson - 03 Mar 2008 14:39 GMT
Quick demo uploaded!
www.pptalchemy.co.uk/demo.zip

Signature
Amazing PPT Hints, Tips and Tutorials
http://www.PPTAlchemy.co.uk
http://www.technologytrish.co.uk
email john AT technologytrish.co.uk
> And that's exactly what triggers do!
>
[quoted text clipped - 64 lines]
> > > > > >
> > > > > > Any help?