<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: What is the autocad tool like &amp;quot;transform each&amp;quot; in Adobe Illustrator? in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10802357#M66231</link>
    <description>&lt;P&gt;You can just use the Properties palette and change the object scales there. Or you can use a LISP tool like this one (belongs rather to the Customization forum):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="lisp"&gt;;scaling to individual ref.points
;www.cadforum.cz
;
(defun C:ScaleIT ( / ss ssl i ename edata ipt)
  (princ "\nSelect objects to scale individually")
  (setq ss (ssget))
  (if ss (progn
   (command "_undo" "_beg")
   (setq ssl (- (sslength ss) 1))
   (setq ename (ssname ss ssl))
   (setq edata (entget ename))
   (setq ipt (cdr (assoc 10 edata)))
   (command "_scale" ename "" (trans ipt 0 1) pause) ; interact
   (command)
   (setq ssl (1- ssl))
   (while (&amp;gt;= ssl 0)
      (setq ename (ssname ss ssl))
      (setq edata (entget ename))
      (setq ipt (cdr (assoc 10 edata)))
      (command "_scale" ename "" (trans ipt 0 1) "")
      (command)
      (setq ssl (1- ssl))
   ) ; while
   (command "_undo" "_end")
   (princ "Done.")
  ))
  (princ)
)
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Vladimir Michl, &lt;A href="http://www.arkance-systems.cz" target="_blank"&gt;www.arkance-systems.cz&lt;/A&gt; - &lt;A href="http://www.cadforum.cz" target="_blank"&gt;www.cadforum.cz&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 05 Dec 2021 20:59:12 GMT</pubDate>
    <dc:creator>vladimir_michl</dc:creator>
    <dc:date>2021-12-05T20:59:12Z</dc:date>
    <item>
      <title>What is the autocad tool like "transform each" in Adobe Illustrator?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10802276#M66230</link>
      <description>&lt;P&gt;The normal Autocad scale and rotate, if you use them on multiple objects at the same time, treats it as one big group and uses a single base point for transforming all of them together as if they were one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I have a bunch of objects I want to rescale in their own positions, not as a group from one point.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know I watched a tutorial at some point that showed a tool in Autocad that allows you to transform the rotation or scale of multiple objects at the same time from &lt;U&gt;each&lt;/U&gt; of their own geometric centers like the "transform each" tool in Adobe Illustrator.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyone know what it is called?&lt;/P&gt;</description>
      <pubDate>Sun, 05 Dec 2021 19:14:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10802276#M66230</guid>
      <dc:creator>jetted4</dc:creator>
      <dc:date>2021-12-05T19:14:15Z</dc:date>
    </item>
    <item>
      <title>Re: What is the autocad tool like "transform each" in Adobe Illustrator?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10802357#M66231</link>
      <description>&lt;P&gt;You can just use the Properties palette and change the object scales there. Or you can use a LISP tool like this one (belongs rather to the Customization forum):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="lisp"&gt;;scaling to individual ref.points
