<?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: Javascript script changes not being picked up, need to restart fusion in Fusion API and Scripts Forum</title>
    <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5500840#M21590</link>
    <description>&lt;P&gt;Yes. &amp;nbsp;I should have known better. &amp;nbsp;The cache is held in memory, so deleting the persisted cache would only affect behavior after a restart of Fusion.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the html file is not being re-read, then we don't have much of an option to work around this, and will have to wait for a fix in WebKit or a workaround in Fusion to dump the cache or modify cache control for these script host browser instances. &amp;nbsp;But I wonder if a meta tag in the html would disable the caching.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&amp;lt;META HTTP-EQUIV="EXPIRES" CONTENT="0"&amp;gt;

or

&amp;lt;META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE"&amp;gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(Forry for not trying these suggestions. &amp;nbsp;I'm not the developer working on this and don't have easy access to an environment that reproduces this.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kris&lt;/P&gt;</description>
    <pubDate>Mon, 09 Feb 2015 21:15:19 GMT</pubDate>
    <dc:creator>KrisKaplan</dc:creator>
    <dc:date>2015-02-09T21:15:19Z</dc:date>
    <item>
      <title>Javascript script changes not being picked up, need to restart fusion</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5489659#M21583</link>
      <description>&lt;P&gt;If I create a script, make a change, then run it, the change isn't being picked up. &amp;nbsp;Do you need to tell Fusion 360 that something changed?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would swear that this worked a few days ago, before I installed OSX 10.10.2, but it's clearly not picking up changes now.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's easily repro'ed by just creating default js script and changing the text that's displayed in the example dialog box.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Screencast at&amp;nbsp;&lt;A target="_blank" href="https://screencast.autodesk.com/main/details/ae22907c-b3c7-45b8-bc85-4d1ca8622703"&gt;https://screencast.autodesk.com/main/details/ae22907c-b3c7-45b8-bc85-4d1ca8622703&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Fusion 360 2.0.1407.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jan 2015 16:51:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5489659#M21583</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-30T16:51:14Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript script changes not being picked up, need to restart fusion</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5489787#M21584</link>
      <description>&lt;P&gt;We are using the platform's webkit browser component to host these API scripts. &amp;nbsp;And it does appear that at least with that&amp;nbsp;version&amp;nbsp;it is not considering the file's timestamp when loading a file URN in its cache control. &amp;nbsp;I've filed an issue to see if we can clear the cache for these site files before hosting an API script.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But in the meantime, there is a&amp;nbsp;fairly common trick to force the reload of files from html, and that is to add (or change the value of) an unused querystring argument in the 'src' URL. &amp;nbsp;For example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&amp;lt;script src="myscript.js?1"/&amp;gt;&lt;/PRE&gt;
