<?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: Access Section Analysis? in Fusion API and Scripts Forum</title>
    <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/10867011#M10968</link>
    <description>&lt;P&gt;In case anyone is still looking at this thread.&amp;nbsp; Took me a while, but I finally tried turning off the visibility of each section analysis with&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7468050"&gt;@thomasa88&lt;/a&gt;&amp;nbsp;'s code, but found that it had no effect.&amp;nbsp; Instead, I found that I had to turn off the visibility of all analyses in addition to each individual analysis.&amp;nbsp; Doing this with just one or the other had no effect.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;import neu_server 
import neu_modeling 
analyses = neu_server.get_entity_id("VisualAnalyses")
neu_server.set_entity_properties(analyses, {'isVisible': False} ) # turn off all analyses
for i in range(neu_modeling.get_child_count(analyses)):
    analysis = neu_modeling.get_child(analyses, i) 
    neu_server.set_entity_properties(analysis, {'isVisible': False})&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;maybe there is a draw or update call that gets triggered when the second round of visibility changes happens?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks again&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7468050"&gt;@thomasa88&lt;/a&gt;&amp;nbsp;for all the help!!&amp;nbsp; Code is working great now!&lt;/P&gt;</description>
    <pubDate>Sun, 09 Jan 2022 09:40:51 GMT</pubDate>
    <dc:creator>amandaghassaeiS8KA2</dc:creator>
    <dc:date>2022-01-09T09:40:51Z</dc:date>
    <item>
      <title>Access Section Analysis?</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9693712#M10952</link>
      <description>&lt;P&gt;Is there any way in the API to access sections created by the Section Analysis tool?&lt;/P&gt;</description>
      <pubDate>Sun, 16 Aug 2020 09:21:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9693712#M10952</guid>
      <dc:creator>thomasa88</dc:creator>
      <dc:date>2020-08-16T09:21:57Z</dc:date>
    </item>
    <item>
      <title>Re: Access Section Analysis?</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9694215#M10953</link>
      <description>&lt;P&gt;The Section Analysis command functionality has not been exposed through the API.&amp;nbsp; However, depending on what you need, you might still be able to accomplish it using the API.&amp;nbsp; The "Section Analysis" command doesn't seem to provide any analysis but instead shows a graphics representation of the model cut along a specified plane.&amp;nbsp; If you want to control the display of existing sections, that's not available.&amp;nbsp; However, you can get some true section analysis using a combination of some API functionality.&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;First, you can use the &lt;A href="http://help.autodesk.com/view/fusion360/ENU/?guid=GUID-AD8585D6-47CD-48B3-95F1-42C146AE1686" target="_blank" rel="noopener"&gt;planeIntersection&lt;/A&gt; method to calculate the intersection between a defined plane and a body.&amp;nbsp; This creates a wire body which is a wire frame representation of the intersection.&lt;/LI&gt;&lt;LI&gt;You can use the &lt;A href="http://help.autodesk.com/view/fusion360/ENU/?guid=GUID-18D6210D-FF0A-4CA8-8244-CFDC30213A4D" target="_blank" rel="noopener"&gt;createFaceFromPlanarWires&lt;/A&gt; method to create a BRepFace object that represents the intersection.&lt;/LI&gt;&lt;LI&gt;Finally, you can use the &lt;A href="http://help.autodesk.com/view/fusion360/ENU/?guid=GUID-16253116-F40A-499C-8E9F-BF8E34747191" target="_blank" rel="noopener"&gt;areaProperties&lt;/A&gt; method to calculate the area properties of the face.&amp;nbsp; This will return things like the area, perimeter, principal axes, moments of inertia, etc.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Here's an example script that demonstrates this.&amp;nbsp; It displays the area but you can get all of the other area properties from the returned AreaProperties object.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;import adsk.core, adsk.fusion, traceback

