Autodesk ObjectARX
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
selecting block references from a single layer
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
169 Views, 3 Replies
12-12-2012 07:44 AM
Hi Everyone, I'm Tallano, new to the board. ![]()
Using acutBuildList and acedSSGet, I'm trying to make a selection of block references contained in one named layer:
struct resbuf* eb1 = acutBuildList(0, ACRX_T("INSERT"), 8, ACRX_T("MY_LAYER_NAME"), 0);
Obviouly, I'm doing something wrong, because my selection is not what I expect.
Someone can help?
Solved! Go to Solution.
Re: selecting block references from a single layer
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
12-12-2012 07:49 AM in reply to:
tallano
What did you get, and how was it different from what you expected?
--
Owen Wengerd
ManuSoft
Owen Wengerd
ManuSoft
Re: selecting block references from a single layer
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
12-12-2012 07:52 AM in reply to:
tallano
You might need to match the entity type with RTDXF0, instead of 0, at the front of your list. I think putting 0 ends the list.
Re: selecting block references from a single layer
Options
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
12-12-2012 11:51 PM in reply to:
cadproman
I got every entity selected with my first version of acutBuildList.
Using RTDXF0 instead of 0 got it working.
Thanks!

