Danh mục

What Event Handlers Do

Số trang: 2      Loại file: pdf      Dung lượng: 8.71 KB      Lượt xem: 15      Lượt tải: 0    
10.10.2023

Phí lưu trữ: miễn phí Tải xuống file đầy đủ (2 trang) 0
Xem trước 2 trang đầu tiên của tài liệu này:

Thông tin tài liệu:

Do Nhiều chương trình máy tính cho phép người dùng hoàn thành nhiệm vụ bằng cách kéo và thả các mục trên màn hình, thay đổi kích thước cửa sổ, có sự điều chỉnh với thanh trượt, và tạo ra các kiệt tác nghệ thuật bằng cách sử dụng "ảo" nghệ thuật công cụ, tất cả các phương thức tương tác xác định bởi cách thức mà phần mềm đã được lập trình để đối phó với các sự kiện khác nhau (máy ép chuột, di chuyển chuột, nhập vào bàn phím, vv). xử lý sự kiện tương tác...
Nội dung trích xuất từ tài liệu:
What Event Handlers Do < Day Day Up >What Event Handlers DoMany computer programs allow users to accomplish tasks by dragging and droppingitems on the screen, resizing windows, making adjustments with sliders, and creatingartistic masterpieces using virtual art tools—all modes of interaction determined by theway in which the software has been programmed to deal with various events (mousepresses, mouse movements, keyboard input, and so on).Event handlers orchestrate your movies interactivity by controlling when scripts aretriggered. They provide a when to a script so that it executes only when somethingspecific occurs. Every script in your movie is triggered by an event—a user rolling over abutton or pressing a key, your movies timeline reaching a certain frame, and so on.In ActionScript, event handlers (with the exception of frame events) usually represent thefirst lines in a script. For example:When this happens (event) { do this; do this;}Frame events occur when the timeline reaches a frame that contains a script. When youplace a script on a frame, you dont need to identify a frame event to trigger that scriptbecause the timeline reaching the frame is enough to cause it to execute. If the script wereplaced in a frame, it would look like this:do this;do this;The better you understand event handlers, the more control youll have over the usersexperience. By using event handlers properly, you can create immersive environmentsthe user will enjoy. < Day Day Up >

Tài liệu được xem nhiều: