flexways.wordpress.com
2010 July 14 « suganya's Blog
https://flexways.wordpress.com/2010/07/14
Just another WordPress.com weblog. Application.application.ShowStrip(event);. Iconsbtn RoomColor.removeEventListener(MouseEvent.CLICK,roomColorHandler);. ColorComponent = new ColorComponent();. ColorComponent.name=”RoomColorPalet”. AddChildAt(colorComponent,Application.application.numChildren-1);. ColorComponent.addEventListener(ColorComponent.COMPONENT ADDED, componentAddedHandler);. If(Application.application.contains(Application.application.ItemPane). Application.application.Doll.scaleX=1;. For(var i:...
flexways.wordpress.com
2009 November 18 « suganya's Blog
https://flexways.wordpress.com/2009/11/18
Just another WordPress.com weblog. Xml version=”1.0″ encoding=”utf-8″? Mx:Application xmlns:mx=” http:/ www.adobe.com/2006/mxml”. CreationComplete=”init();”. Import mx.controls.Alert;. Import mx.containers.Canvas;. Import mx.controls.Image;. Private var comp img:imagecomp=new imagecomp();. Private var img:Image;. Private var can:Canvas;. Imgsource=”Images/helium balloons.jpg”. ImgaddEventListener(MouseEvent.CLICK,onClick show);. Application.application.addChild(img);. Private var gameswf:SWFLoader;.
flexways.wordpress.com
2009 September 16 « suganya's Blog
https://flexways.wordpress.com/2009/09/16
Just another WordPress.com weblog. Flex and Drupal login ( Actionscript remoteObjects ). To follow this tutorial is recommended that you have some knowledge of Drupal and Flex. Have a server ( local or remote ) with Drupal. This tutorial was mad with Drupal 6.x but I think you can do it perfectly with the previous version 5.x. Now we must activate some options of the modules we just install. 8211; In Services activate Services ( it’s the only option, you can fail here xD ). Once you have activate that op...
flexways.wordpress.com
Developing Flex Applications in Liferay Portals « suganya's Blog
https://flexways.wordpress.com/2009/09/15/developing-flex-applications-in-liferay-portals
Just another WordPress.com weblog. Developing Flex Applications in Liferay Portals. The Relationship of Rich Internet Applications and JSR-1/268 Portals Rich internet applications, or RIAs for short, are self-contained applications. In contrast, the “traditional” web applications are HTML-page-based UI. The JSR-168 portal specification marks one of the highest points of this page-based UI, allowing disparate logical pieces to be displayed on a single page in customizable ways. Why can’t we build a ...
flexinnovators.wordpress.com
2009 June « My Blog
https://flexinnovators.wordpress.com/2009/06
Just another WordPress.com weblog. Simple programs using Action Scripts. Archive for June, 2009. Laquo; Previous Entries. Posted by jacinthasekar on June 17, 2009. Xml version= 1.0 encoding= utf-8? Mx:Application xmlns:mx= http:/ www.adobe.com/2006/mxml layout= vertical verticalAlign= top. HorizontalAlign= center backgroundGradientColors= [0x000000,0x323232] paddingTop= 0 viewSourceURL= srcview/index.html. Import mx.collections.ArrayCollection;. Mx:ColumnChart id= column height= 100% color= 0 323232.
flexinnovators.wordpress.com
Separating ActionScript to individual files « My Blog
https://flexinnovators.wordpress.com/2009/06/17/separating-actionscript-to-individual-files
Just another WordPress.com weblog. Simple programs using Action Scripts. Laquo; Application Container. Separating ActionScript to individual files. Posted by jacinthasekar on June 17, 2009. Xml version="1.0" encoding="utf-8"? Mx:Application xmlns:mx="http:/ www.adobe.com/2006/mxml" layout="horizontal" mx:Script source="myFunctions.as"/ mx:Script! Mx:Application ActionScript saved separately:. Public function textMerge(input1:String,input2:String):String { var x:String = input1 input2; return x; }.
flexways.wordpress.com
suganyakalaimani « suganya's Blog
https://flexways.wordpress.com/author/suganyakalaimani
Just another WordPress.com weblog. Application.application.ShowStrip(event);. Iconsbtn RoomColor.removeEventListener(MouseEvent.CLICK,roomColorHandler);. ColorComponent = new ColorComponent();. ColorComponent.name=”RoomColorPalet”. AddChildAt(colorComponent,Application.application.numChildren-1);. ColorComponent.addEventListener(ColorComponent.COMPONENT ADDED, componentAddedHandler);. If(Application.application.contains(Application.application.ItemPane). Application.application.Doll.scaleX=1;. For(var i:...
flexinnovators.wordpress.com
Passing the event to a function « My Blog
https://flexinnovators.wordpress.com/2009/06/17/passing-the-event-to-a-function
Just another WordPress.com weblog. Simple programs using Action Scripts. Laquo; Horizontal Layout. Passing a data to a function. Passing the event to a function. Posted by jacinthasekar on June 17, 2009. Handling a user interaction by passing the event object to a function:. Xml version= 1.0? Mx:Application xmlns:mx= http:/ www.adobe.com/2006/mxml. Import mx.collections.ArrayCollection;. Import mx.events.ListEvent;. Import mx.controls.Alert;. Public var myAC:ArrayCollection = new ArrayCollection([. Laquo...
flexinnovators.wordpress.com
Passing a data to a function « My Blog
https://flexinnovators.wordpress.com/2009/06/17/passing-a-data-to-a-function
Just another WordPress.com weblog. Simple programs using Action Scripts. Laquo; Passing the event to a function. Passing a data to a function. Posted by jacinthasekar on June 17, 2009. Handling a user interaction and passing only data to a function:. Mx:DataGrid id=”dg” width=”500″ height=”150″ dataProvider=”{myAC}”. ItemClick=”handleClick(event.currentTarget.selectedItem)”. Mx:DataGridColumn dataField=”name”. HeaderText=”Contact Name” width=”300″ /. Properties of the object:. From your own site.