Create Layer Category
Create Layer Category
(OP)
Is there a program out there to create Layer categories in whole without doing one by one?
For example:
1-15 Solid Geometry
16-20 Linked Objects
21-40 Sketches
41-60 Curves
61-80 Datums
81-100 Sheets etc....
Thanks
For example:
1-15 Solid Geometry
16-20 Linked Objects
21-40 Sketches
41-60 Curves
61-80 Datums
81-100 Sheets etc....
Thanks





RE: Create Layer Category
--
Bill
RE: Create Layer Category
RE: Create Layer Category
Where can I get a grip for this?
RE: Create Layer Category
Tim Flater
Senior Designer
Enkei America, Inc.
www.enkei.com
RE: Create Layer Category
you can use the following keyboard shortcuts.
ctrl+shift+r Record macro
ctrl+shift+p Play macro
Michael
RE: Create Layer Category
What is a program like this worth to you and your company?
"Wildfires are dangerous, hard to control, and economically catastrophic."
"Fixed in the next release" should replace "Product First" as the PTC slogan.
Ben Loosli
CAD/CAM System Analyst
Ingersoll-Rand
RE: Create Layer Category
As an added thought or something to consider... Is it intended for the 'model' and 'drawing' layering categories to be the same? The company I work for have seperate layering strategies and standards for each. Do you want the ability to add or modify the layers on the fly, or simply a 'standard' layering convention to use for a particular customer?
Might I suggest supplying a complete list of layering categories (along with their respective layers) for both drawings and models, and perhaps the grip god will induce a bored code slinger with the inspiration to help you out. A list of the platforms used by your company would also be helpful (unix, windoze, etc.) since they have to be compiled on the machine platform they will be run on. =)
SS
RE: Create Layer Category
CODE
$$ PROGRAM PURPOSE: CREATE DEFAULT LAYER CATEGORIES
$$ DESCRIPTION
$$ 9-07-2005
$$ SUBROUTINES USED: NONE
$$CAT/'name'[,layer list][,CAT,'cat list'][,DESCR,'description'][,IFERR,label:]
CAT/'SOLID_GEOMETRY',1..15
CAT/'LINKED_OBJECTS',16..20
CAT/'SKETCHES',21..40
CAT/'CURVES',41..60
CAT/'DATUMS',61..80
CAT/'SHEETS',81..100
HALT
RE: Create Layer Category