See here pages with tutorial tag :
| Page | Date | User | Description | Discussion | Tags |
|---|---|---|---|---|---|
| ASDT Logging | 2007/07/08 13:20 | asdt, tutorial, logging NOTE : This information is very old and only relevant if you are using ASDT 0.0.8build5. If you are using ASDT 0.0.9 then please head over to the ASDT Wiki for more recent information. This is a quick tutorial to get you up and running with the ASDT Logger. If you need more detailed instructions about installing any particular component and getting it setup please head over to the tutorials page. | 11 Comments | asdt, tutorial, logging | |
| AsWing + FDT | 2007/02/20 11:12 | 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. | aswing, tutorial, fdt | ||
| AsWing Custom Icon with JButton | 2007/02/20 11:15 | 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 graphi… | aswing, tutorial | ||
| AsWing JFrame | 2007/02/20 11:16 | 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. | aswing, tutorial | ||
| AsWing tutorials | 2007/02/20 11:09 | aswing, tutorial * How to use ASWing with the SEPY and MTASC * How to use ASWing with the FDT and MTASC * JButton + BorderLayout Tutorial * Create an custom icon and JButton alignment * JFrame + GridLayout Tutorial * MessageBox (JFrame + FlowLayout +JLabel+MCIcon) * MessageBox (Adding the JToolTip Component) * Rating Application (JFrame + BoxLayout + JLabel + JRadioButton) | aswing, tutorial | ||
| BorderLayout and JButton | 2007/02/20 11:13 | 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 a… | aswing, tutorial | ||
| Calling a JavaScript function from ActionScript | 2007/12/12 20:52 | flashjs, tutorial, javascript Again, make sure all four of the required JavaScript files are included in the HTML page that contains the JavaScript function you want to invoke. <script type="text/javascript" src="Exception.js"></script> <script type="text/javascript" src="FlashTag.js"></script> <script type="text/javascript" src="FlashSerializer.js"></script> <script type="text/javascript" src="FlashProxy.js"></script> | flashjs, tutorial, javascript | ||
| Calling an ActionScript function from JavaScript | 2007/10/24 06:48 | flashjs, tutorial, javascript To call an ActionScript function from JavaScript, make sure the four required JavaScript files are included in your HTML page like this: <script type="text/javascript" src="/ci/jsflash/JavaScriptFlashGateway.js"></script> | flashjs, tutorial, javascript | ||
| Eclipse view quick start guide | 2007/02/20 11:28 | eclipse, tutorial Martin posted this on the mailing list, I thought it was a good intro so have added it to the list - Luke Right, heres the slightly more detailed steps towards getting a custom swf view : * Install the Plug-In development environment (PDE) if you need to. * Read the docs. | eclipse, tutorial | ||
| Getting Return Values from Function Calls | 2007/02/21 03:33 | flashjs, tutorial, javascript This page shows a simple example of how to get return values from JavaScript when calling a JavaScript function from Flash. The same technique works when getting return values from Flash when calling a Flash function from JavaScript, but you just reverse the function order. | flashjs, tutorial, javascript | ||
| JFrame JLabel FlowLayout and MCIcon | 2007/02/20 11:18 | 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. | aswing, tutorial | ||
| MessageBox and tooltips | 2007/02/20 11:19 | 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."); | aswing, tutorial | ||
| Open Source Flash Revolution Notes | 2007/02/16 12:41 | tutorial Here are links to the OS tools I talked about in my presentation. These can be used by themselves, in conjunction with either the Flash IDE or Flex or with swfmill to give you a robust development environment for creating n-tier applications for the Flash Platform. | tutorial | ||
| Rating system | 2007/02/20 11:21 | 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. | aswing, tutorial | ||
| Receiving a function call from Flash within JavaScript | 2007/02/21 03:31 | flashjs, tutorial, javascript You don't have to do anything special in your JavaScript code in order to receive function calls from Flash. As long as the required JavaScript files are included in the page, JavaScript functions can be invoked from Flash with any number of arguments. | flashjs, tutorial, javascript | ||
| Receiving a function call from JavaScript within Flash | 2007/02/21 03:32 | flashjs, tutorial, javascript In order to allow JavaScript to call functions within your Flash content, you need to create an instance of the JavaScriptProxy class and specify the object that functions will be proxied to. import com.macromedia.javascript.JavaScriptProxy; var proxy:JavaScriptProxy = new JavaScriptProxy(_root.lcId, this); | flashjs, tutorial, javascript | ||
| Retrieving JavaScript Browser Info from ActionScript | 2007/02/21 03:33 | flashjs, tutorial, javascript The example below shows how to retrieve JavaScript Browser info from ActionScript. ActionScript (browser_info.swf) import com.macromedia.javascript.*; var proxy:JavaScriptProxy = new JavaScriptProxy(_root.lcId, this); function getBrowserInfo():Void { proxy.call("getBrowserInfo"); } function getBrowserInfoReturn(browser:Object):Void { //can get more info from System.capabilities for(var x:String in browser) { trace(x + " : " + browser[x]); } } getBr… | flashjs, tutorial, javascript | ||
| Sepy + AsWing | 2007/02/20 11:12 | 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. | aswing, tutorial, sepy | ||
| Tutorials | 2007/10/24 08:50 | flashjs, tutorial This page lists tutorials about how to use the Flash / JavaScript Integration Kit * Using the Flash / JavaScript Integration Kit - Community MX, with example code. * Integrating Flash with HTML, JavaScript and Ajax - FlashForward NYC 2005 Presentation. Mike Chambers and Christian Cantrell. * Integrating FlashJS Kit with Flash Detection Kit - Detects correctly if flash and javascript are enabled in clients browser. | flashjs, tutorial | ||
| Tutorials | 2007/04/30 08:07 | tutorial, kairos What those tutorials are about ? Those tutorials show how to use the basics objects Kairos provide in your applications, but You will also learn how time is handled by Kairos' objects. Understand time in Kairos Kairos time management is quite different than how Flash usually work. The main difference is that all objects work on a second-based unit, result that the accuracy of some animation or callbacks, such as in MovieClipRT, IntervalRT or TimeoutRT classes, is lower th… | tutorial, kairos |
Discussion