Open Source AS3 Flip Book – Pre-Release
Posted by infogroupadmin in ActionScript 3, FLASH on January 19, 2012
Hi all,
Here is my new open source flip book written in as3 ,
Features
- Virtual 3D page flipping
- Click and drag flipping
- Single click flipping
- Bookmarks
- Hard Cover
- Large Cover
- Background Music
- Auto flip
- more coming….
- Source will release soon stay tuned
Download SWC:
as3FlipBook_swc (35.3 KiB, 31 hits)
Download Demo :
as3FlipBookDemo (111.0 KiB, 46 hits)
Easy way to publish flex application to MAC
Posted by infogroupadmin in ActionScript 3, FLASH on July 1, 2011
Action Script 3 2D Matrix scale and rotation extraction
Posted by infogroupadmin in ActionScript 3, FLASH on June 4, 2011

AS3 2D Matrix
rotation = Math.atan( -mat.c / mat.a);
scaleX = Math.sqrt((mat.a * mat.a) + (mat.c * mat.c));
scaleY = Math.sqrt((mat.b * mat.b) + (mat.d * mat.d));
sign = Math.atan(-c / a);
rad = Math.acos(a / scaleX);
deg = rad * degree;
if (deg > 90 && sign > 0)
{
rotation = (360 - deg) * radian;
}
else if (deg < 90 && sign < 0)
{
rotation = (360 - deg) * radian;
}
else
{
rotation = rad;
}
rotationInDegree = rotation * degree;
AS3 VIRTUAL KEYBOARD FREE (OPEN SOURCE)
Posted by infogroupadmin in ActionScript 3 on May 30, 2011
Hi all,
I am releasing an on screen virtual keyboard written in as3
FEATURES
- Auto resize
- Auto align
- Dynamic key configuration
- Total Free
Google code :Â http://code.google.com/p/as3-virtual-keyboard/
Demo
AS3 XFL Editor and Compiler
Posted by infogroupadmin in ActionScript 3 on February 19, 2011
Hi,
I am building a online version of Flash XFL Editor and compiler in as3
i named it OXC, OXC is a online XFL (New Flash source file) compiler written in Action Script 3, you can now compile xfl files on the fly and generate SWF file within the browser with out Flash Authoring tool
check out the application:Â http://infogroupindia.com/tools/xfl-compiler/
Google project page : http://code.google.com/p/as3-xfl-compiler/
Free AS3 Date chooser/Date Picker Component v4.4.5 Released
Posted by infogroupadmin in ActionScript 3, FLASH on February 16, 2011
CURRENT VERSION 4.4.5
V5 UNDER CONSTRUCTION
Hi all,
New Version of AS3 Date Chooser Released.
you can customize lot more things in it,
- Import Date Chooser class and event class
import nid.ui.controls.DatePicker; import nid.events.CalendarEvent;
- Customize calendar icon dynamically.
[Embed(source = "../asset/20x20_light_blue.png")]
private var icon:Class;
- Dynamic Date Chooser construction
var datePicker:DatePicker = new DatePicker();
- Set calendar icon
datePicker.icon = new icon();
- Set Week Start on Monday or Sunday
datePicker.WeekStart = "sunday";
- Set Month Names
datePicker.months = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
- Set Date Format
datePicker.dateFormat = "D/M/Y"; //D,M,Y all combinations are valid
- Set system font
datePicker.font = "Tahoma";
- Set embed font
[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;
datePicker.embedFonts = true;
datePicker.font = "Tahoma";
- Add Date Picker to stage
addChild(datePicker);
- Date Picker Calendar Event
datePicker.addEventListener(CalendarEvent.CHANGE, getdate);
private function getdate(e:calendarEvent):void {
trace("Date:" + e.selectedDate);
}
- everything is dynamic
you can simply change anything from code.
i’m behind the documentation of this open source project
stay tuned and enjoy

Google Project Page : HERE
Download Page : Downloads
Updated to 4.4.5
SWC 4.4.5 download:
DatePicker-v4.4.5.swc (92.9 KiB, 32 hits)
Changes
- component can reset by nullify the property “selectedDate”.
dataPicker.selectedDate = null;
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)
How to Make a Efficient Flash AS3 SWF content Loader[Preloader]
Posted by admin in ActionScript 3 on July 3, 2010
Very efficient Loader Coding Tutorial
the code using here is very clean , simple and error less . you can load external swf file and call function in that swf file
Read the rest of this entry »
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 –





