Jump to content

change ltscale of all items on layer?


Recommended Posts

Posted

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.

Posted

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

Posted

Use QSELECT to get all the lines on a given layer, then change the LTSCALE in Properties...

Posted
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?

Posted

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)

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
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
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...