Archive for category ActionScript 3
AS3 Delay — A Static Delay Class in AS3
Posted by admin in ActionScript 3, FLASH on September 6, 2010
Hi,
as3 Delay is Delay class for call methods after some delay with arguments . this is a static function
check it out and enjoy 
addDelay
static public function addDelay(scope:Function, delay:Number, ...args):void
Syntax
import nid.utils.Delay;
Delay.addDelay(function():void{trace('this is delay test1');},2500);
Delay.addDelay(myTest,500,'arg1_data','arg1_data','arg1_data');
Delay.addDelay(myTest2,1500,'arg1_String');
function myTest(arg1:String,arg2:String,arg3:String):void{
trace(arg1,arg2,arg3);
trace('this is delay test2');
}
function myTest2(arg1:String):void{
trace(arg1);
trace('this is delay test3');
Delay.reset();
}
Download SWC as3Delay SWC (2)
Download Source as3Delay Source (3)
Google project page http://code.google.com/p/as3delay/
Setup SWC in Flash IDE
Posted by admin in ActionScript 3, FLASH, RIA, Tutorials, WebDevelopment on July 10, 2010
Hi all,
steps for include swc files in flash IDE projects for beginners
Step:1
open flash ide then navigate to Edit>Preference (Ctrl+U)
Free AS3 Date chooser/Date Picker Component v4
Posted by admin in ActionScript 3, FLASH on March 6, 2010
PROJECT UNDER MAINTENANCE
Hi all,
New Version of AS3 Date Chooser Released.
you can customize lot more things in it,
- Import Date Chooser class and event class
- Customize calendar icon dynamically.
- Dynamic Date Chooser construction
- Set calendar icon
- Set Week Start on Monday or Sunday
- Set Month Names
- Set Date Format
- Set system font
- Set embed font
- Add Date Chooser to stage
- Date Chooser Event
- everything id dynamic :) you can simply change anything from code.
import nid.utils.dateChooser.DateChooser; import nid.events.calendarEvent;
[Embed(source = "../asset/20x20_light_blue.png")]
private var icon:Class;
var dateChooser:DateChooser = new DateChooser();
dateChooser.icon = new icon();
dateChooser.WeekStart = "sunday";
dateChooser.Months = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
dateChooser.dateFormat = "D/M/Y"; //D,M,Y all combinations are valid
dateChooser.font = "Tahoma";
[Embed(source = "../asset/tahoma.ttf", fontWeight= "normal", fontFamily = "Tahoma")]
protected static var Tahoma:Class;
[Embed(source = "../asset/tahomaBold.ttf", fontWeight= "bold", fontFamily = "Tahoma")]
protected static var TahomaBold:Class;
dateChooser.embedFonts = true;
dateChooser.font = "Tahoma";
addChild(dateChooser);
dateChooser.addEventListener(calendarEvent.CHANGE, getdate);
private function getdate(e:calendarEvent):void {
trace("Date:" + e.selectedDate);
}
i’m behind the documentation of this open source project
stay tuned and enjoy

DOWNLOAD SOURCE FILE: AS3-Date-Chooser-v4 (602)
DOWNLOAD SWC FILE : AS3-DateChooser-SWC file (383)
DOWNLOAD EXAMPLE FILE : AS3-DateChooser-example (447)
GOOGLE PROJECT PAGE : HERE
New Floor planner in town
Posted by admin in ActionScript 3, FLASH, RIA on February 2, 2010
Check out Autodesk’s Project Dragonfly, a slick, web-based app that makes creating in two and three dimensions a breeze.
There’s not much of a learning curve involved — click, drag, rotate, resize — it’s all very intuitive. If you’ve played The Sims at all, you’ll be right at home with Dragonfly. No, it’s not a commercial-strength app like AutoCad, but it’s at least as good as any of the boxed “3D home designer” programs I’ve played around with in the past.
Dragonfly makes arranging things easy by snapping to a grid and displaying guides to let you know when you’re lined up with other objects in the room. To help align walls, doors, or windows, measurements are displayed when you add or modify an item.
There are loads of architectural and design elements to choose from, all categorized and fully searchable. Register for an account and you’ll be able to save your designs and export them to JPG or DWG (you know, in case you want to ship it off to your architect or engineer).
While it’s easy to use, Dragonfly is surprisingly powerful. It would be even better with some landscape design features, but who knows — perhaps that’s something AutoDesk will add in the future.
Free AS3 Yahoo Weather Application
Posted by admin in ActionScript 3, FLASH on January 8, 2010
Hi all,
Let me introduce My New project Yahoo Weather application
Source File — yahoo-weather (63)












































