In article <(E-Mail Removed)>, Bill Dilworth wrote:
> Getting stuff to go away is easy with action settings.
>
> Sub GoAway(oShp As Shape)
> oShp.Visible = msoFalse
> End Sub
>
> Bringing it back is a bit more complicated, but still not difficult.
If you know where it is (ie, where to click a second time), it's as easy as
this:
Sub GoAwayAndComeBack(oShp As Shape)
oShp.Visible = Not oShp.Visible
End Sub
Then there's:
Sub GoAwayAndSTAYAway(oShp As Shape)
oShp.Delete
End Sub
or
Sub HowCanWeMissYouIfYouWontGoAway(oShp As Shape)
oShp.Visible = False
Sleep(5000)
oShp.Visible = True
End Sub
Life just doesn't get any geekier than this.
-----------------------------------------
Steve Rindsberg, PPT MVP
PPT FAQ:
www.pptfaq.com
PPTools:
www.pptools.com
================================================