iiley July 26th, 2010
AWSSOFT released their Flipping Book App desktop edition yesterday.

It’s a application that let your to create, edit and publish a flipping book.

Version 2.9.0 Desktop edition offer user friendly features such as:
- Publish for desktop
- Welcome screen
- Favorites and Recent projects
- Create desktop shortcut
Click here to see what’s the details of new features. Why not buy a license if you like this application, the price is low, and there’s a discount in this week.
I should say, this is the best application with AsWing i’v ever see, the AsWing 2.0 default LAF looks nice on the well layouted applications. I hope i can pick a time soon to release the AsWing 2.0.
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 May 10th, 2010
I’v added two games to the Showcase page. Well, there’s so many web games and social games are using AsWing, but we do not know. Today, the developers of these games contacted me, they are using AsWing for their products for a long time, but never announce or told us. I guess there’s many other game team are using AsWing too, i know another big web-game, but they don’t want to share the information, that’s sad i can’t tell their title.
What i want to say, AsWing will have a new plan in near future, please come back to see any informations updates, i’ll do some posts when we have something ensured, anyway if you have any thoughts, cooperation plans with AsWing, feel free to contact me(Email: iiley.chen at gmail.com).
However, there’s the two, thanks them for let me show the titles here.
Ministry of War

A successful web-game in Chinese.
Area: China.
Developer: Snail Games.
Time: 2010.5
Happy Kungfu school

A successful Social-Game in Chinese, already published at serveral platform such as RenRen.com(http://apps.renren.com/hpwuguan), Minik(http://www.minik.tw/userapp.php?id=401), and 4399(http://my.4399.com/userapp.php?id=100123)
Area: China.
Developer: Source Point Technologies Co.LTD.
Time: 2010.5
iiley February 4th, 2010

AWSSOFT announced their Flipping Book application.
Flipping book application offer a set of powerful features such as:
- Full control over a RSS feed.
- PDF file import - create Flipping book from PDF file.
- Integration into any website, including Flash and most popular CMS like Joomla, Wordpress, etc.
- Add or edit existing flipping book in a real time, using one click Publish button.
- Easy to use
- Powerful configuration options
As all other AWSSOFT products, this application is built using AsWing 2.0 to.
Tags: AWSSOFT, Showcase
iiley October 30th, 2009
Victor Dramba has released Desktop Flash MiniBuilder (An Flash ActionScript IDE build with ActionScript&Java) today, check/install it here:
http://www.victordramba.com/?p=36
Some screenshot:


Tags: minibuilder
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