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 tag is used to add lists into <ul> and <ol> elements?
<dt> <dd> <li><ul>
<li>http://coursesweb.net/html/</li>
<li>http://coursesweb.net/css/</li>
</ul>
Which value of the "display" property creates a block box for the content and ads a bullet marker?
block list-item inline-block.some_class {
display: list-item;
}
Which instruction converts a JavaScript object into a JSON string.
JSON.parse() JSON.stringify eval()var obj = {
"courses": ["php", "javascript", "ajax"]
};
var jsonstr = JSON.stringify(obj);
alert(jsonstr); // {"courses":["php","javascript","ajax"]}
Indicate the PHP class used to work with HTML and XML content in PHP.
stdClass PDO DOMDocument$strhtml = '<body><div id="dv1">CoursesWeb.net</div></body>';
$dochtml = new DOMDocument();
$dochtml->loadHTML($strhtml);
$elm = $dochtml->getElementById("dv1");
echo $elm->nodeValue; // CoursesWeb.net