iiley October 21st, 2011
Machine 22 will release a new MMO named Star Corsairs in near future which UI based on AsWing.
It is awesome since the game is made by one-man team.
Here is a quote from the author:
I thought you might be to interested to know that I’m using AsWing in my new MMO Star Corsairs (www.starcorsairs.com) which I will officially release next week. It saved me a lot of time. Building an MMO is already quite some work so being able to use a library such as AsWing was really helpful.
Keep up the great work!
Dave Toulouse
We are glad to see more games using AsWing, it always encourage us and make us decide to targeting games at next AsWing version.


iiley January 12th, 2011
Pingzi(瓶子) has shared his work PalingLAF for us, it is a new LookAndFeel compatible with AsWing 1.5 and 2.0. Here is the screenshot:
Download it here:
http://code.google.com/p/aswing/downloads/detail?name=PalingLAF.rar&can=2&q=#makechanges
iiley July 26th, 2010
It’s super cool to see some one expanded AsWing, here’s a very great additional components:

I remember i have tried to implement JMultipleSlider, it was a hard work, so i finally gave up, sephiroth.it did a great work.
You can see more info at:
http://www.sephiroth.it/weblog/archives/2010/07/aswing_modifications.php
iiley July 22nd, 2009
Last day, Victor announced Flash MiniBuilder Part III, now it support AsWing Library. It is a big achieve for a real code IDE, i guess more libraries will be supported later(or it will allow you to add any libraries).

You are doing awesome work Victor, keep it!!!
iiley July 13th, 2009
From AWSSOFT’s Droower comments, i saw Srdjan has done some transform of AsWing components. There is a Rotated/Skewed text with scrollbar, so i guess maybe we can made 3D effects for user interface by just AsWing components, with some test, i first just rotate a JList with JFrame, sadly the text will not be shown when rotated(this should be a well-known flash feature), see this rotation. I guess Srdjan cached his text into a Bitmap, so his Rotated/Skewed text displays well.
Then, i tested the new properties from FP10, rotationX/Y/Z, it’s exciting that FP10 renders text very well in 3D transform. See this rotation_y. It’s almost a realy 3D user interface, currently everything is fine except the Drag function of JFrameTitleBar, maybe the drag() function doesn’t works with 3D transform.

Here’s the source code snip(it’s simple):
AsWingManager.initAsStandard(this);
var sprite:Sprite = new Sprite();
addChild(sprite);
var jf:JFrame = new JFrame(sprite, "Test JFrame");
var jlist:JList = new JList();
var model:VectorListModel = new VectorListModel();
for(var i:int=0; i<100; i++){
model.append(i + " uitem");
}
jlist.setModel(model);
jf.setContentPane(new JScrollPane(jlist));
jf.setSizeWH(300, 160);
jf.show();
sprite.x = sprite.y = 150;
sprite.rotation = -40;
iiley July 8th, 2009
Maybe it is a old news, many guys already have seen the awesome stuff yesterday — Code and Edit and Compile then Run your ActionScript programme online. It is not a simple text editor and call backend compiler, it is powerful just like a real IDE! Great works, Victor!!

Flash MiniBuilder
The reason i post it here because it use AsWing, although it just used scrollbars buttons and combobox, not a heavy use of AsWing, but maybe we can never know the inside if the author does not tell us:
for quite a while, i’ve been looking for a component set that would suite my needs better than the bulky flex
one of the problems i couldn’t get flex to solve is editing big texts (like 6000 lines), where it becames very slow.
i tried to build my own text area and failed under flex, it’s still slow anything i do
but i managed to build a very fast one using aswing and viewportable interface.
the purpose of this component is editing actionscript code, and some class files are quite long
using aswing and viewportable, this component can manage pasting 6000 lines of code instantly and then
scroll with no delay at all. of course, it renders only the visible fragment of text.
This is not a defence or compares, it just says that AsWing can handle that flexible i even don’t know. Of course it is main because of the great implement of ScriptArea too.
Tags: Showcase
iiley June 4th, 2009
These days, AWSSOFT announced their flagship product — Droower.
Droower is a web application for Flash web site editing, web site creation, vector graphic editing, printing, and much more …

See more infomation visit their home www.awssoft.com
Tags: Showcase
iiley May 21st, 2009
While however 2.0 is not published yet, still working in svn. But Postprint changed the AsWing 1.5 to the svn 2.0 version, everything works well, and the author say the UI looks great.
It is a good news for use.
Here’s the screenshot:

You can try this application here:
http://www.postprint.com.cn/core/diy/flash
Tags: Showcase