<?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: How to get screenshot of scene by API in Fusion API and Scripts Forum</title>
    <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/how-to-get-screenshot-of-scene-by-api/m-p/6379011#M19780</link>
    <description>&lt;P&gt;Thank you! I will cehck it!&lt;/P&gt;</description>
    <pubDate>Sun, 12 Jun 2016 10:58:38 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-06-12T10:58:38Z</dc:date>
    <item>
      <title>How to get screenshot of scene by API</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/how-to-get-screenshot-of-scene-by-api/m-p/6378922#M19776</link>
      <description>&lt;P&gt;I would like to make an add-in for Fusion 360 which should save&amp;nbsp;screenshot of scene/workplace&amp;nbsp;periodically. The period of time will be defined by user. It will help to track time and build timeline of&amp;nbsp;work. The saved images (screenshots)&amp;nbsp;could be used to make a video and publish somewhere on web.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So is there any api method to get image of&amp;nbsp;scene or any way to do it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 12 Jun 2016 07:40:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/how-to-get-screenshot-of-scene-by-api/m-p/6378922#M19776</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-12T07:40:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to get screenshot of scene by API</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/how-to-get-screenshot-of-scene-by-api/m-p/6378967#M19777</link>
      <description>You may want to try the tool called screencast, check out here:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://www.autodesk.com/products/screencast/overview" target="_blank"&gt;http://www.autodesk.com/products/screencast/overview&lt;/A&gt;</description>
      <pubDate>Sun, 12 Jun 2016 09:55:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/how-to-get-screenshot-of-scene-by-api/m-p/6378967#M19777</guid>
      <dc:creator>frankzhang</dc:creator>
      <dc:date>2016-06-12T09:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to get screenshot of scene by API</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/how-to-get-screenshot-of-scene-by-api/m-p/6379007#M19778</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You may use&amp;nbsp;Viewport.saveAsImageFile.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;import adsk.core, adsk.fusion, adsk.cam, traceback

def run(context):
    ui = None
    try:
        app = adsk.core.Application.get()
        ui  = app.userInterface
        
        app.activeViewport.saveAsImageFile("c:/box.jpg", 400, 300);

    except:
        if ui:
            ui.messageBox('Failed:\n{}'.format(traceback.format_exc()))&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Jack&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 12 Jun 2016 10:56:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/how-to-get-screenshot-of-scene-by-api/m-p/6379007#M19778</guid>
      <dc:creator>liujac</dc:creator>
      <dc:date>2016-06-12T10:56:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to get screenshot of scene by API</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/how-to-get-screenshot-of-scene-by-api/m-p/6379008#M19779</link>
      <description>&lt;P&gt;Thank you for reply, but I don't need to make screencast but I want make a some kind timetracker and timeline of modeling for freelancers/employees and employers.&lt;/P&gt;&lt;P&gt;In the market there are many time trackers software but they all require to start, pause, suspend and stop when you work, the add-in I want to make should give a free of these actions, you just work and the plugin will calculate work time and even more it will make a sequences/video how the modeling process was done, for example every 2 seconds it will save screenshots if there is activity and it can tell how many real time spend on modeling and you can watch it as a video (outside of the fusion of course).&lt;/P&gt;</description>
      <pubDate>Sun, 12 Jun 2016 10:56:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/how-to-get-screenshot-of-scene-by-api/m-p/6379008#M19779</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-12T10:56:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to get screenshot of scene by API</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/how-to-get-screenshot-of-scene-by-api/m-p/6379011#M19780</link>
      <description>&lt;P&gt;Thank you! I will cehck it!&lt;/P&gt;</description>
      <pubDate>Sun, 12 Jun 2016 10:58:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/how-to-get-screenshot-of-scene-by-api/m-p/6379011#M19780</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-12T10:58:38Z</dc:date>
    </item>
  </channel>
</rss>

