cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X

IsoDraw Macro & ctrl+K function?

JB99
1-Newbie

IsoDraw Macro & ctrl+K function?

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

2 REPLIES 2
thendricks
3-Visitor
(To:JB99)

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

Top Tags