def run(context):
    try:
        app = adsk.core.Application.get()
        ui  = app.userInterface
        des = adsk.fusion.Design.cast(app.activeProduct)
        root = des.rootComponent

        constPlaneSel = ui.selectEntity('Select a construction plane', 'ConstructionPlanes')
        constPlane = adsk.fusion.ConstructionPlane.cast(constPlaneSel.entity)

        bodySel = ui.selectEntity('Select body to section', 'Bodies')
        body = adsk.fusion.BRepBody.cast(bodySel.entity)

        tempBRep = adsk.fusion.TemporaryBRepManager.get()
        intWireBody = tempBRep.planeIntersection(body, constPlane.geometry)        

        intBody = tempBRep.createFaceFromPlanarWires([intWireBody])

        inputs = adsk.core.ObjectCollection.create()
        inputs.add(intBody.faces.item(0))

        areaProps = des.areaProperties(inputs)

        baseFeat = root.features.baseFeatures.add()
        baseFeat.startEdit()
        newBody = root.bRepBodies.add(intBody, baseFeat)
        newBody.name = 'Intersection'
        baseFeat.finishEdit()

        ui.messageBox('Area: ' + str(areaProps.area) + ' cm^2')
    except:
        if ui:
            ui.messageBox('Failed:\n{}'.format(traceback.format_exc())) &lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 16 Aug 2020 22:43:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9694215#M10953</guid>
      <dc:creator>BrianEkins</dc:creator>
      <dc:date>2020-08-16T22:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: Access Section Analysis?</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9696593#M10954</link>
      <description>&lt;P&gt;Thank you for putting time and effort into this. I should have been more clear about exactly what I want to do.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm writing an &lt;A href="https://github.com/thomasa88/DirectName" target="_blank" rel="noopener"&gt;add-in for naming things directly after creation&lt;/A&gt;. I got annoyed about all my unnamed section views, so I wanted to include them in the add-in. So I basically wanted to access the "name" property of the section views in the browser.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Aug 2020 06:06:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9696593#M10954</guid>
      <dc:creator>thomasa88</dc:creator>
      <dc:date>2020-08-18T06:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: Access Section Analysis?</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9697019#M10955</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7468050"&gt;@thomasa88&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've tried a few things with the &lt;SPAN&gt;TextCommands&lt;/SPAN&gt;(Txt).&lt;/P&gt;
