[cvs] / ossdk / AsWing / README.txt Repository:
Cosoft CVS

View of /ossdk/AsWing/README.txt

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.1 - (download) (annotate)
Sat Nov 12 16:02:14 2005 UTC (16 months, 1 week ago) by thiswind
Branch: MAIN
CVS Tags: HEAD
�����ύ
========================= Summary ==========================

AsWing is an Open Source Flash ActionScript GUI framework 
and library that let programmer make their flash application
(or RIA) UI easily, its usage is similar to  Java Swing(JFC).
It provides a set of GUI components, we intent to implement 
it in pure object oriented ActionScript 2, and pluggable look 
and feels will be implemented too. Its also provide many Utils
classes.

More and Newest information can be found at:

  http://www.aswing.org
  
========================= Usage ==========================
This framework is like a ActionScript language Swing.
To create a JFrame:
  var frame:JFrame = new JFrame("A JFrame's Title");
To location and resize and show it:
  frame.setBounds(100, 100, 550, 400);
  frame.show();

To and listeners to a component:
it is a little different from java swing.
In java Swing style:
  frame.addWindowListener(yourListener);
In AsWing will be this style:
  frame.addEventListener(yourListener);//this listener maybe has the handler func
  or
  frame.addEventListener(JWindow.ON_WINDOW_CLOSED, yourHandlerFunc, yourHandler);
  
We hope to provide tutorials on how to use the AsWing
framework, now, you can download tutorials and api document at our website.

=================== Development Environment ====================

To compile and build AsWing you need the MTASC compiler.
This compiler is available for free/open-source from:

  http://www.mtasc.org
  
To debug/log you need Flashout Eclipse Plugin.
This plugin is available for free from:

  http://www.potapenko.com/flashout/

And we suggest you edit as files by Eclipse and 
ASDT Plugin, they are free at:

  http://www.eclipse.org
  http://sourceforge.net/projects/aseclipseplugin/

--- Compiling --- 

To compile with AsWing you just need to include the aswing classpath.
There is a tutorial of compile as with Eclipse+ASDT+Flashout+MTASC by
Carlos Rovira:
http://www.actionscript.com/index.php/fw/1/towards-open-source-flash-development

AsWing can be compiled by MTASC(recommended) and MMC(But still with some runtime problem).

=========================== License ===============================

AsWing is licensed under a BSD-style license.The license can be found
in the LICENSE file.

cvs-admin
ViewVC Help
Powered by ViewVC 1.0.0