Directory
Technology
Blog Details for "All Things Flash"
All Things FlashAll Things FlashFlex, Actionscript 3, Flash, Flex 2, actionscript 2, Web Development, Design Patterns, Java Articles
This Eclipse error really brought the lolz
2007-04-02 18:52:00 'nuff said More About: Clip , This , Clips , Lips , Real
The makings of my first Apollo app : The Browser
2007-04-02 04:08:00 With the release of the Apollo Alpha I got really excited to dive in and mess around with it. Unfortunately due to other projects I'm working on I haven't had the time to get in and start playing. Today however, i set aside a few hours to dedicate to it, and started working on a ... More About: Poll , Browser , King , First
Multi key capture utility
2007-04-01 19:00:00 I had the need to capture multiple key strokes, in an Apollo project I just started working on. Here is the utility PLAIN TEXT Actionscript: package com.threeronec.util { import flash.events.IEventDispatcher; import flash.events.KeyboardEvent; import flash.events.Event; import mx.controls.Alert; import flash.events.EventDispatcher; import flash.display.DisplayObject; import mx.utils.UIDUtil; import mx.collections.ArrayCollection; import flash.utils.Timer; import flash.events.TimerEvent; public class Multi KeyUtil extends EventDispatcher { private static var instance:MultiKeyUtil; private static var allowInstantiation:Boolean; private var functionLookup:Object; private var keyComboLookup:Object; private var pendingKeys:ArrayCollection; private var count:Number = 0; public static function ... More About: Capture , Utility
Swatch Selector component in Flex
2007-04-01 01:11:00 Sorry, can’t share the source on this one guys, as I made this for a project I’m working on. But I thought it was a pretty clean implementation and that it could be a good inspiration for more components like this. I’ll have a lot more time to be pumping out components such ... More About: Watch , Comp , Flex , Selec , Swatch
BindingUtils: more useful syntax
2007-03-27 20:49:00 PLAIN TEXT Actionscript: public var currentDay:Number; public var day:TextInput; Bindi ngUtils.bindProperty(this, "currentDay", day, {name:"text", getter:function(d:TextInput):Numb er{return Number(d.text)}}); The above code came in really useful when using the bindProperty method of BindingUtils. I wanted to bind the text property of a TextInput named "day" to the variable currentDay which I had typed as a number. To do so i used the syntax you ... More About: Tax , More , Useful , Guti
Are swc?s making your project error?
2007-03-22 23:34:00 Make sure you have the newest version of Flex builder (2.0.1), this should fix a lot of problems for you if you’re having them. you can get it here Thanks Eric More About: Project , Your , King , Error , Maki
List component breaks when adding item renderer
2007-03-19 08:20:00 It seems over and over again, any time i add an item renderer to the list component, it breaks. Flex’s list component is a pretty advanced component, as it only shows whats needed on screen, but despite all this ‘coolness’ whenever i add a complex item renderer to a list component it BREAKS and doesn’t ... More About: Comp , Break , List , Item , When
Flex: An exercise in Binding / code behind etc?
2007-03-14 23:35:00 Just take a look through this code and then look at the result. It may help some of you, it may not. I threw it together to show to a few people that are just breaking into the Flex framework, and it seemed to clear a few things up for them Main Application PLAIN TEXT Actionscript: <?xml ... More About: Exercise , Code , Behind , Bindi
String search utility
2007-03-13 20:51:00 Here is a another utility I needed across several projects. It allows you to pass an ArrrayCollection of objects (custom or generic) into the static method, a 'term', and the properties on the objects to search. It then returns an ArrayCollection populated with the objects that contain the term. Here it is PLAIN TEXT Actionscript: package net.threeronec.component.stringsearchutil { import mx.collections.ArrayCollection; public class ... More About: Search , Ring , Utility , String , Tring
Tiling backgrounds in Flex
2007-03-03 03:51:02 Several people have been asking for tiling backgrounds in Flex , so here is my implementation of one. It's really easy and should be really self explanatory. Here is the usage: PLAIN TEXT Actionscript: <?xml version="1.0" encoding="utf-8"?> <mx:Application creationComplete="onCreationComplete(even t)" xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"> <mx:Canvas y="40" width="500" height="500" id="myCanvas"/> <mx:Button id="changeSize" mouseUp="doChangeSize(event)" label="RESIZE!!"/> <mx:Script> <


