Title:AsWing
Description:The home of AsWing framework.
Keywords:The home of AsWing framework.
Body:
AsWing
Home
Features
Showcase
Downloads
Documents
Labs
Forum
Donation
About Us
AsWing The home of AsWing framework.
AsWing is an Open Source Flash ActionScript GUI framework and library that allows programmers to make their flash application(or RIA) UI easily. Its usage is similar to Java Swing. It provides a set of GUI components, which we intent to implement in pure object oriented ActionScript 2. A pluggable look and feel will be implemented too. It also provides many Util classes. AsWing is BSD licensed.
AsWing A3 is the next/another life with ActionScript 3, components set is almost same to ActionScript 2 time, but capabilities are much more powerful.
You can discuss on our forumn: http://bbs.aswing.org.
Join AsWing team, contact us here.
如果你说中文,可以访问我们的中文站点: http://cn.aswing.org.
Desktop edition of Flipping book application is released
iiley July 26th, 2010
AWSSOFT released their Flipping Book App desktop edition yesterday.
It #8217;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 #8217;s the details of new features. Why not buy a license if you like this application, the price is low, and there #8217;s a discount in this week.
I should say, this is the best application with AsWing i #8217;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.
Announcement , Showcase
Comments (0)
JMultipleSlider and JLabelSlider
iiley July 26th, 2010
It #8217;s super cool to see some one expanded AsWing, here #8217;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
A3 , Showcase
Comments (0)
Web-games, Social-games UI powered by AsWing
iiley May 10th, 2010
I #8217;v added two games to the Showcase page. Well, there #8217;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 #8217;s many other game team are using AsWing too, i know another big web-game, but they don #8217;t want to share the information, that #8217;s sad i can #8217;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 #8217;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 #8217;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
Showcase
Comments (0)
Flipping book announced
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
Announcement , Showcase
Comments (0)
Desktop Flash MiniBuilder is out!
iiley October 30th, 2009
Victor Dramba has released Desktop Flash MiniBuilder (An Flash ActionScript IDE build with ActionScript #038;Java) today, check/install it here:
http://www.victordramba.com/?p=36
Some screenshot:
Tags: minibuilder
Showcase
Comments (1)
Flash MiniBuilder Part III - support AsWing Now!
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!!!
A3 , Showcase
Comments (1)
AsWing 3D experiment
iiley July 13th, 2009
From AWSSOFT #8217;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 #8217;s exciting that FP10 renders text very well in 3D transform. See this rotation_y. It #8217;s almost a realy 3D user interface, currently everything is fine except the Drag function of JFrameTitleBar, maybe the drag() function doesn #8217;t works with 3D transform.
Here #8217;s the source code snip(it #8217;s simple):
br /
AsWingManager.initAsStandard(this);br /
var sprite:Sprite = new Sprite();br /
addChild(sprite);p
p var jf:JFrame = new JFrame(sprite, "Test JFrame");br /
var jlist:JList = new JList();br /
var model:VectorListModel = new VectorListModel();br /
for(var i:int=0; i100; i++){br /
model.append(i + " uitem");br /
}br /
jlist.setModel(model);br /
jf.setContentPane(new JScrollPane(jlist));p
p jf.setSizeWH(300, 160);br /
jf.show();p
p sprite.x = sprite.y = 150;br /
sprite.rotation = -40;br /
A3 , Tutorials
Comments (3)
Flash MiniBuilder: Online AS3 IDE
iiley July 8th, 2009
Maybe it is a old news, many guys already have seen the awesome stuff yesterday #8212; 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 #8217;ve been looking for a component set that would suite my needs better than the bulky flex
one of the problems i couldn #8217;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 #8217;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 #8217;t know. Of course it is main because of the great implement of ScriptArea too.
Tags: Showcase
A3 , Tutorials
Comments (3)
Next #187;
input
Enter your search terms
input
Submit search form
input
input
Web
input
www.aswing.org
input
input
input
input
input
input
Start playing online casino games and win huge prizes.
Categories
A2 (10)
A3 (85)
Announcement (48)
Documents (7)
Showcase (28)
Tutorials (26)
Tags
AIR
AsWingKit
AWSSOFT
Book
bugfix
Calandar
Contribute
diagram
DLL
ext
FastLoad
flash player
FP10
GuiBuilder
haXe
JTable
JTree
minibuilder
new component
NumericStepper
Presentation
release
screenshot
Showcase
skin
svn
swc
TableModel
this6
Tip
TreeGridView
TreeModel
Tutorial
Tutorials
XML
poker online
Links
Blogroll
AsWing CN
AsWing Forum
FlashAs
iiley
MTASC
OSFlash
Supporters
超越EBIBI
RIAMeeting
Text Link
Archives
July 2010 (2)
May 2010 (1)
February 2010 (1)
October 2009 (1)
July 2009 (3)
June 2009 (2)
May 2009 (1)
April 2009 (2)
February 2009 (1)
December 2008 (2)
November 2008 (4)
October 2008 (1)
September 2008 (2)
July 2008 (3)
June 2008 (2)
May 2008 (7)
April 2008 (2)
March 2008 (8)
February 2008 (3)
January 2008 (4)
December 2007 (2)
November 2007 (3)
October 2007 (4)
September 2007 (3)
August 2007 (5)
July 2007 (2)
June 2007 (5)
May 2007 (11)
April 2007 (6)
March 2007 (6)
February 2007 (3)
Feed on RSS
Posts
Comments
Meta
Log in
Valid XHTML
XFN
WordPress
AsWing. copy; 2010 All rights reserved.
WordPress Themes based on a design by NodeThirtyThree
Bad Behavior has blocked 625 access attempts in the last 7 days.