Sonntag, September 5, 2010
Homepage   |   Suchen   |   Über AUGIde   |   Mein AUGI   |   Jetzt registrieren

Go Back   AUGI Forums > AUGI Technical (English) > General Design > AutoCAD > AutoCAD Support > AutoCAD - Wish Lists > AutoCAD Wish List (Archive) > ACAD-002 (Archived)
 Welcome, Guest. 

Login

Join Now FAQ Members List Calendar Search Today's Posts Mark Forums Read

 
 
Thread Tools Display Modes
Old 2006-02-08, 05:22 PM   #1
acadwishlist
ACAD Wish List Administration
 
Join Date: 2005-06
Posts: 1,817
acadwishlist is glowing brightlyacadwishlist is glowing brightlyacadwishlist is glowing brightlyacadwishlist is glowing brightlyacadwishlist is glowing brightlyacadwishlist is glowing brightlyacadwishlist is glowing brightlyacadwishlist is glowing brightlyacadwishlist is glowing brightlyacadwishlist is glowing brightlyacadwishlist is glowing brightly
Default Dimensions on the correct layer

Summary: An option to place all dimensions on a user defined layer, eliminating the need to change layers when dimensioning an object.

Description: Placing Dimensions on a given layer has always been on task we all dread trying to remember.
A button in the Dimension Dialog Box would allow all Dimension to be placed on a given layer.
But just like dimensions they would allow for an override.
W. Kirk Crawford
Rochester Hills, Michigan

How Used: Allow a check box for Dimensions to be on a given layer, and then key-in that layer name, or allow a pull-down from the Layers Manager.
But allow for Overrides.

Feature Affinity: Dimensions

Submitted By: Kirk Crawford on February 5, 2006
acadwishlist is offline  
Old 2006-02-21, 01:08 AM   #2
kastmiler
Member
 
Join Date: 2006-02
Posts: 25
kastmiler has a bright futurekastmiler has a bright futurekastmiler has a bright futurekastmiler has a bright futurekastmiler has a bright futurekastmiler has a bright futurekastmiler has a bright future
Default RE: Dimensions on the correct layer

Change your command macro under the "Customize User Interface" to something like this,
*^C^C-layer;set;A_dims;^C^C_dimlinear. The asterisk in front keeps the command going until you key in escape.
kastmiler is offline  
Old 2006-02-22, 01:59 PM   #3
c.prettyman
Active Member
 
Join Date: 2005-09
Posts: 81
c.prettyman is glowing brightlyc.prettyman is glowing brightlyc.prettyman is glowing brightlyc.prettyman is glowing brightlyc.prettyman is glowing brightlyc.prettyman is glowing brightlyc.prettyman is glowing brightlyc.prettyman is glowing brightlyc.prettyman is glowing brightly
Default RE: Dimensions on the correct layer

We use the tool palettes for this - although we don't have the override option (what did you want to override - the layer?) The tool palette option imports the dimension style, and child styles, as appropriate, from a source file, and puts them on the appropriate layer. Its a very powerful function, available to you now.
c.prettyman is offline  
Old 2006-03-14, 04:36 AM   #4
randy.77505
Member
 
Join Date: 2004-10
Posts: 12
randy.77505 has a bright futurerandy.77505 has a bright futurerandy.77505 has a bright futurerandy.77505 has a bright futurerandy.77505 has a bright futurerandy.77505 has a bright future
Default RE: Dimensions on the correct layer

you could possibly write a lisp code fragment To change dimensions "The morning after"
but To allow for certain dimensions To be on "alternate" layers you might have To define more Than one dimension style

(defun c:chg-dims ()
(setq dimx (ssget "x" (list (cons 0 "dimension") (cons 2 "dimension-style-name")))))
(entmod (assoc 8 <The "whatever-current-layer-name"> <To The "intended-layer-name">))
)

you could set This up To ONLY LOOK for The dimensions That do NOT have The "alternate-named-dimension-style"

ok not exactly correct, )); but a sketch of an idea
i am not sure how To filter dimension-style-names

but i assume it is possible

just an Idea

Randy
randy.77505 is offline  
Old 2006-03-22, 11:22 PM   #5
Seattlemander
Member
 
Seattlemander's Avatar
 
Join Date: 2006-03
Location: Seattle, of course!
Posts: 6
Seattlemander has a bright futureSeattlemander has a bright futureSeattlemander has a bright futureSeattlemander has a bright futureSeattlemander has a bright futureSeattlemander has a bright future
Default

Actually, I think this is a great idea. I reject the idea that "you could write a lisp routine". This is true for just about everything. The idea is to take ideas that people think are useful, and make them part of the program.
Seattlemander is offline  
Old 2006-03-22, 11:42 PM   #6
BrenBren
Wish List Manager
 