&lt;LI-CODE lang="general"&gt;Browser.DumpXml &amp;lt;export file path&amp;gt;&lt;/LI-CODE&gt;
&lt;P&gt;&lt;A href="https://github.com/kantoku-code/Fusion360_Small_Tools_for_Developers/blob/master/TextCommands/TextCommands_txt_Ver2_0_8176.txt#L139" target="_blank"&gt;https://github.com/kantoku-code/Fusion360_Small_Tools_for_Developers/blob/master/TextCommands/TextCommands_txt_Ver2_0_8176.txt#L139&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you examine the exported xml file file, it appears to contain the name of the Section Analysis.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can find out how to run &lt;SPAN&gt;TextCommands&lt;/SPAN&gt; from the API here.&lt;/P&gt;
&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/fusion-360-api-and-scripts/use-textcommands/td-p/9645688" target="_blank"&gt;https://forums.autodesk.com/t5/fusion-360-api-and-scripts/use-textcommands/td-p/9645688&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Aug 2020 10:04:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9697019#M10955</guid>
      <dc:creator>kandennti</dc:creator>
      <dc:date>2020-08-18T10:04:26Z</dc:date>
    </item>
    <item>
      <title>Re: Access Section Analysis?</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9698107#M10956</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3787950"&gt;@kandennti&lt;/a&gt;Very interesting with the text commands! However, in this case, I'm not sure that it helps.&lt;/P&gt;&lt;P&gt;I see the commands for creating Section Analysis, but I don't know if it helps me.. I want to rename existing sections.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Toolkit.browser lists "Analysis", but I don't know if I can go from there.&lt;/P&gt;&lt;P&gt;FusionDoc.FusionDocShowHideCmd indicates that browser nodes can be accessed.&lt;/P&gt;&lt;P&gt;FusionDoc.SetObjectName sounds right, but the help text says it is for selecting&lt;/P&gt;&lt;P&gt;NamedView.UpdateNamedViewName&amp;nbsp; is for named views.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;These sound promising:&lt;/P&gt;&lt;P&gt;NuCommands.RenameCommand&lt;/P&gt;&lt;P&gt;PInterfaces.Rename&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea how I can supply the right arguments?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Btw, I get the feeling that the Text Commands are for some sort of automated testing of Fusion.&lt;/P&gt;</description>
      <pubDate>Tue, 18 Aug 2020 17:54:13 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9698107#M10956</guid>
      <dc:creator>thomasa88</dc:creator>
      <dc:date>2020-08-18T17:54:13Z</dc:date>
    </item>
    <item>
      <title>Re: Access Section Analysis?</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9698191#M10957</link>
      <description>&lt;P&gt;Ok, I'm almost there:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;* Toolkit.browser: Flat browser view. Does not update contents after renaming a section (via GUI or RenameCommand). Here I can see e.g. Section3.&lt;BR /&gt;* ????&lt;BR /&gt;* Selections.Add 826 Here I add my section's entity ID to selections&lt;BR /&gt;* NuCommands.RenameCommand MySection Rename it to "MySection"&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I need to figure out how to get from section name to entity ID. Or possibly some kind of name path (Analysis:Section3) to entity ID.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;PSelections.Get gave me the ID when I selected manually, but I need to do it programmatically.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PSelections.Get&lt;BR /&gt;[{"occurrence":{"source":{"segId":24,"entityId":3,"rootId":""},"path":[]},"entity":{"segId":24,"entityId":826,"rootId":""},"type":"Na::VisualAnalysisSelection"}]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Aug 2020 18:35:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9698191#M10957</guid>
      <dc:creator>thomasa88</dc:creator>
      <dc:date>2020-08-18T18:35:51Z</dc:date>
    </item>
    <item>
      <title>Re: Access Section Analysis?</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9699269#M10958</link>
      <description>&lt;P&gt;Understand that the use of TextCommands is different from "getting to the goal" with "possible" alone.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2020 08:28:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9699269#M10958</guid>
      <dc:creator>kandennti</dc:creator>
      <dc:date>2020-08-19T08:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: Access Section Analysis?</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9699279#M10959</link>
      <description>&lt;P&gt;I haven't tried it in detail, but "FusionDoc" is about drawings,&lt;BR /&gt;I think "PInterfaces(P~)" is related to PCB(Electronic).&lt;/P&gt;</description>
      <pubDate>Wed, 19 Aug 2020 08:40:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9699279#M10959</guid>
      <dc:creator>kandennti</dc:creator>
      <dc:date>2020-08-19T08:40:22Z</dc:date>
    </item>
    <item>
      <title>Re: Access Section Analysis?</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9700491#M10960</link>
      <description>&lt;P&gt;After a long evening with Fusion Text Commands, I think I got it!&lt;/P&gt;&lt;P&gt;Now the question remains: Is it stable? Both in regards to API changes and to program stability.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;PAsset.RootIds 
["AssetSettings","ComponentInstancesRoot","ComponentsRoot","NamedTrackedEntitySet","ProteinAssetManager","UnitSystems","VisualAnalyses","WorkingModelPlaceholderRoot","rootInstance"]

PEntity.ID VisualAnalyses
59

Managed.Children VisualAnalyses
1

Managed.Child VisualAnalyses 0
{"segId":3,"entityId":179,"rootId":""}

PEntity.Properties 179
userName contains name. But see below.  userName is empty here if the user has never set it?
creationIndex shows the index for entities of this type? Is this the number after e.g. Section ---&amp;gt; "Section&amp;lt;num&amp;gt;"

PInterfaces.GetUserName 179
Section1