;www.cadforum.cz
;
(defun C:ScaleIT ( / ss ssl i ename edata ipt)
  (princ "\nSelect objects to scale individually")
  (setq ss (ssget))
  (if ss (progn
   (command "_undo" "_beg")
   (setq ssl (- (sslength ss) 1))
   (setq ename (ssname ss ssl))
   (setq edata (entget ename))
   (setq ipt (cdr (assoc 10 edata)))
   (command "_scale" ename "" (trans ipt 0 1) pause) ; interact
   (command)
   (setq ssl (1- ssl))
   (while (&amp;gt;= ssl 0)
      (setq ename (ssname ss ssl))
      (setq edata (entget ename))
      (setq ipt (cdr (assoc 10 edata)))
      (command "_scale" ename "" (trans ipt 0 1) "")
      (command)
      (setq ssl (1- ssl))
   ) ; while
   (command "_undo" "_end")
   (princ "Done.")
  ))
  (princ)
)
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Vladimir Michl, &lt;A href="http://www.arkance-systems.cz" target="_blank"&gt;www.arkance-systems.cz&lt;/A&gt; - &lt;A href="http://www.cadforum.cz" target="_blank"&gt;www.cadforum.cz&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 05 Dec 2021 20:59:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10802357#M66231</guid>
      <dc:creator>vladimir_michl</dc:creator>
      <dc:date>2021-12-05T20:59:12Z</dc:date>
    </item>
    <item>
      <title>Re: What is the autocad tool like "transform each" in Adobe Illustrator?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10802699#M66232</link>
      <description>&lt;P&gt;I am not seeing anything that would allow me to scale objects in the properties panel...(printscreen below)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will have to hunt for the tutorial that I saw on Lynda.com because I thought I remembered there being a way directly within Autocad to rescale multiple objects in their respective places without needing a lsp program.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jetted4_0-1638759657453.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/997524i58401F335175A155/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jetted4_0-1638759657453.png" alt="jetted4_0-1638759657453.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Dec 2021 03:03:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10802699#M66232</guid>
      <dc:creator>jetted4</dc:creator>
      <dc:date>2021-12-06T03:03:58Z</dc:date>
    </item>
    <item>
      <title>Re: What is the autocad tool like "transform each" in Adobe Illustrator?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10802887#M66233</link>
      <description>&lt;P&gt;I will agree with Vladimir you can try this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Dec 2021 06:11:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10802887#M66233</guid>
      <dc:creator>johnpatrick1879</dc:creator>
      <dc:date>2021-12-06T06:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: What is the autocad tool like "transform each" in Adobe Illustrator?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10802924#M66234</link>
      <description>&lt;P&gt;You need to select (shift-pick or window or lasso) the objects to scale.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Vladimir Michl, &lt;A href="http://www.arkance-systems.cz" target="_blank"&gt;www.arkance-systems.cz&lt;/A&gt; - &lt;A href="http://www.cadforum.cz" target="_blank"&gt;www.cadforum.cz&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Dec 2021 06:44:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10802924#M66234</guid>
      <dc:creator>vladimir_michl</dc:creator>
      <dc:date>2021-12-06T06:44:01Z</dc:date>
    </item>
    <item>
      <title>Re: What is the autocad tool like "transform each" in Adobe Illustrator?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10803263#M66235</link>
      <description>&lt;P&gt;Even if you find that video, you will find it is only possible with certain objects of the same type or with code.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Dec 2021 10:31:37 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10803263#M66235</guid>
      <dc:creator>RobDraw</dc:creator>
      <dc:date>2021-12-06T10:31:37Z</dc:date>
    </item>
    <item>
      <title>Re: What is the autocad tool like "transform each" in Adobe Illustrator?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10803768#M66236</link>
      <description>&lt;P&gt;You have nothing selected, that's why you see nothing to do: are you very new to AutoCAD if I may ask?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="pendean_0-1638801834144.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/997715i38BF4EF8608E89E3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="pendean_0-1638801834144.png" alt="pendean_0-1638801834144.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Dec 2021 14:39:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10803768#M66236</guid>
      <dc:creator>pendean</dc:creator>
      <dc:date>2021-12-06T14:39:05Z</dc:date>
    </item>
    <item>
      <title>Re: What is the autocad tool like "transform each" in Adobe Illustrator?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10804942#M66237</link>
      <description>&lt;P&gt;No I am not new to autocad...&amp;nbsp;I &lt;EM&gt;had&lt;/EM&gt; had the rectangles all selected when I was checking the properties palette but didn't notice that I deselected them before taking the screen shot.&lt;/P&gt;&lt;P&gt;Here is the correct screenshot.&amp;nbsp; I have the properties palette open at the right but I still do not see anything that would enable me to rescale all of the objects simultaneously in their own place.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In Adobe Illustrator it is easy - just use Ctrl-Shift-Alt-D ("Transform Each") and it doesn't matter what sorts of objects they are you could have a grouped complex geometry selected and a circle selected at the same time; it rescales or rotates the objects from their own respective geometric centers (or their respective Top/Middle or Left/Middle or etc...depending on what option you choose).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jetted4_0-1638832757905.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/997967i6F1C6EB27BEA4D7E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jetted4_0-1638832757905.png" alt="jetted4_0-1638832757905.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's one with a circle thrown in, which reduces the options in the properties palette further, but would still be a piece of cake to transform in place if using Illustrator...&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jetted4_1-1638833209456.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/997969i92A8FB485A0346CF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jetted4_1-1638833209456.png" alt="jetted4_1-1638833209456.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Dec 2021 23:27:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10804942#M66237</guid>
      <dc:creator>jetted4</dc:creator>
      <dc:date>2021-12-06T23:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: What is the autocad tool like "transform each" in Adobe Illustrator?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10804955#M66238</link>
      <description>&lt;P&gt;"The cake is a lie."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not every object in AutoCAD has a scale property that can be adjusted. In fact very few can be scaled in this fashion. Blocks, for one can be. Try selecting different types of objects and take a look at the properties.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 06 Dec 2021 23:33:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10804955#M66238</guid>
      <dc:creator>RobDraw</dc:creator>
      <dc:date>2021-12-06T23:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: What is the autocad tool like "transform each" in Adobe Illustrator?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10805028#M66239</link>
      <description>&lt;P&gt;Just to show a quick example in Adobe Illustrator.&amp;nbsp; I drew some random shapes and also a group (the red and green items are the group)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(1) Here are the shapes and group:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jetted4_1-1638836436013.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/997987i19F043885615E771/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jetted4_1-1638836436013.png" alt="jetted4_1-1638836436013.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(2) Now with the "Transform Each" panel open (but preview turned off so you still see the shapes in their original sizes). My option at the right of the panel is to rescale from the geometric center.&amp;nbsp; I have my horizontal and vertical scale both set to 50%:&lt;/P&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jetted4_4-1638836592140.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/997990i02EC4F778A454E56/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jetted4_4-1638836592140.png" alt="jetted4_4-1638836592140.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(3) I click Enter and this is the result.&amp;nbsp; Each has been rescaled in place; the group of objects was rescaled as if it were a single item so they retain their respective positions within the group and all of the ungrouped individual items were rescaled in place.&amp;nbsp; Super easy:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jetted4_5-1638836694768.png" style="width: 400px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/997991i9BBD97E70523ECDA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jetted4_5-1638836694768.png" alt="jetted4_5-1638836694768.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Autocad is super powerful in so many ways, it puzzles me that this same functionality is not available, especially given how helpful it is to be able to rescale multiple items in place.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I will try the lsp program Vladimir provided.&amp;nbsp; Thanks&amp;nbsp; &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Dec 2021 00:28:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10805028#M66239</guid>
      <dc:creator>jetted4</dc:creator>
      <dc:date>2021-12-07T00:28:16Z</dc:date>
    </item>
    <item>
      <title>Re: What is the autocad tool like "transform each" in Adobe Illustrator?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10805036#M66240</link>
      <description>&lt;P&gt;Yeah, the problem is expecting completely different programs to work the same.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;</description>
      <pubDate>Tue, 07 Dec 2021 00:33:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10805036#M66240</guid>
      <dc:creator>RobDraw</dc:creator>
      <dc:date>2021-12-07T00:33:47Z</dc:date>
    </item>
    <item>
      <title>Re: What is the autocad tool like "transform each" in Adobe Illustrator?</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10806208#M66241</link>
      <description>&lt;P&gt;There is an enhanced version of that tool - ScaleBB - which works more interactively. It performs both scaling and rotation, and you can select the reference frame for the individual scaling/rotation (ref.point, center or lower-left point).&lt;/P&gt;
