Hi Roshan,
Dean was telling you about Word 2003, because you never said you have
Word 2007. The difference is important.
You're correct that the 3D depth menu in Word 2007 doesn't have a
Custom entry at the bottom. I have no idea why it was taken off.
To get back the capability, you can install the following macro (see
http://www.gmayor.com/installing_macro.htm if needed) and put a button
for it onto the Quick Access Toolbar.
Sub CustomDepth()
Dim strStart As String, strRslt As String
If Selection.ShapeRange.Count > 0 Then
strStart = Selection.ShapeRange(1).ThreeD.Depth
strRslt = InputBox("Custom depth:", _
"Custom Depth", strStart)
If StrPtr(strRslt) = 0 Then 'canceled
Exit Sub
End If
Selection.ShapeRange(1).ThreeD.Depth = Val(strRslt)
Else
MsgBox "First select a shape object."
End If
End Sub
--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.