Pop up messages when hovering over a picture

Buddha532

New Member
Joined
Jul 27, 2016
Messages
2
I am trying to put together a visual training document in excel 2010. I would like to know if there is a way to mouse over the picture to have a pop up text box appear.

Thanks!
 

Excel Facts

How to find 2nd largest value in a column?
MAX finds the largest value. =LARGE(A:A,2) will find the second largest. =SMALL(A:A,3) will find the third smallest
Well you can merge all of the cells underneath the picture and insert a comment to that big merged cell. Would that work for you?
7Tf61Ty.png
 
Upvote 0
Add Hyperlink , "Place In this Document" and "ScreenTip, Text"

Let's start with the original picture, i am using that as the background. I then take a copy of the original picture and crop out parts of that picture and paste it over the original picture. I realize every time i produce a snip-it of the picture it gets a new name in the Name Box. I was hoping there was some kind of code referencing the name of the picture to create a pop up text when the user hovers over parts of the image.
 
Upvote 0
How to add "ScreenText" with code :-
Create Basic Code Module and Place the code below into it.
Code:
Sub ScreenText()
   ActiveSheet.Shapes.Range(Array(Application.Caller)).Select
   ActiveSheet.Hyperlinks.Add Anchor:=Selection.ShapeRange.Item(1), Address:="", ScreenTip:=Application.Caller
End Sub
Close Code window

Select picture on sheet for "ScreenText"
Right click the Picture, select "Assign Macro"
Macro Dialog Box Appears
From the Macro list Select "ScreenText".
Click "OK"

Now Click the Picture to Run code
Hover Curser over picture to see "ScreenText":- picture Name
 
Last edited:
Upvote 0

Forum statistics

Threads
1,226,468
Messages
6,191,199
Members
453,646
Latest member
SteenP

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top