CreateJS-Haxe
CreateJS-Haxe copied to clipboard
http://www.createjs.com/docs/easeljs/classes/DisplayObject.html#property_transformMatrix
Changing outline type to Float
Ref.: http://www.createjs.com/docs/easeljs/classes/MouseEvent.html
These methods seem to be missing from MouseEvent class: ``` public function preventDefault():Void; public function remove():Void; public function stopImmediatePropagation():Void; public function stopPropagation():Void; ```
Using ColorMatric Class doesn't work. I'v got a compilation error. It seems that extending Array isn't possible. I have used a workaround changing ColorMatrix.hx : package createjs.easeljs; @:native("createjs.ColorMatrix") extern class...
PreloadJS 0.4.1 has an additional paramater crossOrigin which is not included in the hx file @:native("createjs.LoadQueue") extern class LoadQueue extends AbstractLoader { public function new(?useXHR:Bool = true, ?basePath:String = null,...
When I try like this var preload:Dynamic = new PreloadJS(false); I get this error: src/com/clientside/main/Main.hx:350: characters 12-32 : createjs.preloadjs.PreloadJS does not have a constructor Any idea please?
I tried the simple example for createjs, yet, the onMouseUp event is not fired, what would be the reason? Here is the example I tried: https://github.com/nickalie/CreateJS-Haxe/blob/master/examples/Simple/src/Main.hx
I tried to create a movieClip and add an image inside it like this: rect2 = new Bitmap(_preloader.getResult("rect").result); mv = new MovieClip("single", 0, false, []); mv.addChild(rect2); _stage.addChild(mv); I expect to...