&lt;P&gt;See the tip &lt;A href="https://www.cadforum.cz/en/scalebb-scale-multiple-objects-to-their-ref-points-or-boxes-tip13158" target="_blank" rel="noopener"&gt;https://www.cadforum.cz/en/scalebb-scale-multiple-objects-to-their-ref-points-or-boxes-tip13158&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;and sample video:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;div class="video-embed-center video-embed"&gt;&lt;iframe class="embedly-embed" src="https://cdn.embedly.com/widgets/media.html?src=https%3A%2F%2Fwww.youtube.com%2Fembed%2FNl-pcNL48zQ%3Ffeature%3Doembed&amp;amp;display_name=YouTube&amp;amp;url=https%3A%2F%2Fwww.youtube.com%2Fwatch%3Fv%3DNl-pcNL48zQ&amp;amp;image=https%3A%2F%2Fi.ytimg.com%2Fvi%2FNl-pcNL48zQ%2Fhqdefault.jpg&amp;amp;type=text%2Fhtml&amp;amp;schema=youtube" width="200" height="113" scrolling="no" title="ScaleBB - hromadná změna měřítka či rotace objektů AutoCADu kolem ref.bodů" frameborder="0" allow="autoplay; fullscreen; encrypted-media; picture-in-picture;" allowfullscreen="true"&gt;&lt;/iframe&gt;&lt;/div&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Vladimir Michl, &lt;A href="http://www.arkance-systems.cz" target="_blank" rel="noopener"&gt;www.arkance-systems.cz&lt;/A&gt; - &lt;A href="http://www.cadforum.cz" target="_blank" rel="noopener"&gt;www.cadforum.cz&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Dec 2021 12:51:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/what-is-the-autocad-tool-like-quot-transform-each-quot-in-adobe/m-p/10806208#M66241</guid>
      <dc:creator>vladimir_michl</dc:creator>
      <dc:date>2021-12-08T12:51:04Z</dc:date>
    </item>
  </channel>
</rss>

