The Bind Tool is in the "Tools panel", in the same location with the "Bone tool".
The Bind tool can be used only with bones created inside a shape.
When you place bones inside shapes, Flash automatically creates Control Points around the contour of the shape, as shown in the picture below.
The Control Points establish the perimeter of the shape as you create different poses.
The Bind tool can be used to edit the connections between individual Bones and control points, to influence which parts of the graphic are controlled by which bones.
The Control Points are visible when you click with the Bind tool on a shape with bones, they appear like in the image below.
-
View Control Points
- To view the Control Points, choose the Bind tool in the Tools panel, and then click a bone in the armature.
The control points bound to the selected bone are highlighted in yellow. The other control points in the armature are colored blue.
Square control points are bound to a single bone.
Triangular control points are bound to more than one bone.
- Use the Zoom option (right-top of the Stage), or the "Zoom tool" to view clearly the control points.
-
Bind a control point to a Bone.
- With the Bind tool click on the control point, and drag to the bone (you see a yellow line following the cursor, like a tendon).
This method removes other connections of that control point to other bones.
To keep the existing connection of a control point, click with the Bind tool on the bone you want to connect, then hold down the Shift key and click the control point.
-
Unbind (remove) control points from a bone
- Select a bone with the Bind tool, then Ctrl+click a control point that's highlighted in yellow.
-
Bind a bone to a control point
- Use the Bind tool to select a control point, then Shift+click a bone.
-
Unbind (remove) a bone from a control point.
- Select a control point with the Bind tool, and then Ctrl+click a bone that is highlighted in yellow.
If you want, you can add more control points or delete them.
-
Add control point
- Choose "Add Anchor Point Tool" from the Tools panel (in the same location with the "Pen tool"), then click on the armature. When the contour with the control points is visible, click exactly on the line contour, where you want to add a control point.
-
Delete control point
- Choose "Delete Anchor Point Tool" from the Tools panel (in the same location with the "Pen tool"), then click on the armature. When the contour with the control points is visible, click on the control point you want to delete.
• With the "
Subselection Tool" you can move the control points on the boundary of the shape to adjust the shape.
Daily Test with Code Example
HTML
CSS
JavaScript
PHP-MySQL
Which HTML element can be used to embed a SWF flash content?
<object> <div> <script><object type="application/x-shockwave-flash" data="file.swf" width="500" height="250">
<param name="src" value="file.swf" />
Your browser not support SWF.
</object>
Which CSS pseudo-class adds a style to an input form field that has keyboard input focus?
:active :focus :hoverinput:focus {
background-color: #88fe88;
}
Click on the instruction which converts a JSON string into a JavaScript object.
JSON.stringify(javascript_object) object.toString() JSON.parse(json_string)var jsnstr = '{"url": "http://coursesweb.net/", "title": "Web Development Courses"}';
var obj = JSON.parse(jsnstr);
alert(obj.url);
Indicate the PHP function which can be used to create or write a file on server.
fopen() file_put_contents() file_get_contents()if (file_put_contents("file.txt", "content")) echo "The file was created";
else echo "The file can not be created";