Open Source AS3 Flip Book – Pre-Release

Hi all,

Here is my new open source flip book written in as3 ,

Features 

  1. Virtual 3D page flipping 
  2. Click and drag flipping 
  3. Single click flipping
  4. Bookmarks
  5. Hard Cover 
  6. Large Cover
  7. Background Music 
  8. Auto flip 
  9. 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)

No Comments

Easy way to publish flex application to MAC

Hi folks,

here a unleashing a tricky method to publish flex projects to MAC as native mac application.

Tools needed
Flash CS5 (didn’t check with other versions)
Flex SDK ( didn’t check without flex sdk)

Step1:
in your flex application merge framework swfs in to main code

 

Read the rest of this entry »

No Comments

Action Script 3 2D Matrix scale and rotation extraction

AS3 2D Matrix

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;

No Comments

AS3 VIRTUAL KEYBOARD FREE (OPEN SOURCE)

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

 

This movie requires Flash Player 9

, , , , , ,

2 Comments

AS3 XFL Editor and Compiler

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/

, , , , , , ,

11 Comments

Free AS3 Date chooser/Date Picker Component v4.4.5 Released

CURRENT VERSION 4.4.5
V5 UNDER CONSTRUCTION

Hi all,

New Version of AS3 Date Chooser Released.

This movie requires Flash Player 9

you can customize lot more things in it,

    1. Import Date Chooser class and event class
import nid.ui.controls.DatePicker;
import nid.events.CalendarEvent;
    1. Customize calendar icon dynamically.
[Embed(source = "../asset/20x20_light_blue.png")]
     private var icon:Class;
    1. Dynamic Date Chooser construction
var datePicker:DatePicker = new DatePicker();
    1. Set calendar icon
datePicker.icon = new icon();
    1. Set Week Start on Monday or Sunday
datePicker.WeekStart = "sunday";
    1. Set Month Names
datePicker.months = ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"];
    1. Set Date Format
datePicker.dateFormat = "D/M/Y"; //D,M,Y all combinations are valid
    1. Set system font
datePicker.font = "Tahoma";
    1. 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";
    1. Add Date Picker to stage
addChild(datePicker);
    1. Date Picker Calendar Event
datePicker.addEventListener(CalendarEvent.CHANGE, getdate);
private function getdate(e:calendarEvent):void {
	trace("Date:" + e.selectedDate);
}
  1. 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 

  1. component can reset by nullify the property “selectedDate”.

 

dataPicker.selectedDate = null;

, , , ,

107 Comments

Setup SWC in Flash IDE

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)

step1

Read the rest of this entry »

No Comments

How to Make a Efficient Flash AS3 SWF content Loader[Preloader]

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 »

, , , , , , ,

No Comments

New Floor planner in town

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.

No Comments

Free AS3 Yahoo Weather Application

Hi all,
Let me introduce My New  project Yahoo Weather application

This movie requires Flash Player 9

Source File –

No Comments

Switch to our mobile site