Is it possible to create a 'command line' swf? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T20:52:50Zhttp://stackoverflow.com/feeds/question/1056056http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1056056/is-it-possible-to-create-a-command-line-swf4Is it possible to create a 'command line' swf?Pete Hodgson2009-06-28T23:41:08Z2009-07-03T15:54:28Z
<p>I'd like to be able to write a .swf file that is runnable as a command line app. In other words, I would be able to create actionscript classes which can interact with stdin and stdout, and could then execute that .swf directly in the command line.</p>
<p>I suspect that this isn't really possible. Can anyone confirm that?</p>
<p><strong>EDIT:</strong>
A couple of the answers pointed out that using Flash for command line work probably isn't the best choice. I wholeheartedly agree in most situations. The reason I am asking about this is because I want to do some AS3 code generation, and reflecting on AS3 classes within the runtime would be easier than parsing the code or walking the intermediary XML that asdoc produces. I'm doing the XML approach now in Ruby, but would love to have a cleaner solution!</p>
http://stackoverflow.com/questions/1056056/is-it-possible-to-create-a-command-line-swf/1056060#10560604Answer by zenazn for Is it possible to create a 'command line' swf?zenazn2009-06-28T23:45:10Z2009-06-28T23:45:10Z<p>Nope--not possible. The best you can do is a standalone app (which can be made in Flash or with a Projector version of flash player, available from the Adobe website).</p>
<p>And why would you want to--Flash is awesome because of the great GUI capabilities. There are plenty of other programming languages that are much better suited for the command line (Python or Ruby or, god forbid, even Perl)</p>
http://stackoverflow.com/questions/1056056/is-it-possible-to-create-a-command-line-swf/1056078#10560784Answer by Mark Rushakoff for Is it possible to create a 'command line' swf?Mark Rushakoff2009-06-28T23:54:51Z2009-06-28T23:54:51Z<p>Apparently there is the <a href="http://www.mozilla.org/projects/tamarin/" rel="nofollow">Tamarin</a> project which aims to create an open source implementation of AS3. <a href="https://developer.mozilla.org/en/Tamarin%5FBuild%5FDocumentation#Compiling%5Fand%5Frunning%5Fapplications" rel="nofollow">This page</a> gives a little detail of compiling an AS3 script and running it from a command line.</p>
<p>I'm not getting a good idea of how stable Tamarin is, but it might be your best bet for now. On the other hand, I have to strongly agree with @zenazn that you would be better off long-term learning a language more designed for general purposes, but if <em>really</em> want to just use Actionscript, don't let anyone stop you :)</p>
http://stackoverflow.com/questions/1056056/is-it-possible-to-create-a-command-line-swf/1056446#10564461Answer by fenomas for Is it possible to create a 'command line' swf?fenomas2009-06-29T03:25:30Z2009-06-29T03:25:30Z<p>There's no way to do this with a bare SWF right now.</p>
<p>However, you can publish your Flash content as an AIR app. The app can then be invoked from the command line, and you can collect the arguments from the <a href="http://help.adobe.com/en%5FUS/AS3LCR/Flash%5F10.0/flash/events/InvokeEvent.html#arguments" rel="nofollow">arguments</a> property of an <a href="http://help.adobe.com/en%5FUS/AS3LCR/Flash%5F10.0/flash/events/InvokeEvent.html" rel="nofollow">InvokeEvent</a>. The basic idea looks like this:</p>
<pre><code>NativeApplication.nativeApplication.addEventListener(
InvokeEvent.INVOKE, onInvoke );
// ...
function onInvoke( e:InvokeEvent ) {
var numArguments:int = e.arguments.length;
// ...
}
</code></pre>
<p>Note, however, that this is essentially a one-way street. You can grab the command-line arguments, but Flash still doesn't grok the idea of stdin and stdout.</p>
http://stackoverflow.com/questions/1056056/is-it-possible-to-create-a-command-line-swf/1059359#10593590Answer by Hippo for Is it possible to create a 'command line' swf?Hippo2009-06-29T17:00:48Z2009-06-29T17:00:48Z<p>You could have a look at <a href="http://www.haxe.org" rel="nofollow">haXe</a> with is very similar to AS3 and could compile <a href="http://www.nekovm.org" rel="nofollow">NekoVM</a> Bytecode, which could be run on the command line.</p>
<p>Also interesting could be <a href="http://hippohx.com/" rel="nofollow">HippoHX</a>, it is a kind of framework to create desktop applications out of flash movies. (similar to AIR, but with full access to the system.)</p>
http://stackoverflow.com/questions/1056056/is-it-possible-to-create-a-command-line-swf/1077038#10770380Answer by PiPeep for Is it possible to create a 'command line' swf?PiPeep2009-07-02T22:44:36Z2009-07-02T22:44:36Z<p>If you are really that inclined, you could open a local socket, and then have a helper program, running from the command-line communicate with the open SWF.</p>
<p>This might be a good time to learn another language. May I suggest Java?</p>
http://stackoverflow.com/questions/1056056/is-it-possible-to-create-a-command-line-swf/1079937#10799371Answer by RickDT for Is it possible to create a 'command line' swf?RickDT2009-07-03T15:54:28Z2009-07-03T15:54:28Z<p>Actually, there is a project that makes it possible. RedTamarin is a project that extends AS3 (technically, the Tamarin project which is the Adobe/Mozilla ECMAScript project) to have access to low-level libraries (ie. POSIX). In its current state it appears to be good for stuff like shell-scripting-like programs which is what it sounds like what you're looking for.</p>
<p>Give it a try:</p>
<p><a href="http://code.google.com/p/redtamarin/" rel="nofollow">http://code.google.com/p/redtamarin/</a></p>