Do not assign the macro directly to the Shape. Instead, assign a hyperlink
to the Shape to take you to a remote location within the worksheet, say Z100.
Then create a worksheet event macro to call the desired macro whenever z100
is Selected.
The advantage to using the hyperlink is that you can assign a tooltip to the
hyperlink that will appear by mouse_over. Here is an example:
Say the macro you want to run is named dural. In worksheet code enter:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
Set t = Target
Set r = Range("Z100")
If Intersect(t, r) Is Nothing Then Exit Sub
Call dural
End Sub
--
Gary''s Student - gsnu2007g
"Francis Hookham" wrote:
> Using Basic Shapes as buttons running macros, is it possible for a
> descriptive 'tip' to be programmed in which will appear when the mouse
> hovers over, as is the case with toolbar buttons?
>
> Francis Hookham
>
>
>
|