Flash easy to make mouse follow text tutorial

Source: Internet
Author: User

1. Create a new Flash document first:

2, in the background to write a good display of words, properties of the color of their own tune.
3, continuously presses two ctrl+b, separates the text into a graph. (Lest fonts are missing)
4. Select the Mobile tool and then point to the text to convert the text to: movie clips into components
5, in the property surface version of the instance name change: MC
6, from the library to drag components to the background outside the place
7. Create a new Layer 2
8, selected Layer 2, point action
9, and then in the action to write the following script:

_root.onload = function () { 
for (var i = 1; i<=20; i++) { 
_root.mc.duplicatemovieclip ("MC" +i,i); &NBSP
_root["mc" +i]._xscale = 100-10*i; 
_root["mc" +i]._yscale = 100-10*i; 
_root["MC" +i]._ Alpha = 100-5*i; 


_root.onenterframe=function () {
for (Var i=1;i<=20;i++) { &NBSP
if (i==1) { 
StartDrag (_root["MC" +i],true);  
_root.mc._alpha=0; 

ELSE{&NBSP
_root["MC" +i]._x=_root["MC" +i]._x+ (_root["MC" + (I-1)]._x-_root["MC" +i]._x)/4+ (_root["MC" + (I-1)]. _x-_root["MC" +i]._x) *0.08; 
_root["MC" +i]._y=_root["MC" +i]._y+ (_root["MC" + (I-1)]._y-_root["MC" +i]._y) 4+ (_root["MC" + (I-1)]._y-_root["MC" +i]._y) *0.08; 


}

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.