aswing

Tags :

See here pages with aswing tag :

PageDateDescriptionTags
AsWing2007/02/20 07:59project, aswing, ui, framework, component, actionscript Summary * Homepage : <http://www.aswing.org> * License : BSD 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 tutorials aswing, tutorial * Sepy + AsWing * AsWing + FDT * BorderLayout and JButton * AsWing Custom Icon with JButton * JFrame + GridLayout Tutorial * JFrame JLabel FlowLayout and MCIcon * MessageBox and tooltips * Rating system,
AsWing Custom Icon with JButton aswing, tutorial This tutorial will show you to create your own custom Icon for using it in a JButton component. Our custom icon must implement the org.aswing.Icon interface. Lets take a look at the Icon interface class. interface org.aswing.Icon { /** * Return the icon's width. */ public function getIconWidth () : Number; /** * Return the icon's height. */ public function getIconHeight () : Number; /** * Draw the icon at the specified component's specified location with the graphic…,
AsWing + FDT aswing, tutorial, fdt This tutorial will help you get setup with FDT and ASWing. 1) Download the ASWing source files from the website from the download section. * ASWing * ASWing Mirror 2) Unzip the file to a directory of your choice. 3) Create a new Flash Project by click on the File - > New - > New Flash Project., ,
Sepy + AsWing aswing, tutorial, sepy This tutorial will help you get setup with the SEPY Editor and ASWing. 1) Download the ASWing source files from the website from the download section. * ASWing * ASWing Mirror 2) Unzip the file to a directory of your choice., ,
BorderLayout and JButton aswing, tutorial This tutorial helps you understand the BorderLayout class and the JButton component. We start of by creating an empty class. In my case I am going to name my class as JButtonExample.as . In order for us to create or display a button we need to add it to a container. The JWindow class extends the Container class so we can add a component to the JWindow. In our example we will simply extend our class so that it is a subclass of JWindow. (Note : We will be talking more in depth ab…,
AsWing JFrame aswing, tutorial This tutorial will show you how to use the JFrame component using the GridLayout. Lets start by creating a class, I`ll call mine MyApp.as , which extends JFrame and create our main method and constructor. Then let us create nine JButton instances. For this tutorial we are going to create a simple tic tac toe game layout.,
MessageBox and tooltips aswing, tutorial This tutorial will use the MessageBox tutorial example to show you how to add tooltips to your components. We first set the tooltip for the okBtn instance by simply calling the setToolTipText method. okBtn.setToolTipText("Click Yes \nThis is correct answer.");,
JFrame JLabel FlowLayout and MCIcon aswing, tutorial This tutorial will show you how to use the JFrame , JLabel , the FlowLayout and the MCIcon to create a MessageBox. Lets create our main class MessageBox.as which extends JFrame. We will need a JLabel instance to display the message and two JButton instances for the ok and cancel buttons .We will need to create two JPanel instances one for the JLabel which will display our message and icon and one for the ok and cancel buttons.,
Rating system aswing, tutorial This tutorial will show you how to use the JFrame , JLabel , the BoxLayout and JRadioButton to create a Rating system. Lets create our main class Rating.as which extends JFrame. We will need a JLabel instance to display the message and three JRadioButton instances for different ratings .We will need to create two JPanel instances one for the JLabel which will display our current selection and the other for the radio buttons.,

RSS Feed for aswing tag.