PInterfaces.Rename 179 "My section!"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And it's even possible to call the Python versions directly from add-ins!&lt;/P&gt;&lt;LI-CODE lang="python"&gt;Python functions. import the modules. Can find functions by comparing help info to text command help info.
import neu_dev
neu_dev.list_functions()

import neu_server
import neu_modeling
neu_server.get_entity_id("VisualAnalyses")

neu_modeling.get_child_count(59) 
4

neu_modeling.get_child(59, 0)
{'segId': 8, 'entityId': 826, 'rootId': ''}

neu_modeling.get_child(59, 0)['entityId']
826

neu_server.get_entity_properties(826)
neu_server.get_entity_properties(826)['userName'] #userName is empty here if the user has never set it?
neu_server.get_entity_properties(826)['creationIndex'] # e.g. 3 in Section3
3

neu_server.get_user_name(826)
sekt3


neu_server.rename(826, "section name")&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 19 Aug 2020 18:30:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9700491#M10960</guid>
      <dc:creator>thomasa88</dc:creator>
      <dc:date>2020-08-19T18:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: Access Section Analysis?</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9701981#M10961</link>
      <description>&lt;P&gt;It's great!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't think there are any guarantees on stability.&lt;BR /&gt;Basically, it's not a recommended technique for an API, and I feel it's more of a subterfuge.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;"neu_dev", "neu_server" and "neu_modeling" I didn't notice that either.&lt;BR /&gt;Thanks for the good information.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2020 10:58:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9701981#M10961</guid>
      <dc:creator>kandennti</dc:creator>
      <dc:date>2020-08-20T10:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: Access Section Analysis?</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9703070#M10962</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3787950"&gt;@kandennti&lt;/a&gt;&amp;nbsp;is correct. None of that functionality is officially supported.&amp;nbsp; It was typically added for some internal testing and there's nothing to guarantee the functionality won't change or be available at all in the future.&amp;nbsp; For an internal tool it's probably OK, but I would be hesitant to use these kinds of workarounds for anything I'm delivering to others.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Aug 2020 17:48:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9703070#M10962</guid>
      <dc:creator>BrianEkins</dc:creator>
      <dc:date>2020-08-20T17:48:54Z</dc:date>
    </item>
    <item>
      <title>Re: Access Section Analysis?</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9831804#M10963</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5741855"&gt;@BrianEkins&lt;/a&gt;&amp;nbsp;thanks for the info - I looked and it seems that turning section analysis visibility on/off is still not supported through the API.&amp;nbsp; I'm working on a script to render past versions of a design as a timelapse animation and it would help to be able to turn section analysis off before saving an image:&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/amandaghassaei/Fusion360-Design-Version-Timelapse" target="_blank"&gt;https://github.com/amandaghassaei/Fusion360-Design-Version-Timelapse&lt;/A&gt;&lt;/P&gt;&lt;P&gt;any plans to implement this?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Amanda&lt;/P&gt;</description>
      <pubDate>Thu, 29 Oct 2020 08:47:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9831804#M10963</guid>
      <dc:creator>amandaghassaeiS8KA2</dc:creator>
      <dc:date>2020-10-29T08:47:11Z</dc:date>
    </item>
    <item>
      <title>Re: Access Section Analysis?</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9833126#M10964</link>
      <description>&lt;P&gt;I looked through my earlier examples and checked the list from neu_dev.list_functions().&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This seems to work pretty well (for now at least):&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;LI-CODE lang="python"&gt;import neu_server 