BrenBren's Avatar
 
Join Date: 2000-11
Location: 150700
Posts: 3,420
BrenBren is celestialBrenBren is celestialBrenBren is celestialBrenBren is celestialBrenBren is celestialBrenBren is celestialBrenBren is celestialBrenBren is celestialBrenBren is celestialBrenBren is celestialBrenBren is celestial
Default RE: Dimensions on the correct layer

Quote:
Originally Posted by kuempel.s
Actually, I think this is a great idea. I reject the idea that "you could write a lisp routine". This is true for just about everything. The idea is to take ideas that people think are useful, and make them part of the program.
Yes, but it is also perfectly acceptable to offer a work around.

Remember, the only way to make these wishes reality is to vote when the time comes!!!
__________________
Brenda Richardson
Wish List Manager

BrenBren is offline  
Old 2006-03-22, 11:51 PM   #7
Seattlemander
Member
 
Seattlemander's Avatar
 
Join Date: 2006-03
Location: Seattle, of course!
Posts: 6
Seattlemander has a bright futureSeattlemander has a bright futureSeattlemander has a bright futureSeattlemander has a bright futureSeattlemander has a bright futureSeattlemander has a bright future
Talking RE: Dimensions on the correct layer

Quote:
Originally Posted by BrenBren
Yes, but it is also perfectly acceptable to offer a work around.
Right, you are! And, Randy's idea is good. I just got greedy thinking of permanent enhancements. My response was meant to be much less jerky than it reads.
Seattlemander is offline  
Old 2006-03-23, 03:21 PM   #8
BrenBren
Wish List Manager
 
BrenBren's Avatar
 
Join Date: 2000-11
Location: 150700
Posts: 3,420
BrenBren is celestialBrenBren is celestialBrenBren is celestialBrenBren is celestialBrenBren is celestialBrenBren is celestialBrenBren is celestialBrenBren is celestialBrenBren is celestialBrenBren is celestialBrenBren is celestial
Default RE: Dimensions on the correct layer

Quote:
Originally Posted by kuempel.s
Right, you are! And, Randy's idea is good. I just got greedy thinking of permanent enhancements. My response was meant to be much less jerky than it reads.
Not a problem
__________________
Brenda Richardson
Wish List Manager

BrenBren is offline  
Old 2006-05-11, 06:02 AM   #9
trlindell
Member
 
Join Date: 2005-07
Posts: 29
trlindell is going the right waytrlindell is going the right waytrlindell is going the right waytrlindell is going the right waytrlindell is going the right way
Exclamation RE: Dimensions on the correct layer

Not every dimension ends up on the same designated layer. There could be a dozen layers intended for dimension objects on one building plan.
trlindell is offline  
Old 2006-05-14, 02:29 PM   #10
rkmcswain
Certified AUGI Addict
 
rkmcswain's Avatar
 
Join Date: 2004-09
Location: Houston
Posts: 6,461
rkmcswain is celestialrkmcswain is celestialrkmcswain is celestialrkmcswain is celestialrkmcswain is celestialrkmcswain is celestialrkmcswain is celestialrkmcswain is celestialrkmcswain is celestialrkmcswain is celestialrkmcswain is celestial
Default RE: Dimensions on the correct layer

Quote:
Originally Posted by Seattlemander
Actually, I think this is a great idea. I reject the idea that "you could write a lisp routine". This is true for just about everything. The idea is to take ideas that people think are useful, and make them part of the program.
This is part of the program -> Tool Palettes. No lisp programming required.
__________________
R.K. McSwain
CAD Panacea ~ Hot Tip Harry ~ Cadalyst Cadtips
rkmcswain is offline  
 


Go Back   AUGI Forums > AUGI Technical (English) > General Design > AutoCAD > AutoCAD Support > AutoCAD - Wish Lists > AutoCAD Wish List (Archive) > ACAD-002 (Archived)

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Similar Threads
Thread Thread Starter Forum Replies Last Post
SEQEND on different layer jrd.chapman AutoLISP 4 2005-11-28 05:15 PM
Finish 1[4] vs Finish 2 [5] fangelo Revit Architecture - General 6 2005-11-13 09:55 PM
Section dimensions not displaying on the correct plane Spectrefish AutoCAD 3D (2006 or below) 2 2005-04-29 07:01 PM
Layer Manager & Layer drop down are slow to open. Glenndp AutoCAD FAQ (Read only) 0 2005-03-17 06:01 PM
Trim to Layer kieren AutoLISP 3 2004-09-01 02:59 PM


All times are GMT +1. The time now is 04:53 AM.