Jump to content

Screen Plane objects


Recommended Posts

Anyone know how to convert all objects that have been drawn in screen plane to layer Plane.

Opened an old file and half appears on screen plane so when you switch to a left iso view they still stay on the screen even if you toggle the unified view button on and off.

Only way is to turn all those classes off.

Thanks

Link to comment
  • Vectorworks, Inc Employee

You can disable them by unchecking "Display Screen Objects" in the Unified View settings if you simply want to not see them.

To select them all at once in order to change them to Layer plane, you can use Tools > Custom Selection, then Plane-IS-Screen Plane and any other variables you want to include.

Link to comment

Thanks for this the first scrip in your thread worked a treat, the all went onto layer planes.

Thanks

PROCEDURE Objs2LayerPlane; { © Petri Sakkinen 2010 }

{Modifed 2014, Ray Mullin, Pat Stanford to work with VW2015}

Procedure DoIt (H : Handle);

Begin

SetObjectVariableBoolean(H, 1160, FALSE);

End;

Function ResetDef(H :Handle) :Boolean;

Begin

ResetObject(H);

End;

BEGIN

FOREACHOBJECT(DoIt, INSYMBOL & ALL);

ForEachObjectinList(ResetDef, 0, 0, FSymDef);

Sysbeep;

END;

RUN(Objs2LayerPlane);

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...