The Space For App Developers

Beyond Plain Old HTML Objects

as3term 2.0.0 released!

with 4 comments

I’m very pleased to announce the release of as3term 2.0.0. For those who don’t know it, as3term is a terminal-like application that lets you compile and execute simple snippets of AS3 code. It was built with Flex/AIR 2.0 and it uses the NativeProcess API to launch the fcsh compiler, which is part of the Flex SDK. You can check out one of my previous post with the screen cast showing it in action.

This release includes several important changes and improvements:

  • AS3 syntax coloring based on AS3TextArea (another open source project that I released recently)
  • Using the fcsh.jar compiler from the Flex SDK instead of mxmlc, which provides an enormous improvement in compilation time.
  • Added window resize gripper
  • Window centering
  • Updated Swiz to version 1.0 RC2

You can download as3term from here. If you have it already installed you just need to run it and it should update itself using the NativeApplicationUpdater.

Written by Piotr Walczyszyn

September 16th, 2010 at 6:42 pm

Posted in News,Releases

Tagged with , ,

4 Responses to 'as3term 2.0.0 released!'

Subscribe to comments with RSS or TrackBack to 'as3term 2.0.0 released!'.

  1. Good to see it’s being improved. Can’t wait for next updates. I’d like to see an option to show compiled swf, for example code would be passed to ENTER_FRAME event listener to play around with some graphic drawing scripts.

  2. Hi. The app crashs when I tried to do some simple mcs:

    import flash.display.MovieClip;
    var mc:MovieClip = new flash.display.MovieClip();
    mc.graphics.lineStyle(0, 0);
    mc.graphics.drawRect(0, 0, 100, 100);
    mc.graphics.endFill();
    this.addChild(mc);

    Thank you.

  3. great update, specially fcsh and resizer. how about full screen + non transparent option? thanks.

    flanture

    20 Oct 10 at 11:01 am

  4. [...] Handy app for compiling AS3 snippets By bishopondevelopment I found a cool little Air app on riaspace.com for compiling and executing simple snippets of AS3 [...]

Leave a Reply