<?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: dynamic drawing title block edit in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/dynamic-drawing-title-block-edit/m-p/9405220#M109203</link>
    <description>&lt;P&gt;Where is your feedback?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My untested Code need an update, that one should work for you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;(defun c:SelAllTitle (/ bname inc blockname en finalss ss)
(and
(or (setq bname (getstring T "Blockname(s) &amp;lt;MyTitle1&amp;gt;: "))
    (setq bname "MyTitle1")
 )
(setq ss (ssget "X" (list (cons 0 "INSERT")(cons 2 (strcat bname  ",`*U*")))))
 (setq inc 0)
 (setq finalss (ssadd))
 (while (setq en (ssname ss inc))
  (setq blockname (vla-get-effectivename (vlax-ename-&amp;gt;vla-object en)))
  (if (wcmatch (strcase blockname) (strcase bname))
   (ssadd en finalss)
  ) 
  (setq inc (1+ inc))
 ))
 (if finalss (sssetfirst nil finalss))
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your can change both&amp;nbsp;MyTitle1 with your Titleblock name or Names Title1,Title2,Title3&amp;nbsp; ... &lt;/P&gt;</description>
    <pubDate>Fri, 27 Mar 2020 18:50:28 GMT</pubDate>
    <dc:creator>cadffm</dc:creator>
    <dc:date>2020-03-27T18:50:28Z</dc:date>
    <item>
      <title>dynamic drawing title block edit</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/dynamic-drawing-title-block-edit/m-p/9403746#M109198</link>
      <description>&lt;P&gt;I have createt a template with 5 different layouts. I have a drawing title block on all of them. The title block is made with attribute.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to finde a way where I can change the information I have in the title block on all layouts. Without I have to go to block editor everytime I need to make a change.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 08:53:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/dynamic-drawing-title-block-edit/m-p/9403746#M109198</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-03-27T08:53:43Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic drawing title block edit</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/dynamic-drawing-title-block-edit/m-p/9403773#M109199</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if you create a text instead of an attribute you just need to modify the block-definition once .. and all layouts with all block-insertions show the text content.&lt;/P&gt;
&lt;P&gt;Other option could be to use fields, requesting values from the document properties&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;you use command &lt;STRONG&gt;&lt;FONT color="#333399"&gt;_DWGPROPS&lt;/FONT&gt;&lt;/STRONG&gt; to define a custom property&lt;/LI&gt;
&lt;LI&gt;you assign a field to an attribute of your title-block to display the content of the custom property&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- alfred -&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 09:09:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/dynamic-drawing-title-block-edit/m-p/9403773#M109199</guid>
      <dc:creator>Alfred.NESWADBA</dc:creator>
      <dc:date>2020-03-27T09:09:59Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic drawing title block edit</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/dynamic-drawing-title-block-edit/m-p/9403826#M109200</link>
      <description>&lt;P&gt;&amp;gt;"&lt;SPAN&gt;if you create a text instead of an attribute you just need to modify the block-definition once .. and all layouts with all block-insertions show the text content."&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Constant Attributdefinition would be better (attrib export functions works with it),&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;but for both you need a BEDIT (or REFEDIT)&amp;nbsp; and missed the question.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Fields are cool.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;@Anonymous&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Real answer to the question: Select all title block references and change the attribut value in your properties palette(CTRL+1).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hopeful you dont have dynamic title blocks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;How to do this:&lt;/P&gt;
&lt;P&gt;Use Expresstools SSX&lt;/P&gt;
&lt;P&gt;or Lisp function SSGET&lt;/P&gt;
&lt;P&gt;or command FILTER (config your Filterlist, apply it to object selection method ALL)&lt;/P&gt;
&lt;P&gt;{Filter works for LT versions too}&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 09:30:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/dynamic-drawing-title-block-edit/m-p/9403826#M109200</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2020-03-27T09:30:55Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic drawing title block edit</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/dynamic-drawing-title-block-edit/m-p/9403883#M109201</link>
      <description>&lt;P&gt;@Anonymous&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"&lt;SPAN&gt;dynamic drawing title block edit"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;If thst mean the title Block is a dynamic Block,&lt;/P&gt;
&lt;P&gt;you need a small program for this selection.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Copied from another post, edited via cell phone, untested.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;https://forums.autodesk.com/t5/visual-lisp-autolisp-and-general/ssget-dynamic-blocks/m-p/3700390#M307563


(defun c:SelAllTitle (/ bname inc blockname en finalss ss)
(and
(or (setq bname (getstring T "Blockname(s) &amp;lt;MyTitle1&amp;gt;: "))
    (setq bname "MyTitle1"))
(setq ss (ssget "X" (list (cons 0 "INSERT")(cons 2 (strcat bname 
 `*U*")))))
 (setq inc 0)
 (setq finalss (ssadd))
 (while (setq en (ssname ss inc))
  (setq blockname (vla-get-effectivename (vlax-ename-&amp;gt;vla-object en)))
  (if (wcmatch (strcase blockname) (strcase bname))
   (ssadd en finalss)
  ) 
  (setq inc (1+ inc))
 ))
 (if finalss (sssetfirst nil finalss))
) 

&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 27 Mar 2020 09:52:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/dynamic-drawing-title-block-edit/m-p/9403883#M109201</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2020-03-27T09:52:34Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic drawing title block edit</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/dynamic-drawing-title-block-edit/m-p/9405102#M109202</link>
      <description>&lt;P&gt;Using fields per &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/389680"&gt;@Alfred.NESWADBA&lt;/a&gt; post is the way to go.&lt;/P&gt;&lt;P&gt;If you use sheet set manager, there are fields that will handle most of the information directly.&amp;nbsp; You would just need to have your attributes reference them.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Another way would be to have mtext or attributes in the other blocks with a field that references the first sheet block attribute.&amp;nbsp; This would keep your data in the dwg local and might be better if you share your work. I've attached a test dwg that illustrates the linking between blocks.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 18:03:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/dynamic-drawing-title-block-edit/m-p/9405102#M109202</guid>
      <dc:creator>R_Tweed</dc:creator>
      <dc:date>2020-03-27T18:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic drawing title block edit</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/dynamic-drawing-title-block-edit/m-p/9405220#M109203</link>
      <description>&lt;P&gt;Where is your feedback?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My untested Code need an update, that one should work for you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;(defun c:SelAllTitle (/ bname inc blockname en finalss ss)
(and
(or (setq bname (getstring T "Blockname(s) &amp;lt;MyTitle1&amp;gt;: "))
    (setq bname "MyTitle1")
 )
(setq ss (ssget "X" (list (cons 0 "INSERT")(cons 2 (strcat bname  ",`*U*")))))
 (setq inc 0)
 (setq finalss (ssadd))
 (while (setq en (ssname ss inc))
  (setq blockname (vla-get-effectivename (vlax-ename-&amp;gt;vla-object en)))
  (if (wcmatch (strcase blockname) (strcase bname))
   (ssadd en finalss)
  ) 
  (setq inc (1+ inc))
 ))
 (if finalss (sssetfirst nil finalss))
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Your can change both&amp;nbsp;MyTitle1 with your Titleblock name or Names Title1,Title2,Title3&amp;nbsp; ... &lt;/P&gt;</description>
      <pubDate>Fri, 27 Mar 2020 18:50:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/dynamic-drawing-title-block-edit/m-p/9405220#M109203</guid>
      <dc:creator>cadffm</dc:creator>
      <dc:date>2020-03-27T18:50:28Z</dc:date>
    </item>
  </channel>
</rss>

