TAILIEUCHUNG - Nested Loops

Các vòng lặp lồng nhau Loops cung cấp một cách tuyệt vời của tự động hoá một bộ kịch bản nhiệm vụ. Tuy nhiên, các vòng lặp có thể thực hiện nhiều hơn việc thực hiện lặp đi lặp lại của một tập hợp các hành động. Một vòng lặp lồng nhau, có nghĩa là, một vòng lặp đặt bên trong một vòng lặp, có thể hữu ích cho việc tạo một chuỗi looping rằng thực hiện một tập các hành động, thay đổi một chút, thực hiện những hành động tương tự một lần nữa, thay đổi một chút,. | Nested Loops Loops provide a great way of automating a set of scripting tasks. However loops can accomplish more than the repetitive execution of a set of actions. A nested loop that is a loop placed inside another loop can be useful for creating a looping sequence that executes a set of actions changes a bit executes those same actions again changes a bit and so on. Here s an example of a nested loop var i Number 0 while i 10 var j Number 0 while j 10 perform these actions The actions in the loops will be executed 100 times. Here s the underlying logic the outer loop which uses i is set to loop 10 times. With each iteration of this outer loop two things occur the variable j is reset to 0 which then enables the inner loop which uses j to loop 10 times itself. In other words on the first iteration of the outer loop the inner loop will loop 10 times on the second iteration the inner loop will again loop 10 times and so on. Nested loops are great for breaking repetitive tasks into a hierarchical process. To help you understand this concept think about writing a letter. A letter represents a nested-loop process in which you start on line 1 and write perhaps 100 characters drop to line to 2 and write 100 characters and so on. If your letter is 25 lines long a script to do the work might look something like this var i Number 0 while i 25 var j Number 0 while j 100 type a character drop down to the next line Keep in mind that you aren t restricted to nesting just one loop inside another you can use as many loops within loops as your project requires. In the following exercise you use nested loops to create a grid of images that appear when an item in the drop-down list is selected. 1. Open . On the top of the stage are three movie clip instances pictures1_mc pictures2_mc and pictures3_mc. In this exercise you duplicate one of these three movie clips depending on which item in the drop-down list is selected to form a grid of images onscreen. 2. With the .

TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.