Jump to content

How do I select and delete 2d items only


Recommended Posts

There is in 2010/2011, if they are stacked under the 3d objects my method should still work ( only objects completely inside the selection marquee are selected) alternately select all objects both 2d and 3d then deselect the 3d objects by drawing the selection marquee across the 3d objects while depressing the option key (all objects that touch the marquee are (de)selected.

Or go to an isometric view ( only 3d objects should be visible) select all, return to top/plan view and invert the selection by drawing a selection marquee over everything while depressing the shift key......

Just to clarify this method using the selection marquee:

Selection marquee on its own: only objects completely inside are selected.

Selection marquee with option depressed: all objects the marquee touches or are inside are selected

Seletion marquee with shift depressed: all unselected objects inside the marquee are added to the previously selected selection, all previously selected objects inside the marquee are removed from the selection.

Selection marquee with shift and option depressed....you get the idea.....too much to type on an iphone :grin:

Edited by Vincent C
Link to comment

You could try it with this script... Not tested so use it on your own risk (try it first on a copy of the drawing).

It will delete the 2D objects on the active layer.

PROCEDURE Delete2D;

FUNCTION Check2D(h : HANDLE) : BOOLEAN;
BEGIN
	IF GetObjectVariableBoolean(h,651) THEN DelObject(h);
END;

BEGIN
ForEachObjectInList(Check2D,0,1,FInLayer(ActLayer));
END;
RUN(Delete2D);

EDIT: nevermind, better use the above method, i think that's safer ;) .

Edited by maarten.
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...