AIRKinect 2 Rigged 3D Model Mapping
Awesome to see stuff like this in the Flash community. Always pushing the envelope aren't we.
via vimeo.com
Awesome to see stuff like this in the Flash community. Always pushing the envelope aren't we.
I am starting to do a lot more AIR development and found something that baffled me a bit the other day. I am creating new Windows in my AIR app and I wanted to create the window and then have it open on screen where I would like. An example of this is I have a window that acts like a menu for my app so I wanted the window I create to open at 4px on the Y and 25px on the Y.
var mywindow:Window = new Window();mywindow.x = 4;mywindow.y = 25;mywindow.open();
protected function creationCompleteHandler(event:FlexEvent):void{var mywindow:Window = new Window();mywindow.addElement( workingSets );mywindow.width = 115;mywindow.height =200;mywindow.maximizable = false;mywindow.resizable = false;mywindow.addEventListener(AIREvent.WINDOW_COMPLETE, onWindowComplete);.open();}private function onWindowComplete(event:AIREvent):void{event.currentTarget.move(4,25);}