- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello, I have a great idea for a lisp. I hope someone can help me so that many others can use it as well. I am very new to lisp routines, so any help would be great!
I want to start a lisp that uses the ssget "_x" function to choose layers so that the properties can be altered. In this example we can use different text layers and change the height of the all text using the properties pallet. The goal is to have the name of the layer(any name that the user presets) on the lisp and have the object selected so they can use the properties palette to modify the text height. The same can be done with object, but in this (object) case it will be by x y z scaling not text height.
I have started the lisp and it looks like
(defun C:SelectLay ()
(setq sel1 (ssget "_X" '(8 . "Layer1Text")(8 . "Layer2Text")(8 . "Layer3Text"))
(princ)
I have started but have little experience on how to finish (or continue) the lisp so that the objects are picked and highlighted. That way the user can modify the object in the properties palette.
Can anyone help identify how I can achieve this? or can someone guide me to useful links so I can further my understanding for what I may be doing wrong? Am I missing something?
So far the lisp routine gives me no results, I feel like maybe this is not a very good start but any help would be appreciated!
Solved! Go to Solution.