<?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: Change attribute values to default values in AutoCAD Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9010844#M128609</link>
    <description>&lt;P&gt;@Anonymous&amp;nbsp; hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a lisp command called RESETAGS that will do exactly what you want.&lt;/P&gt;&lt;P&gt;wrap the following code lines in a lisp file called it resetags.lsp.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;first you'll be prompt to select attributes you want to be reset (update) directly taken from the default attribute value of the block definition. than you''ll be prompt to select all block references to be reset.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;works with dynamic blocks too&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;enjoy&lt;/P&gt;&lt;P&gt;Moshe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;(vl-load-com); load activex support

(defun C:RESETAGS (/ select_attributes attdef-&amp;gt;list ; local functions
		     blocks ss tags^ AcDbBlkRef attdef^ attributes^ attrib tag0 tag1 item)

 ; return list of attributes name 
 (defun select_attributes (/ pick elist tag lst)
  (while (setq pick (nentsel "\nSelect attribute: "))
   (setq elist (entget (car pick)))

   (cond 
    ((/= (cdr (assoc '0 elist)) "ATTRIB")
     (vlr-beep-reaction)
     (prompt "\nEntity selected is not an attributes.")
    ); case
    ( t
     (prompt (strcat "\ntag: " (setq tag (cdr (assoc '2 elist)))))
     (setq lst (cons tag lst))
    ); case
   ); cond
  ); while
  
  lst ; return
 ); select_attributes
  
  
 ; return a list of block definition attributes data
 (defun attdef-&amp;gt;list (/ bname AcDbBlkTblRec lst)
  (setq bname (vla-get-effectiveName AcDbBlkRef))
  (setq AcDbBlkTblRec (vla-item blocks bname))

  (vlax-for AcDbEntity AcDbBlkTblRec
   (if (eq (vla-get-objectName AcDbEntity) "AcDbAttributeDefinition")
    (setq lst (cons (cons (vla-get-tagString AcDbEntity) (vla-get-textString AcDbEntity)) lst))
   )
   (vlax-release-object AcDbEntity) 
  ); vlax-for
   
  (vlax-release-object AcDbBlkTblRec)
   
  lst ; return
 ); attdef-&amp;gt;list

  
 ; here start C:RESETAGS
 (setq blocks (vla-get-blocks (vla-get-activedocument (vlax-get-acad-object))))
  
 (if (and
       (setq tags^ (select_attributes))
       (setq ss (ssget (list '(0 . "insert") '(66 . 1))))
     )  
  (foreach ename (vl-remove-if 'listp (mapcar 'cadr (ssnamex ss)))
   (setq AcDbBlkRef (vlax-ename-&amp;gt;vla-object ename))
   (setq attdef^ (attdef-&amp;gt;list))
   (setq attributes^ (vlax-invoke AcDbBlkRef 'GetAttributes))

   (foreach attrib attributes^
    (setq tag0 (strcase (vla-get-tagString attrib)))
      
    (foreach tag1 tags^      
     (if (and
	   (eq tag0 tag1)
           (setq item (assoc tag0 attdef^))
	 )
       (vla-put-textString attrib (cdr item))
     ); if
    ); foreach
   ); foreach

   (foreach attrib attributes^
    (vlax-release-object attrib)
   )
     
   (vlax-release-object AcDbBlkRef)
  ); foreach
 ); if

 (vlax-release-object blocks)
   
 (princ)
); C:RESETAGS

&lt;/PRE&gt;</description>
    <pubDate>Fri, 06 Sep 2019 16:19:21 GMT</pubDate>
    <dc:creator>Moshe-A</dc:creator>
    <dc:date>2019-09-06T16:19:21Z</dc:date>
    <item>
      <title>Change attribute values to default values</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9010301#M128604</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have several instances of a block placed on my drawings, and they all have attributes with values already set up. I have now changed the default value for two of those attributes to be a dynamic field. Is there a way to change those two attributes values back to the new default value for all instances of the block?&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alessandro&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 12:35:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9010301#M128604</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-06T12:35:06Z</dc:date>
    </item>
    <item>
      <title>Re: Change attribute values to default values</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9010419#M128605</link>
      <description>&lt;P&gt;Use attsync command.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 13:24:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9010419#M128605</guid>
      <dc:creator>Richard.Vivanco</dc:creator>
      <dc:date>2019-09-06T13:24:16Z</dc:date>
    </item>
    <item>
      <title>Re: Change attribute values to default values</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9010482#M128606</link>
      <description>&lt;P&gt;No it doesn't work.&lt;/P&gt;&lt;P&gt;I think the problem is that I am trying to convert attribute values to attribute fields. Those attributes were entered manually but now I am trying to change them to show automatically the coordinates of the object. I can't do that by changing all the current values, but I can do that by changing the default values of the attributes, that's why the question. But for some reason I can't make it work. Hope makes sense.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Alessandro&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 13:45:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9010482#M128606</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-06T13:45:58Z</dc:date>
    </item>
    <item>
      <title>Re: Change attribute values to default values</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9010794#M128607</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have you tried the Global attribute editor command "GATTE". By using this you would be able to change value of the attribute in whole of the drawing.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 15:58:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9010794#M128607</guid>
      <dc:creator>vinodkl</dc:creator>
      <dc:date>2019-09-06T15:58:32Z</dc:date>
    </item>
    <item>
      <title>Re: Change attribute values to default values</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9010802#M128608</link>
      <description>&lt;P&gt;As far as I know with GATTE you can only set a text value, not a field.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 16:01:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9010802#M128608</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-06T16:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: Change attribute values to default values</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9010844#M128609</link>
      <description>&lt;P&gt;@Anonymous&amp;nbsp; hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is a lisp command called RESETAGS that will do exactly what you want.&lt;/P&gt;&lt;P&gt;wrap the following code lines in a lisp file called it resetags.lsp.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;first you'll be prompt to select attributes you want to be reset (update) directly taken from the default attribute value of the block definition. than you''ll be prompt to select all block references to be reset.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;works with dynamic blocks too&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;enjoy&lt;/P&gt;&lt;P&gt;Moshe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;(vl-load-com); load activex support

(defun C:RESETAGS (/ select_attributes attdef-&amp;gt;list ; local functions
		     blocks ss tags^ AcDbBlkRef attdef^ attributes^ attrib tag0 tag1 item)

 ; return list of attributes name 
 (defun select_attributes (/ pick elist tag lst)
  (while (setq pick (nentsel "\nSelect attribute: "))
   (setq elist (entget (car pick)))

   (cond 
    ((/= (cdr (assoc '0 elist)) "ATTRIB")
     (vlr-beep-reaction)
     (prompt "\nEntity selected is not an attributes.")
    ); case
    ( t
     (prompt (strcat "\ntag: " (setq tag (cdr (assoc '2 elist)))))
     (setq lst (cons tag lst))
    ); case
   ); cond
  ); while
  
  lst ; return
 ); select_attributes
  
  
 ; return a list of block definition attributes data
 (defun attdef-&amp;gt;list (/ bname AcDbBlkTblRec lst)
  (setq bname (vla-get-effectiveName AcDbBlkRef))
  (setq AcDbBlkTblRec (vla-item blocks bname))

  (vlax-for AcDbEntity AcDbBlkTblRec
   (if (eq (vla-get-objectName AcDbEntity) "AcDbAttributeDefinition")
    (setq lst (cons (cons (vla-get-tagString AcDbEntity) (vla-get-textString AcDbEntity)) lst))
   )
   (vlax-release-object AcDbEntity) 
  ); vlax-for
   
  (vlax-release-object AcDbBlkTblRec)
   
  lst ; return
 ); attdef-&amp;gt;list

  
 ; here start C:RESETAGS
 (setq blocks (vla-get-blocks (vla-get-activedocument (vlax-get-acad-object))))
  
 (if (and
       (setq tags^ (select_attributes))
       (setq ss (ssget (list '(0 . "insert") '(66 . 1))))
     )  
  (foreach ename (vl-remove-if 'listp (mapcar 'cadr (ssnamex ss)))
   (setq AcDbBlkRef (vlax-ename-&amp;gt;vla-object ename))
   (setq attdef^ (attdef-&amp;gt;list))
   (setq attributes^ (vlax-invoke AcDbBlkRef 'GetAttributes))

   (foreach attrib attributes^
    (setq tag0 (strcase (vla-get-tagString attrib)))
      
    (foreach tag1 tags^      
     (if (and
	   (eq tag0 tag1)
           (setq item (assoc tag0 attdef^))
	 )
       (vla-put-textString attrib (cdr item))
     ); if
    ); foreach
   ); foreach

   (foreach attrib attributes^
    (vlax-release-object attrib)
   )
     
   (vlax-release-object AcDbBlkRef)
  ); foreach
 ); if

 (vlax-release-object blocks)
   
 (princ)
); C:RESETAGS

&lt;/PRE&gt;</description>
      <pubDate>Fri, 06 Sep 2019 16:19:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9010844#M128609</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2019-09-06T16:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: Change attribute values to default values</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9010854#M128610</link>
      <description>&lt;P&gt;Oops. I assumed that you were about to replace all the blocks value and not with field as per the question you asked.&lt;/P&gt;&lt;P&gt;So for this my suggestion would be to rename the tag of the attribute to something different and then in the default you can update the field and then save the block and run the attsync command. now all the block will be replaced with the default value.&lt;/P&gt;&lt;P&gt;Again open the block in block editor and then change the value of the attribute tag as it was earlier and close and the block and again run the attsync command.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 16:19:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9010854#M128610</guid>
      <dc:creator>vinodkl</dc:creator>
      <dc:date>2019-09-06T16:19:52Z</dc:date>
    </item>
    <item>
      <title>Re: Change attribute values to default values</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9010902#M128611</link>
      <description>&lt;P&gt;Thank you Moshe-A, unfortunately this is only partially working. For some reason it is copying the coordinates of the first object (the one on which I set the default attribute's value to be the coordinate field) to all other objects, whereas obviously I would like each object to have its own coordinates.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 16:32:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9010902#M128611</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-06T16:32:35Z</dc:date>
    </item>
    <item>
      <title>Re: Change attribute values to default values</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9011016#M128612</link>
      <description>&lt;P&gt;I am wondering if it is possible to set a "block's" field changing dynamically with the block's instances, instead of an object's field. Probably that is the problem.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 17:24:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9011016#M128612</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-06T17:24:46Z</dc:date>
    </item>
    <item>
      <title>Re: Change attribute values to default values</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9011020#M128613</link>
      <description>&lt;P&gt;did already post a sample dwg that explain the specific field data you want to copy?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 17:26:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9011020#M128613</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2019-09-06T17:26:11Z</dc:date>
    </item>
    <item>
      <title>Re: Change attribute values to default values</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9011054#M128614</link>
      <description>&lt;P&gt;See attached a very basic example, here is what I have done:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. I created a "Test" block which is a circle and the attribute "X" which is supposed to show the X coordinate of the center&lt;/P&gt;&lt;P&gt;2. I inserted three Test blocks and changed their attribute manually (text)&lt;/P&gt;&lt;P&gt;3. After that I changed the default value of the attribute of the block at the top to be the Position-X field of that object&lt;/P&gt;&lt;P&gt;4. I used your code with the other 2 objects&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have noticed that what I am trying to do works only if I copy and paste the object on which I set the default field value, in that case the attribute is showing the current position of the object, but not if I try to update existing object or insert new objects.&lt;/P&gt;&lt;P&gt;Many thanks.&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 17:41:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9011054#M128614</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-06T17:41:46Z</dc:date>
    </item>
    <item>
      <title>Re: Change attribute values to default values</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9011083#M128615</link>
      <description>&lt;P&gt;The problem with the block is the field. Instead of using the field category: object use the field category: block place holder and then select the block and its position which would be the insertion point as seen in the screenshot.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="BPH.PNG" style="width: 708px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/674830iC52AC7A1D444B81C/image-size/large?v=v2&amp;amp;px=999" role="button" title="BPH.PNG" alt="BPH.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 18:06:53 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9011083#M128615</guid>
      <dc:creator>vinodkl</dc:creator>
      <dc:date>2019-09-06T18:06:53Z</dc:date>
    </item>
    <item>
      <title>Re: Change attribute values to default values</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9011103#M128616</link>
      <description>&lt;P&gt;ok this requires a total new lisp, stay tume&lt;/P&gt;</description>
      <pubDate>Fri, 06 Sep 2019 18:19:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9011103#M128616</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2019-09-06T18:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: Change attribute values to default values</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9011822#M128617</link>
      <description>&lt;P&gt;@Anonymous&amp;nbsp; hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;OK it tooks alot of time but have success&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So Attached pattfc.zip contain pattfc.VLX (&lt;FONT color="#0000FF"&gt;P&lt;/FONT&gt;opulate &lt;FONT color="#0000FF"&gt;A&lt;/FONT&gt;ttribute &lt;FONT color="#0000FF"&gt;F&lt;/FONT&gt;ield &lt;FONT color="#0000FF"&gt;C&lt;/FONT&gt;ode) lisp program which uses FieldCodeV1-1.lsp from Lee Mac (thanks lee) to &lt;SPAN&gt;retrieve field code from attribute,&lt;/SPAN&gt; may be download from&amp;nbsp;&lt;A href="http://lee-mac.com/fieldcode.html" target="_blank" rel="noopener"&gt;&amp;gt;&amp;gt; here &amp;lt;&amp;lt;&lt;/A&gt;&amp;nbsp;but you do not need this cause i wrapped it all for you in one VLX file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;extract the vlx in any lisp folder and load it and key in PATTFC to run the program.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Command:&amp;nbsp; &lt;FONT color="#0000FF"&gt;PATTFC&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#0000FF"&gt;Select source attribute to populate:&lt;/FONT&gt;&amp;nbsp; &amp;lt;pick attributes&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can pick some attributes from some blocks in one session.&lt;/P&gt;&lt;P&gt;cause AutoCAD do not respond to highlight calls to highlight attribute from AutoLISP,&amp;nbsp;each attribute you pick will echo the tag name to the command line (so you'll know it is picked).&amp;nbsp;press enter to finish picking attributes, than all the relevant block references is auto selected and the populate&amp;nbsp;field code will be preformed. the selected attributes are skipped and not be modified.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;at finish do a REGEN to see the change&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;enjoy&lt;/P&gt;&lt;P&gt;Moshe&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;OH, one more thing:&lt;/P&gt;&lt;P&gt;this task could all be done more easily with pure lisp without using field. cause fields i given to ones (and AutoCAD LT) that does not write lisp code or has no one to write for. it's true when there is a field and the block moves the attribute is update (after a regen or updatefield) but if there isn't field the lisp can be run and the result is the same.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Am i right?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Sep 2019 10:21:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9011822#M128617</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2019-09-07T10:21:32Z</dc:date>
    </item>
    <item>
      <title>Re: Change attribute values to default values</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9012006#M128618</link>
      <description>&lt;P&gt;Many thanks, that would be great but I couldn't get it work. I type PATTFC, select the attributes, enter, REGEN, but nothing happens.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Sep 2019 14:23:45 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9012006#M128618</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-07T14:23:45Z</dc:date>
    </item>
    <item>
      <title>Re: Change attribute values to default values</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9012022#M128619</link>
      <description>&lt;P&gt;relocate the blocks a little. if you are not testing it with example.dwg? then post your current dwg.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Sep 2019 14:47:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9012022#M128619</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2019-09-07T14:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: Change attribute values to default values</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9012027#M128620</link>
      <description>&lt;P&gt;Yes I am using example.dwg, still not working. If you tested it on the same file I am surely doing something wrong, but don't know what...&lt;/P&gt;</description>
      <pubDate>Sat, 07 Sep 2019 14:57:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9012027#M128620</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-07T14:57:51Z</dc:date>
    </item>
    <item>
      <title>Re: Change attribute values to default values</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9012053#M128621</link>
      <description>&lt;P&gt;maybe this:&lt;/P&gt;&lt;P&gt;when you select source attributes you only have to select one attribute (no all of them) cause the selected attributes are skipped from modify.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;OK here is an update, this one pauses to ask if you also want to update the selected attribues?&lt;/P&gt;&lt;P&gt;only if you select No the selected attributes are skipped.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;works?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Sep 2019 15:24:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9012053#M128621</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2019-09-07T15:24:03Z</dc:date>
    </item>
    <item>
      <title>Re: Change attribute values to default values</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9012134#M128622</link>
      <description>&lt;P&gt;No sorry, still not working. Did you test it on example.dwg and it worked?&lt;/P&gt;</description>
      <pubDate>Sat, 07 Sep 2019 17:43:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9012134#M128622</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-09-07T17:43:07Z</dc:date>
    </item>
    <item>
      <title>Re: Change attribute values to default values</title>
      <link>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9012237#M128623</link>
      <description>&lt;P&gt;yes i'm developing the lisp based on example.dwg and it work prefect.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PATTFC stands for&amp;nbsp;&lt;FONT color="#0000FF"&gt;P&lt;/FONT&gt;opulate &lt;FONT color="#0000FF"&gt;A&lt;/FONT&gt;ttributes &lt;FONT color="#0000FF"&gt;F&lt;/FONT&gt;ield &lt;FONT color="#0000FF"&gt;C&lt;/FONT&gt;ode that means populating only attributes that has field code value and skip non field code value. your example.dwg came with 3 inserts that has no field code but the block definition does have it, so run ATTSYNC (or BATTMAN) to update the inserts. remember that only the selected attributes must have the field code in order it to work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 07 Sep 2019 21:08:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-forum/change-attribute-values-to-default-values/m-p/9012237#M128623</guid>
      <dc:creator>Moshe-A</dc:creator>
      <dc:date>2019-09-07T21:08:46Z</dc:date>
    </item>
  </channel>
</rss>

