I work where our network is not and cannot be connected to the Internet. We have hundreds of Flash AS3 files that need to be converted to HTML5. We also cannot move the files off of the network to convert them and then return them to the network. Is it possible to download an executable of Google's Swiffy for use on my closed network?
Asked
Active
Viewed 1,138 times
0
-
1There is a server-side component (source currently not public).... refer to their dev site https://developers.google.com/swiffy/ – SushiHangover Dec 09 '15 at 00:37
-
1what is the programming problem here? – Enamul Hassan Dec 09 '15 at 00:42
-
1and ultimately try to find another company to work for .... – BotMaster Dec 09 '15 at 04:44
2 Answers
0
You can convert swf to Swiffy bytecode only online. But use Swiffy bytecode is possible without online mode. For this you need download runtime.js

user5555232
- 51
- 8
0
Converting FLAs to Swiffy...
Google has a Swiffy extension for Flash CS 5 or CS 6 (but not Creative Cloud).
You can get it here: https://developers.google.com/swiffy/convert/flash-extension
Install it in Flash CS 5 or 6. Then, instead of exporting your FLA as SWF, you use Commands > Export as HTML5 (Swiffy)
to export an HTML file.
Rendering the Swiffy HTML file offline...
Download the latest Swiffy renderer from here: https://www.gstatic.com/swiffy/v7.4/runtime.js
In the Swiffy HTML file you exported from Flash, there'll be a link to:
<script type="text/javascript" src="https://www.gstatic.com/swiffy/v7.4/runtime.js"></script>
Change that link to your local runtime.js file.

plugincontainer
- 630
- 2
- 9
- 28