Skip to content

Instantly share code, notes, and snippets.

View bellaajhabib's full-sized avatar

Habib Bellaaj bellaajhabib

View GitHub Profile
@codemasta92
codemasta92 / gist:1555328
Created January 3, 2012 15:24
Button class with EaselJS
(function(k) {
var Button = function(a, x, y) {
this.initialize(a,x,y)
},p = Button.prototype = new DisplayObject;
p.left = 0;
p.top = 0;
p.ypos = 0;
p.image = null;
p.snapToPixel = true;