Find the Code You need on below links
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/
What is Incognito mode in chrome browser?
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
AS3 ToolTip Class
http://forum.html.it/forum/showthread/t-1139527.html
http://www.gotoandlearnforum.com/viewtopic.php?f=12&t=12168
Disabling Key events in list control
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 {
}
}
}
:: Interactive experiences to work across multiple platforms
Adobe & Mozilla extending Interactive experiences to work across multiple platforms
check here :: http://www.mozilla.org/projects/tamarin/
a bit about javaFX
Just looking at Flash and new baby Silverlight, Sun had come back to client side to be in the play Click here
(IDEA) how to create image of size >2500*2500 diamention
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.
