braitsch / as3-transform-tool

A simple transform tool similar to what you might find in an application like Photoshop.

Home Page:http://kitchen.braitsch.io/transform-tool-drag-scale-and-rotate-in-flash-at-runtime/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

##AS3 Transform Tool

####A simple transform tool similar to what you might find in an application like Photoshop.

Example Usage


var tool = new TransformTool();
    tool.mode = TransformTool.ROTATE;
    tool.iconScale = new HandleHintScale();
    tool.iconRotate = new HandleHintRotate();
    tool.boundaries = new Rectangle(50, 50, 475, 260);
stage.addChild(tool);

// register targets so they can be selected //
    tool.targets = [mySprite1, mySprite1];
// set the tool's active target on mouseClick //
    tool.activeTarget = mySprite1;

Live Demo & More Information Here.

About

A simple transform tool similar to what you might find in an application like Photoshop.

http://kitchen.braitsch.io/transform-tool-drag-scale-and-rotate-in-flash-at-runtime/


Languages

Language:ActionScript 100.0%