<?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 [API BUG] Cannot access entity of &amp;quot;Move&amp;quot; feature in Fusion API and Scripts Forum</title>
    <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/api-bug-cannot-access-entity-of-quot-move-quot-feature/m-p/9651675#M11170</link>
    <description>&lt;P&gt;When accessing the timeline (design.timeline) it is not possible to get the entity for "Move".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create a Move feature in the GUI and then check the timeline using Python:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;timeline[-1].name
'Move1'
timeline[-1].entity
RuntimeError: 2 : InternalValidationError : res&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The same is true for Align.&lt;/P&gt;</description>
    <pubDate>Thu, 23 Jul 2020 15:16:30 GMT</pubDate>
    <dc:creator>thomasa88</dc:creator>
    <dc:date>2020-07-23T15:16:30Z</dc:date>
    <item>
      <title>[API BUG] Cannot access entity of "Move" feature</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/api-bug-cannot-access-entity-of-quot-move-quot-feature/m-p/9651675#M11170</link>
      <description>&lt;P&gt;When accessing the timeline (design.timeline) it is not possible to get the entity for "Move".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Create a Move feature in the GUI and then check the timeline using Python:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;timeline[-1].name
'Move1'
timeline[-1].entity
RuntimeError: 2 : InternalValidationError : res&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The same is true for Align.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jul 2020 15:16:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/api-bug-cannot-access-entity-of-quot-move-quot-feature/m-p/9651675#M11170</guid>
      <dc:creator>thomasa88</dc:creator>
      <dc:date>2020-07-23T15:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: [API BUG] Cannot access entity of "Move" feature</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/api-bug-cannot-access-entity-of-quot-move-quot-feature/m-p/9651921#M11171</link>
      <description>&lt;P&gt;There are several things that you can check, the isValid and isSuppressed.&amp;nbsp; &amp;nbsp;Also is capture position pending?&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jul 2020 16:52:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/api-bug-cannot-access-entity-of-quot-move-quot-feature/m-p/9651921#M11171</guid>
      <dc:creator>balunist</dc:creator>
      <dc:date>2020-07-23T16:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: [API BUG] Cannot access entity of "Move" feature</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/api-bug-cannot-access-entity-of-quot-move-quot-feature/m-p/9652376#M11172</link>
      <description>&lt;P&gt;I also found this same issue the other day.&amp;nbsp; I believe this is related to some internal changes that were made to the Move feature and the API has not been updated to handle this change.&amp;nbsp; The problem is that the updated Move feature is seen as new type of feature that the API doesn't support.&amp;nbsp; Because of that when you try to get the feature from the timeline entity it can't return anything because the API doesn't know what it is.&amp;nbsp; There is not workaround for you.&amp;nbsp; It's something Autodesk needs to address.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jul 2020 20:34:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/api-bug-cannot-access-entity-of-quot-move-quot-feature/m-p/9652376#M11172</guid>
      <dc:creator>BrianEkins</dc:creator>
      <dc:date>2020-07-23T20:34:30Z</dc:date>
    </item>
    <item>
      <title>Re: [API BUG] Cannot access entity of "Move" feature</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/api-bug-cannot-access-entity-of-quot-move-quot-feature/m-p/9653170#M11173</link>
      <description>&lt;P&gt;Minimal sample document: &lt;A href="https://a360.co/30KXq6v" target="_blank"&gt;https://a360.co/30KXq6v&lt;/A&gt;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;design = app.activeProduct
design.timeline[0].name
'BoxPrimitive1'
design.timeline[0].entity
&amp;lt;adsk.fusion.BoxFeature; proxy of &amp;lt;Swig Object of type 'adsk::core::Ptr&amp;lt; adsk::fusion::BoxFeature &amp;gt; *' at 0x000001B301E12A20&amp;gt; &amp;gt;
design.timeline[1].name
'Move1'
design.timeline[1].entity
RuntimeError: 2 : InternalValidationError : res
design.timeline[2].name
'Align1'
design.timeline[2].entity
RuntimeError: 2 : InternalValidationError : res&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 24 Jul 2020 09:10:44 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/api-bug-cannot-access-entity-of-quot-move-quot-feature/m-p/9653170#M11173</guid>
      <dc:creator>thomasa88</dc:creator>
      <dc:date>2020-07-24T09:10:44Z</dc:date>
    </item>
    <item>
      <title>Re: [API BUG] Cannot access entity of "Move" feature, align, derive and sheet metal features</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/api-bug-cannot-access-entity-of-quot-move-quot-feature/m-p/9655654#M11174</link>
      <description>&lt;P&gt;Bug also applies to:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Insert Derive&lt;/LI&gt;&lt;LI&gt;Sheet metal features: flange, bend, convert to sheet metal, flat pattern&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Sun, 26 Jul 2020 09:50:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/api-bug-cannot-access-entity-of-quot-move-quot-feature/m-p/9655654#M11174</guid>
      <dc:creator>thomasa88</dc:creator>
      <dc:date>2020-07-26T09:50:26Z</dc:date>
    </item>
  </channel>
</rss>

