Flash Course

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.
Control Points


- View Control Points - Bind a control point to a Bone. - Unbind (remove) control points from a bone - Bind a bone to a control point - Unbind (remove) a bone from a control point.
If you want, you can add more control points or delete them.
- Add control point - Delete control point
• 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
Bind Tool and Control Points

Last accessed pages

  1. Vue JS - Transition and Animation (490)
  2. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (141749)
  3. Node.js Move and Copy file (28420)
  4. MouseEvent - Events for Mouse (2909)
  5. PHPMailer (2311)

Popular pages this month

  1. Courses Web: PHP-MySQL JavaScript Node.js Ajax HTML CSS (473)
  2. CSS cursor property - Custom Cursors (79)
  3. The Mastery of Love (70)
  4. PHP-MySQL free course, online tutorials PHP MySQL code (62)
  5. CSS3 2D transforms (46)