import neu_modeling 
analyses = neu_server.get_entity_id("VisualAnalyses") 
for i in range(neu_modeling.get_child_count(analyses)):
    analysis = neu_modeling.get_child(analyses, i) 
    neu_server.set_entity_properties(analysis, {'isVisible': False} )

    # Dump all properties: neu_server.get_entity_properties(analysis)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;edit. And cool idea!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And also most objects that have .items() seem to be directly iterable (i.e.&amp;nbsp; for item in object: do thing)&lt;/P&gt;</description>
      <pubDate>Thu, 29 Oct 2020 19:40:04 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9833126#M10964</guid>
      <dc:creator>thomasa88</dc:creator>
      <dc:date>2020-10-29T19:40:04Z</dc:date>
    </item>
    <item>
      <title>Re: Access Section Analysis?</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9833482#M10965</link>
      <description>&lt;P&gt;Thanks for the code&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7468050"&gt;@thomasa88&lt;/a&gt;&amp;nbsp;!&amp;nbsp; I will give that a try.&amp;nbsp; So as I understand it the neu_ stuff is deprecated, but are there any docs still available for this?&lt;/P&gt;</description>
      <pubDate>Thu, 29 Oct 2020 22:25:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9833482#M10965</guid>
      <dc:creator>amandaghassaeiS8KA2</dc:creator>
      <dc:date>2020-10-29T22:25:48Z</dc:date>
    </item>
    <item>
      <title>Re: Access Section Analysis?</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9833837#M10966</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7468050"&gt;@thomasa88&lt;/a&gt;&amp;nbsp;&amp;nbsp;, always great.&lt;BR /&gt;One "LIKES" is not enough.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Oct 2020 03:23:54 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9833837#M10966</guid>
      <dc:creator>kandennti</dc:creator>
      <dc:date>2020-10-30T03:23:54Z</dc:date>
    </item>
    <item>
      <title>Re: Access Section Analysis?</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9834002#M10967</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/4365283"&gt;@amandaghassaeiS8KA2&lt;/a&gt;&lt;/P&gt;&lt;P&gt;I'm not sure that this interface has ever been supported and I have not seen any official documentation. Which is a bit funny, with how easily accessible it is. When I first started using fusion I thought it was a command interface to easily drive the program instead of using the mouse, as in, I believe, Autocad.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have just used the info from kandetti in this post, and a lot of trial and error..:&lt;/P&gt;&lt;P&gt;&lt;A href="https://forums.autodesk.com/t5/fusion-360-api-and-scripts/access-section-analysis/m-p/9697019/highlight/true#M11037" target="_blank" rel="noopener"&gt;https://forums.autodesk.com/t5/fusion-360-api-and-scripts/access-section-analysis/m-p/9697019/highlight/true#M11037&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3787950"&gt;@kandennti&lt;/a&gt;Thanks! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Oct 2020 06:46:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/9834002#M10967</guid>
      <dc:creator>thomasa88</dc:creator>
      <dc:date>2020-10-30T06:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: Access Section Analysis?</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/10867011#M10968</link>
      <description>&lt;P&gt;In case anyone is still looking at this thread.&amp;nbsp; Took me a while, but I finally tried turning off the visibility of each section analysis with&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7468050"&gt;@thomasa88&lt;/a&gt;&amp;nbsp;'s code, but found that it had no effect.&amp;nbsp; Instead, I found that I had to turn off the visibility of all analyses in addition to each individual analysis.&amp;nbsp; Doing this with just one or the other had no effect.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;import neu_server 
import neu_modeling 
analyses = neu_server.get_entity_id("VisualAnalyses")
neu_server.set_entity_properties(analyses, {'isVisible': False} ) # turn off all analyses
for i in range(neu_modeling.get_child_count(analyses)):
    analysis = neu_modeling.get_child(analyses, i) 
    neu_server.set_entity_properties(analysis, {'isVisible': False})&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;maybe there is a draw or update call that gets triggered when the second round of visibility changes happens?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks again&amp;nbsp;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7468050"&gt;@thomasa88&lt;/a&gt;&amp;nbsp;for all the help!!&amp;nbsp; Code is working great now!&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jan 2022 09:40:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/access-section-analysis/m-p/10867011#M10968</guid>
      <dc:creator>amandaghassaeiS8KA2</dc:creator>
      <dc:date>2022-01-09T09:40:51Z</dc:date>
    </item>
  </channel>
</rss>

