Create an EXE from a SWF using Flex 3 without requiring AIR? - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T20:56:49Zhttp://stackoverflow.com/feeds/question/23373http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/23373/create-an-exe-from-a-swf-using-flex-3-without-requiring-air2Create an EXE from a SWF using Flex 3 without requiring AIR?Herms2008-08-22T20:18:12Z2008-08-23T07:55:39Z
<p>I have a simple little test app written in Flex 3 (MXML and some AS3). I can compile it to a SWF just fine, but I'd like to make it into an EXE so I can give it to a couple of my coworkers who might find it useful.</p>
<p>With Flash 8, I could just target an EXE instead of a SWF and it would wrap the SWF in a projector, and everything worked fine. Is there an equivalent to that using the Flex 3 SDK that doesn't end up requiring AIR?</p>
<p>Note: I don't have Flex Builder, I'm just using the free Flex 3 SDK.</p>
http://stackoverflow.com/questions/23373/create-an-exe-from-a-swf-using-flex-3-without-requiring-air/23406#2340611Answer by imaginaryboy for Create an EXE from a SWF using Flex 3 without requiring AIR?imaginaryboy2008-08-22T20:31:22Z2008-08-22T20:31:22Z<p>In your Flex SDK folders you should see a 'runtimes\player\win\FlashPlayer.exe' which is a stand alone Flash player. Open your SWF with that and you'll see a 'Create Projector...' menu item in the File menu which will create the stand-alone EXE.</p>
http://stackoverflow.com/questions/23373/create-an-exe-from-a-swf-using-flex-3-without-requiring-air/23425#234251Answer by Brian Warshaw for Create an EXE from a SWF using Flex 3 without requiring AIR?Brian Warshaw2008-08-22T20:38:23Z2008-08-22T20:38:23Z<p>imaginaryboy gets it right, I believe. Btw, since you don't have Flex Builder, you might look into the free and open source FlashDevelop if you're on Windows. It's my favorite environment for developing anything Actionscript (the Flex support is pretty great, too).</p>
http://stackoverflow.com/questions/23373/create-an-exe-from-a-swf-using-flex-3-without-requiring-air/23444#234440Answer by Herms for Create an EXE from a SWF using Flex 3 without requiring AIR?Herms2008-08-22T20:47:08Z2008-08-22T20:47:08Z<p>@Brian:</p>
<p>Oh, I wrote the app using FlashDevelop. I've been using it for a while now (The Flash 8 "IDE" was horrible and painful to use, so I very quickly found FD when I started having to do work in Flash). It's actually one of the better IDEs I've used for any language.</p>
<p>@imaginaryboy:</p>
<p>Wow, that was so easy I feel dumb for not finding it myself! Worked perfectly. Thanks!</p>
http://stackoverflow.com/questions/23373/create-an-exe-from-a-swf-using-flex-3-without-requiring-air/24068#240681Answer by Theo for Create an EXE from a SWF using Flex 3 without requiring AIR?Theo2008-08-23T07:55:39Z2008-08-23T07:55:39Z<p>There's also <a href="http://www.multidmedia.com/software/zinc/" rel="nofollow">Zinc</a> that also provides API:s for accessing the filesystem and other thinks that AIR does, but less restrictive.</p>