intTypePromotion=1
zunia.vn Tuyển sinh 2024 dành cho Gen-Z zunia.vn zunia.vn
ADSENSE

The Use of Time in Flash

Chia sẻ: Qweqwdasd Qweqdasda | Ngày: | Loại File: PDF | Số trang:2

62
lượt xem
4
download
 
  Download Vui lòng tải xuống để xem tài liệu đầy đủ

Một lớp học dựng sẵn trong Flash, hữu ích cho tương tác phụ thuộc vào ngày tháng, ngày, tháng và năm. getTimer (). Một chức năng Flash đặc biệt hữu ích cho việc đo qua của thời gian trong mili giây. Frames. Đại diện đơn vị thời gian có liên quan đến hoạt hình, âm thanh, và tương tác khác về thời hạn. Frames cung cấp cách thức phổ biến nhất của việc đo thời gian trôi qua trong Flash. Sự chuyển động của một khung hình kế tiếp (hoặc trước đó) khung đại diện cho sự chuyển động của...

Chủ đề:
Lưu

Nội dung Text: The Use of Time in Flash

  1. < Day Day Up > The Use of Time in Flash Flash uses several techniques to measure the passage of time in projects. The following are the most common strategies: • Date class. A prebuilt class in Flash, useful for interactivity that depends on dates, days, months, and years. • getTimer(). A special Flash function useful for measuring the passage of time in milliseconds. • Frames. Representing divisions of time as they relate to animation, sounds, and other interactivity on timelines. Frames provide the most common way of measuring the passage of time in Flash. The movement of one frame to the next (or previous) frame represents the movement of time in a project, either forward or backward. As the timeline moves forward, a progression of events occurs—a streaming sound plays, for example, or a character moves across the stage. After you understand these elements, you'll be able to make your projects do the following: • Play forward or backward, depending on user interaction • React based on the current date, time, or frame number • Display percentage-based information and download status There's also a special ActionScript tool—setInterval()—that allows a function to be called at a regular specified interval (measured in milliseconds). Consider the following example: function rotateClip() { myMovieClip_mc._rotation += 10; } setInterval(rotateClip, 1500); The first three lines of the script define the function that will be used. Next, the
  2. setInterval() action is set up to call the rotateClip() function every 1.5 seconds (1,000 milliseconds equals 1 second). If you want to pass arguments to the called function, simply add them to the setInterval() action: setInterval (updateMessageFunction, 20000, "Hello", arg2, arg3) A setInterval() action can be turned on and off by assigning a variable name, as in the following example: var myInterval:Object = setInterval(rotateClip, 1500); This example assigns the name myInterval to the setInterval() action. To remove the functionality of the setInterval() action, use the following syntax: clearInterval(myInterval); Using the syntax shown, you can initiate the setInterval() action at any time, calling any function. < Day Day Up >
ADSENSE

CÓ THỂ BẠN MUỐN DOWNLOAD

 

Đồng bộ tài khoản
2=>2