some cool AS3 samples to share

January 15, 2009 at 7:46 am (Uncategorized) (, , )

Inverse Kinematics with the Bone tool view source

Pixel Bender view source

Permalink Leave a Comment

Find the Code You need on below links

November 14, 2008 at 9:56 am (Uncategorized) (, )

Just sharing couple of links i use when i look around for some code samples for prototyping when i feel lazy to write all my self :)

http://www.google.com/codesearch
http://snippets.dzone.com/

Read the rest of this entry »

Permalink 1 Comment

What is Incognito mode in chrome browser?

September 4, 2008 at 9:59 am (news) (, , )

Google Chrome offers the incognito browsing mode. WebPages that you open and files downloaded while you are incognito won’t be logged in your browsing and download histories; all new cookies are deleted after you close the incognito window. You can browse normally and in incognito mode at the same time by using separate windows. 

A small change making a difference J

Permalink 2 Comments

AS3 ToolTip Class

July 16, 2008 at 7:28 am (Uncategorized)

Please refer Link :

http://forum.html.it/forum/showthread/t-1139527.html
http://www.gotoandlearnforum.com/viewtopic.php?f=12&t=12168

Permalink 1 Comment

Disabling Key events in list control

July 15, 2008 at 4:25 pm (Uncategorized) (, )

package {
import flash.events.KeyboardEvent;
import mx.controls.List;
public class MyList extends List {
public function MyList() {
super();
}
override protected function keyDownHandler(event:KeyboardEvent):void {
}
}
}

Permalink Leave a Comment

:: Interactive experiences to work across multiple platforms

February 29, 2008 at 5:22 am (Uncategorized)

Adobe & Mozilla extending Interactive experiences to work across multiple platforms

check here ::  http://www.mozilla.org/projects/tamarin/

 

Permalink Leave a Comment

a bit about javaFX

February 21, 2008 at 9:03 am (Uncategorized)

Just looking at Flash and new baby Silverlight, Sun had come back to client side to be in the play Click here

Permalink 1 Comment

(IDEA) how to create image of size >2500*2500 diamention

February 6, 2008 at 6:14 am (Uncategorized) (, )

image height = 5000;

var number of images = Math.round( image height / 2000)
// result = 3
so we will create 3 images of dianmentions
1) (0,2000) * (0,2000)
2)(2000,4000)*(2000,4000)
3)(4000,5000)*(4000,5000)

you can create above diamention images after croping the unwanted area. (see how to crop in anothe post)

and combine the same using some server side lanugauge.

as soon as i make a proto type i will put it on web for refrence but this is the idea how we can achive this.

Permalink Leave a Comment