paul1966 Posted December 22, 2009 Posted December 22, 2009 is there an easy way to select all lines on a layer and change the ltscale of them all, at the moment i select each line individually which is a bit laborious. Quote
LEsq Posted December 22, 2009 Posted December 22, 2009 a super easy and mickey mouse one can be the below and to dust my miserable lisp skills left now... (defun C:CHLTS(/ ss) (if (setq ss (ssget '((0 . "LINE") (8 . "YOUR_LAYER_NAME_HERE")))) (command "_.CHPROP" ss "" "_ltScale" 4.0 ""))) ;; change 4.0 to any scale HTH Quote
chulse Posted December 22, 2009 Posted December 22, 2009 Use QSELECT to get all the lines on a given layer, then change the LTSCALE in Properties... Quote
rkent Posted December 22, 2009 Posted December 22, 2009 layiso, select all, change in properties Quote
paul1966 Posted December 22, 2009 Author Posted December 22, 2009 Use QSELECT to get all the lines on a given layer, then change the LTSCALE in Properties... when using qselect how do you just select the one layer, in the comand window it just says apply to whole drawing? Quote
lpseifert Posted December 22, 2009 Posted December 22, 2009 it's cat skinning time again... Try the Express Tools' Getsel command' then select by Previous, change Ltscale in Properties. or use the Select command and use Getsel transparently ('Getsel) Quote
alanjt Posted December 22, 2009 Posted December 22, 2009 it's cat skinning time again... LoL http://www.cadtutor.net/forum/showthread.php?t=41988 Quote
Recommended Posts
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.