Learn a little flash (30) New timer function learning notes every day

Source: Internet
Author: User

VaR time: timer = new timer (1000); // sets the time to copy the ball.
Time. addeventlistener (timerevent. Timer, creatball); // use the time interval to copy the ball
Function creatball (Event: timerevent): void {
VaR mymc: MC = new MC ();
Addchild (mymc );
Mymc. x = math. Random () * 500;
Mymc. addeventlistener (event. enter_frame, running );

}
Function running (Event: Event): void
{
 
Event.tar get. Y + = 6;
 
 
}

Time. Start ();

 

Create a MC video clip. Select "link" in the library and check the first selection box. Export for ationscript facilitates the process of copying the falling ball at intervals, which is often used in as2.0.

Setinterval (XX, 500) function to loop a process, while as3.0 uses new timer to replace this function. If we know the difference, we can convert it to as3.0CodeIt will get started soon

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.