Link to home
Start Free TrialLog in
Avatar of afct
afct

asked on

Unable to select an image to delete it.

Using Word 2007, I have inserted an image into a table cell and selected Text Wrapping, Behind Text.  I am now unable to select the image to edit or delete is. Does anyone know how to select the image? If I insert the image into any other part of the document there is no problem it is just within the table the issue occurs.
Avatar of lazydaisy216
lazydaisy216
Flag of United States of America image

Are you sure you selected "Behind Text?" Is there any way you can attach a screen shot?
Hi afct,

Try to right click on the image you want to delete and select "cut" and see what happens.
Avatar of afct
afct

ASKER

The image is slightly grayed and yes I selected "Behind Text" actually it is another persons issue.

I have recreated the issue in the attached document.

Also here is a screen shot...  http://i300.photobucket.com/albums/nn3/whatever60/screenshot.gif


Avatar of afct

ASKER

Sorry attachment didn't work.  Hopefully this time...
WHATEVER.zip
Avatar of irudyk
You could try moving the table so that it not in front of the images, but that could be cumbersome.  You could try running a macro to bring all the images in front of the text and then run another macro to put the images back behind the text (i.e. once you are done editing the images).  See sample code below:
Sub BringImagesToFront
ActiveDocument.Shapes.SelectAll
Selection.ShapeRange.ZOrder msoBringInFrontOfText
End Sub
 
Sub SendImagesToBack
ActiveDocument.Shapes.SelectAll
Selection.ShapeRange.ZOrder msoSendBehindText
End Sub

Open in new window

Avatar of afct

ASKER

Finally found the tool I was looking for
In Word on the Home tab, in the Editing group, click Select.



ASKER CERTIFIED SOLUTION
Avatar of afct
afct

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial