<?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: Tagging instruments in the 3D Model in order to display in review model, i.e. Navisworks in AutoCAD Plant 3D Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/tagging-instruments-in-the-3d-model-in-order-to-display-in/m-p/11854230#M12223</link>
    <description>&lt;P&gt;Here's a simple LISP:&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;; Note: Current mleader style needs to be type Multileader Type: "Mtext"
; 
(defun c:TagP3d ( / myEnt vlaobj myTag mlObj)
  (vl-load-com)
  ; get the line number from piping obj
  (setq myEnt (car (entsel)))
  (setq vlaobj (vlax-ename-&amp;gt;vla-object myEnt))
  (setq myTag (vlax-get-property vlaobj 'Tag))
  
  ; create the mleader. 
  (command "_MLEADER" pause pause "")
  
  ; change mleader text to tag
  (setq mlObj (vlax-ename-&amp;gt;vla-object (entlast)))
  (if (= (vlax-get-property mlObj 'ObjectName) "AcDbMLeader")
    (vlax-put-property mlObj 'TextString myTag)
    (exit)	   
  )
  (princ)
)&lt;/LI-CODE&gt;</description>
    <pubDate>Tue, 28 Mar 2023 18:05:26 GMT</pubDate>
    <dc:creator>jabowabo</dc:creator>
    <dc:date>2023-03-28T18:05:26Z</dc:date>
    <item>
      <title>Tagging instruments in the 3D Model in order to display in review model, i.e. Navisworks</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/tagging-instruments-in-the-3d-model-in-order-to-display-in/m-p/11853923#M12221</link>
      <description>&lt;P&gt;Does anyone know of a Plant3D command or lisp routine to auto tag instruments in the actual 3D model. Similar to the tagging in the piping isometric or orthographic annotation functions?&amp;nbsp; Pulling the intelligence from the model.&lt;/P&gt;&lt;P&gt;Please see the image for the desired end result. Thanks in advance for any help or direction.&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;Piping Designer&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2023 16:49:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/tagging-instruments-in-the-3d-model-in-order-to-display-in/m-p/11853923#M12221</guid>
      <dc:creator>robert.barryWUWN6</dc:creator>
      <dc:date>2023-03-28T16:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: Tagging instruments in the 3D Model in order to display in review model, i.e. Navisworks</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/tagging-instruments-in-the-3d-model-in-order-to-display-in/m-p/11854021#M12222</link>
      <description>&lt;P&gt;&lt;A href="https://www.ecedesign.com/ece-software/bubbleworx/" target="_blank" rel="noopener"&gt;BUBBLEWorx&lt;/A&gt; and &lt;A href="https://www.ecedesign.com/ece-software/annoworx/" target="_blank" rel="noopener"&gt;ANNOWorx&lt;/A&gt; can&amp;nbsp; do this to an extent.&lt;/P&gt;&lt;P&gt;They were built for adding annotation in Paper space, but currently do add it to Model Space with a small adjustment after it has been inserted. The blocks text size and shape are customizable.&lt;/P&gt;&lt;P&gt;Here is an example&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mattworland_0-1680021116291.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1194793iEF81E9C9A9BD0662/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mattworland_0-1680021116291.png" alt="mattworland_0-1680021116291.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Feel free to message me if you have any questions.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Mar 2023 16:35:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/tagging-instruments-in-the-3d-model-in-order-to-display-in/m-p/11854021#M12222</guid>
      <dc:creator>matt.worland</dc:creator>
      <dc:date>2023-03-28T16:35:52Z</dc:date>
    </item>
    <item>
      <title>Re: Tagging instruments in the 3D Model in order to display in review model, i.e. Navisworks</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/tagging-instruments-in-the-3d-model-in-order-to-display-in/m-p/11854230#M12223</link>
      <description>&lt;P&gt;Here's a simple LISP:&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;; Note: Current mleader style needs to be type Multileader Type: "Mtext"
; 
(defun c:TagP3d ( / myEnt vlaobj myTag mlObj)
  (vl-load-com)
  ; get the line number from piping obj
  (setq myEnt (car (entsel)))
  (setq vlaobj (vlax-ename-&amp;gt;vla-object myEnt))
  (setq myTag (vlax-get-property vlaobj 'Tag))
  
  ; create the mleader. 
  (command "_MLEADER" pause pause "")
  
  ; change mleader text to tag
  (setq mlObj (vlax-ename-&amp;gt;vla-object (entlast)))
  (if (= (vlax-get-property mlObj 'ObjectName) "AcDbMLeader")
    (vlax-put-property mlObj 'TextString myTag)
    (exit)	   
  )
  (princ)
)&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 28 Mar 2023 18:05:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/tagging-instruments-in-the-3d-model-in-order-to-display-in/m-p/11854230#M12223</guid>
      <dc:creator>jabowabo</dc:creator>
      <dc:date>2023-03-28T18:05:26Z</dc:date>
    </item>
    <item>
      <title>Re: Tagging instruments in the 3D Model in order to display in review model, i.e. Navisworks</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/tagging-instruments-in-the-3d-model-in-order-to-display-in/m-p/11860633#M12224</link>
      <description>&lt;P&gt;Thank you so much Jason , nice stuff. I can definitely use the line number tag function.&amp;nbsp; Great starting point.&amp;nbsp; I'm going try an instrument tag number version using your routine as a reference. I am assuming this can be done?&lt;/P&gt;&lt;P&gt;Gonna try to figure it out but any help or reference will be appreciated.&lt;/P&gt;&lt;P&gt;Thanks, Rob&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2023 20:27:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/tagging-instruments-in-the-3d-model-in-order-to-display-in/m-p/11860633#M12224</guid>
      <dc:creator>robert.barryWUWN6</dc:creator>
      <dc:date>2023-03-30T20:27:40Z</dc:date>
    </item>
    <item>
      <title>Re: Tagging instruments in the 3D Model in order to display in review model, i.e. Navisworks</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/tagging-instruments-in-the-3d-model-in-order-to-display-in/m-p/11860647#M12225</link>
      <description>&lt;P&gt;Matt, This is definitely worth lookin into. Looks like it costs money which is okay as long as it works well. Might not be as intuitive as I would like.&amp;nbsp; I will have to look further into it. There is a lost of tools in there,&amp;nbsp; was there a specific program name for this? How much of a small adjustment to covert modelspace?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Robert&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2023 20:32:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/tagging-instruments-in-the-3d-model-in-order-to-display-in/m-p/11860647#M12225</guid>
      <dc:creator>robert.barryWUWN6</dc:creator>
      <dc:date>2023-03-30T20:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: Tagging instruments in the 3D Model in order to display in review model, i.e. Navisworks</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/tagging-instruments-in-the-3d-model-in-order-to-display-in/m-p/11860807#M12226</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11122320"&gt;@robert.barryWUWN6&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;&amp;nbsp;I'm going try an instrument tag number version using your routine as a reference. I am assuming this can be done?&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Should work on any item with a 'Tag' property.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2023 21:47:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/tagging-instruments-in-the-3d-model-in-order-to-display-in/m-p/11860807#M12226</guid>
      <dc:creator>jabowabo</dc:creator>
      <dc:date>2023-03-30T21:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: Tagging instruments in the 3D Model in order to display in review model, i.e. Navisworks</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/tagging-instruments-in-the-3d-model-in-order-to-display-in/m-p/11860908#M12227</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/11122320"&gt;@robert.barryWUWN6&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;&amp;nbsp;was there a specific program name for this? How much of a small adjustment to covert modelspace?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Robert&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;The hexagon shape came from BUBBLEWorx, and the other was from ANNOWorx. The BUBBLEWorx leader can be transformed into a 3d block if needed. As for the adjustments, it's adjusting the elevation of the leader when placed. We haven't had a lot of drive for this in the past and have not automated it for our model space annotations.&lt;BR /&gt;I have sent my email in a PM if you would like to discuss in more detail.&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2023 22:56:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/tagging-instruments-in-the-3d-model-in-order-to-display-in/m-p/11860908#M12227</guid>
      <dc:creator>matt.worland</dc:creator>
      <dc:date>2023-03-30T22:56:57Z</dc:date>
    </item>
    <item>
      <title>Re: Tagging instruments in the 3D Model in order to display in review model, i.e. Navisworks</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/tagging-instruments-in-the-3d-model-in-order-to-display-in/m-p/11868965#M12228</link>
      <description>&lt;P&gt;Okay Jason, I got it to work... kind of and also kind of hard to put into words. It doesn't populate the instrument tag value physically until I run the command a second time. Up until then, the mtext box is shown blank, As soon as I pick the instrument on the 2nd command the value updates I hit cancel and Bobs your Uncle. Doe make sense? I ran it on 2019. maybe that makes a difference. I will try other versions when I get freed up. Thx&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Apr 2023 18:02:16 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/tagging-instruments-in-the-3d-model-in-order-to-display-in/m-p/11868965#M12228</guid>
      <dc:creator>robert.barryWUWN6</dc:creator>
      <dc:date>2023-04-03T18:02:16Z</dc:date>
    </item>
    <item>
      <title>Re: Tagging instruments in the 3D Model in order to display in review model, i.e. Navisworks</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/tagging-instruments-in-the-3d-model-in-order-to-display-in/m-p/11869216#M12229</link>
      <description>&lt;P&gt;Works as expected here. There are a few clicks that are necessary to complete the command. Are you following the command line prompts when inserting? Could be a different system variable value causing the issue...&lt;/P&gt;</description>
      <pubDate>Mon, 03 Apr 2023 19:34:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/tagging-instruments-in-the-3d-model-in-order-to-display-in/m-p/11869216#M12229</guid>
      <dc:creator>jabowabo</dc:creator>
      <dc:date>2023-04-03T19:34:41Z</dc:date>
    </item>
  </channel>
</rss>