&lt;P&gt;If you edit the script, change the '?1' to '?2' to force the script to be loaded new. &amp;nbsp;(And of course, rev that number on every new edit as&amp;nbsp;necessary.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kris&lt;/P&gt;</description>
      <pubDate>Fri, 30 Jan 2015 18:16:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5489787#M21584</guid>
      <dc:creator>KrisKaplan</dc:creator>
      <dc:date>2015-01-30T18:16:22Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript script changes not being picked up, need to restart fusion</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5490311#M21585</link>
      <description />
      <pubDate>Sat, 31 Jan 2015 06:10:27 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5490311#M21585</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-31T06:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript script changes not being picked up, need to restart fusion</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5490323#M21586</link>
      <description>&lt;P&gt;Normally when you're doing that kind of update-the-query-string-to-get-around-a-cache, you have a server that can update it for you. &amp;nbsp;Trying to do it manually sounds really painful.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can get something similar with shell commands:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN&gt;fswatch -r -o /Users/james/workspace/jsexperiment | parallel -L0 -j1 sh -x update.sh&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN&gt;And in update.sh, I put a sed command that updates a query string starting with qdate:&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN&gt;sed -itmp -e "s/qdate=[0-9]*/qdate=`date +%s`/" "/Users/james/Library/Application Support/Autodesk/Autodesk Fusion 360/API/Scripts/buildTSlot/buildTSlot.html"&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;So the entries end up getting changed, every time anything in&lt;SPAN&gt;/Users/james/workspace/jsexperiment changes,&lt;/SPAN&gt;&amp;nbsp;to something like&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&amp;lt;script charset="UTF-8" src="/Users/james/workspace/jsexperiment/html/buildTSlot.js?qdate=1422688753" type="text/javascript"&amp;gt;&amp;lt;/script&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;&lt;SPAN&gt;(Nothing special about "qdate", it's just the first thing my fingers typed)&lt;/SPAN&gt;&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 31 Jan 2015 07:27:03 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5490323#M21586</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-01-31T07:27:03Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript script changes not being picked up, need to restart fusion</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5499582#M21587</link>
      <description>It's turning out to not be that simple, unfortunately. The problem is that source maps reference file names of actual code files without these parameters, and those files aren't getting reloaded either. It's not so trivial to go around the source maps adding parameters to those file urls.</description>
      <pubDate>Mon, 09 Feb 2015 02:14:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5499582#M21587</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-09T02:14:29Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript script changes not being picked up, need to restart fusion</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5500444#M21588</link>
      <description>&lt;P&gt;This appears to be a 'change' in the WebKit behavior in 10.10.2, and similar behavior changes can be seen on that version with Safari 8.0.3. &amp;nbsp;At this time we are still looking at what our options are, or if this is a defect in WebKit.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Another option is to completely flush the browser cache between edits to force the browser to reload all files. &amp;nbsp;You can do this by deleting the '$TMPDIR/Autodesk/BrowserCache' folder. &amp;nbsp;FYI: This same browser cache folder is used for all browser hosted content in Fusion, such as the data panel, so clearing it will cause a complete reload of all of that content as well (but I wouldn't expect this to be much of a concern).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kris&lt;/P&gt;</description>
      <pubDate>Mon, 09 Feb 2015 17:22:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5500444#M21588</guid>
      <dc:creator>KrisKaplan</dc:creator>
      <dc:date>2015-02-09T17:22:06Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript script changes not being picked up, need to restart fusion</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5500721#M21589</link>
      <description>&lt;P&gt;Removing that directory doesn't cause a reload for me. &amp;nbsp;Once it's in memory, it looks like you're never even trying to load the files again. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's not that it's looking at the cache and deciding that the version it has is fresh - it's that it's never looking at all. &amp;nbsp;You can see this by serving the scripts off an actual html server and watching the logs; if you edit the script tags inside the html file to add a different parameter, you won't see a request for the URL with the new parameter. &amp;nbsp;You'll see it with the old one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Interestingly, though, if the script is served by an http server, and it has a sourceMappingURL defined, you will see a new GET request for that map file when you run the script again. &amp;nbsp;It won't request the script itself, just the map file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Feb 2015 20:01:17 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5500721#M21589</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-09T20:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript script changes not being picked up, need to restart fusion</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5500840#M21590</link>
      <description>&lt;P&gt;Yes. &amp;nbsp;I should have known better. &amp;nbsp;The cache is held in memory, so deleting the persisted cache would only affect behavior after a restart of Fusion.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If the html file is not being re-read, then we don't have much of an option to work around this, and will have to wait for a fix in WebKit or a workaround in Fusion to dump the cache or modify cache control for these script host browser instances. &amp;nbsp;But I wonder if a meta tag in the html would disable the caching.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&amp;lt;META HTTP-EQUIV="EXPIRES" CONTENT="0"&amp;gt;

or

&amp;lt;META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE"&amp;gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;(Forry for not trying these suggestions. &amp;nbsp;I'm not the developer working on this and don't have easy access to an environment that reproduces this.)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kris&lt;/P&gt;</description>
      <pubDate>Mon, 09 Feb 2015 21:15:19 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5500840#M21590</guid>
      <dc:creator>KrisKaplan</dc:creator>
      <dc:date>2015-02-09T21:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript script changes not being picked up, need to restart fusion</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5500979#M21591</link>
      <description>&lt;P&gt;No, tried both of those.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also tried just loading the script dynamically (open the file and eval the contents), but eval() of a string containing a lot of javascript is too slow to use (I let it run for half an hour or so and gave up).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Unfortunately, it looks like scripting in the current release is dead. &amp;nbsp;I'm really hoping there's a new release that fixes this quickly; loosing this feature is painful.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Feb 2015 22:51:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5500979#M21591</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-09T22:51:21Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript script changes not being picked up, need to restart fusion</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5522684#M21592</link>
      <description>&lt;P&gt;the workaround I use for now is like this&lt;BR /&gt;1) rename the original script in "Scripts Manager" (the old one is no longer visible)&lt;BR /&gt;2) do the changes the way you wishes&lt;BR /&gt;3) go back to the "Scripts Manager" and run your new version&lt;/P&gt;</description>
      <pubDate>Fri, 27 Feb 2015 12:24:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5522684#M21592</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-27T12:24:42Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript script changes not being picked up, need to restart fusion</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5523231#M21593</link>
      <description>&lt;P&gt;Even on Windows (where it doesn't have this particular bug), I gave up. &amp;nbsp;Fusion 360 crashes while using scripts (even the trivial stuff I've been doing) so often I just went on to other projects, hoping the next release will&amp;nbsp;be usable.&lt;/P&gt;</description>
      <pubDate>Fri, 27 Feb 2015 18:38:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5523231#M21593</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-02-27T18:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript script changes not being picked up, need to restart fusion</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5523702#M21594</link>
      <description>&lt;P&gt;I have tried your solution on my machine. It works fine. Maybe you can try it again. The Script in my machine:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;testCache.html:&lt;/P&gt;&lt;P&gt;&amp;lt;!DOCTYPE html&amp;gt;&amp;lt;html&amp;gt;&lt;BR /&gt;&amp;lt;head&amp;gt;&lt;BR /&gt;&amp;lt;META http-equiv=Pragma content=no-cache&amp;gt;&lt;BR /&gt;&amp;lt;META http-equiv=Cache-Control content=no-cache&amp;gt;&lt;BR /&gt;&amp;lt;META http-equiv=Expires content=0&amp;gt;&lt;BR /&gt;&amp;lt;script type="text/javascript" charset="UTF-8" src="testCache.js?qdate=1425090997"&amp;gt;&amp;lt;/script&amp;gt;&lt;BR /&gt;&amp;lt;/head&amp;gt;&lt;BR /&gt;&amp;lt;body&amp;gt;&amp;lt;/body&amp;gt;&amp;lt;/html&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;update.sh:&lt;/P&gt;&lt;P&gt;sed -itmp -e "s/qdate=[0-9]*/qdate=`date +%s`/" /Users/api/Library/Application\ Support/Autodesk/Autodesk\ Fusion\ 360/API/Scripts/testCache/testCache.html&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;shell command:&lt;/P&gt;&lt;P&gt;fswatch -r -o /Users/api/Library/Application\ Support/Autodesk/Autodesk\ Fusion\ 360/API/Scripts/testCache/testCache.js | parallel -L0 -j1 sh -x update.sh&lt;/P&gt;</description>
      <pubDate>Sat, 28 Feb 2015 02:55:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5523702#M21594</guid>
      <dc:creator>zhijie.li</dc:creator>
      <dc:date>2015-02-28T02:55:21Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript script changes not being picked up, need to restart fusion</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5562682#M21595</link>
      <description>&lt;P&gt;So what's the status of scripting? &amp;nbsp;I went back to playing with Fusion today, and it still has the terrible behavior, weeks after this was reported and after a couple updates. &amp;nbsp;Is it just me? &amp;nbsp;Should I reinstall, or do something else?&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>Mon, 30 Mar 2015 00:09:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5562682#M21595</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-30T00:09:55Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript script changes not being picked up, need to restart fusion</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5563747#M21596</link>
      <description>&lt;P&gt;No. &amp;nbsp;It is not just you. &amp;nbsp;We have not been able to identify a workaround to this WebKit local file caching regression on our side that affects Mac 10.10.2 and later (and the equivalent regression in Safari). &amp;nbsp;We have a bug report filed with Apple, but so far have not heard any timeline for resolution or any possible workaround on our side. &amp;nbsp;At this time, we only have the workarounds mentioned previously in this thread. &amp;nbsp;Sorry for the inconvenience.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kris&lt;/P&gt;</description>
      <pubDate>Mon, 30 Mar 2015 17:39:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5563747#M21596</guid>
      <dc:creator>KrisKaplan</dc:creator>
      <dc:date>2015-03-30T17:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript script changes not being picked up, need to restart fusion</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5570755#M21597</link>
      <description>&lt;P&gt;I'd feel bad about that, but a) I've got a Windows machine lying around that I can experiment on, and b) scripts crash&amp;nbsp;so often in Windows that you end up restarting Fusion on every run of a script anyway. &amp;nbsp;Platform parity the hard way :-).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 04 Apr 2015 06:01:28 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5570755#M21597</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-04-04T06:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript script changes not being picked up, need to restart fusion</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5641858#M21598</link>
      <description>&lt;P&gt;Has Autodesk decided to end support for scripts on Macs?&amp;nbsp;&amp;nbsp;I'm really suprised you've let this bug linger for months without a fix. &amp;nbsp;(And no, waiting for Apple isn't a reasonable decision.)&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2015 15:07:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5641858#M21598</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-19T15:07:34Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript script changes not being picked up, need to restart fusion</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5641963#M21599</link>
      <description>&lt;P&gt;Definitely not. &amp;nbsp;This issue has been assigned the highest priority. &amp;nbsp;We have identified this as a regression in support with Apple's WebView, and escalated priority support with Apple. &amp;nbsp;Unfortunately, so far the response has officially been&amp;nbsp;'there is no workaround for this issue at this time'.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have explored several workarounds on our side (e.g. JS injection, or attempting various edits of the tags in scripts automatically before running), but none have been robust or side effect free to not be worse than the symptom. &amp;nbsp;We haven't, and won't stop considering alternatives, but so far the 'right' solution appears to be that we need this regression fixed by Apple, and we will keep up the pressure there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kris&lt;/P&gt;</description>
      <pubDate>Tue, 19 May 2015 15:54:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5641963#M21599</guid>
      <dc:creator>KrisKaplan</dc:creator>
      <dc:date>2015-05-19T15:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript script changes not being picked up, need to restart fusion</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5651985#M21600</link>
      <description>&lt;P&gt;(Didn't mean to submit this - wasn't done, and I don't see a 'remove post' anywhere...)&lt;/P&gt;</description>
      <pubDate>Tue, 26 May 2015 15:25:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5651985#M21600</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-05-26T15:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript script changes not being picked up, need to restart fusion</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5830120#M21601</link>
      <description>&lt;P&gt;So I just tried this again, and it's still not fixed. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Presumably Autodesk now realizes that Apple does not consider this to be a bug, right? &amp;nbsp;And you have to fix this yourselves?&lt;/P&gt;</description>
      <pubDate>Wed, 23 Sep 2015 18:24:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5830120#M21601</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-09-23T18:24:09Z</dc:date>
    </item>
    <item>
      <title>Re: Javascript script changes not being picked up, need to restart fusion</title>
      <link>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5830257#M21602</link>
      <description>&lt;P&gt;Unfortunately, the situation hasn't changed yet. &amp;nbsp;Apple has accepted and confirmed that this is a bug. &amp;nbsp;We have an open report case with them, but still no update (I'll make sure we request another update). &amp;nbsp;This is a regression in the WebKit implementation around local file caching, and as confirmed by Apple, there is no known workaround on the client side for the problem, so we cannot truly fix this ourselves and the workarounds we explored had other unpleasant side effects / risks.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Kris&lt;/P&gt;</description>
      <pubDate>Wed, 23 Sep 2015 20:01:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-api-and-scripts-forum/javascript-script-changes-not-being-picked-up-need-to-restart/m-p/5830257#M21602</guid>
      <dc:creator>KrisKaplan</dc:creator>
      <dc:date>2015-09-23T20:01:56Z</dc:date>
    </item>
  </channel>
</rss>

