Skip to main content
1-Visitor
October 18, 2012
Question

IsoDraw Macro & ctrl+K function?

  • October 18, 2012
  • 1 reply
  • 1547 views

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

1 reply

12-Amethyst
October 18, 2012

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

JB991-VisitorAuthor
1-Visitor
October 18, 2012

Thanks Trevor that did the trick!

Keith