I need to change the depth of 3D objects in word.
only few options of 0pt,36pt,144pt..... are given.
can i get the custom depth
I only have 0pt,36pt,72pt,144pt,288pt,Infinity
I don't have the custom option .
I could not find the customize, Rearrange Commands, check toolbar, select
3-D settings
can u tell me abt the steps in moer detail
I could find the customize option but it is for the quick access toolbar
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 FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.