The community will undergo maintenance on October 16th at 10:00 PM PDT and will be unavailable for up to one hour.
I am trying to create a macro that does the same thing as the ctrl+k keystroke. I want to put this in another macro as one of the steps it completes. I have written this:
Macro Preview_on
#Defines variables.
#Changes the PREVIEW mode to "ON" Added 18OCT12
MESSAGE "Is PREVIEW on? -> " + app.window.preview
IF (app.window.preview <> 1) THEN
app.window.preview = 1
MESSAGE "Now PREVIEW is on"
END IF
End Macro
But this will not change the view of the object. I would think this is something simple that I am just overlooking. Any and all help will be greatly appreciated.
Keith Howard
Try this.
Macro Preview_on
#Changes the PREVIEW mode to "ON"
MESSAGE "Is PREVIEW on? -> " + activedoc.window.preview
IF (activedoc.window.preview <> 1) THEN
activedoc.window.preview = 1
MESSAGE "Now PREVIEW is on"
END IF
End Macro
Thanks Trevor that did the trick!
Keith