text t1 10 40 "a vertical array is created with five data elements" violet 20 array a1 150 150 5.1 ABC 123 Alpha 4arrays numerical VERT black deeppink blue delay 800 delete t1 delay 500 text t2 10 40 "the text color of the third element is changed to white using changeParam" darkgreen 16 delay 600 changeParam a1[2] textcolor white delay 1000 delete t2 delay 500 text t3 10 40 "the outline color of the fifth element is changed to green using changeParam" violet 16 delay 600 changeParam a1[4] color green delay 1000 delete t3 delay 500 text t4 5 40 "the background color of the first element is changed to orange using changeParam" darkgreen 16 delay 600 changeParam a1[0] bkgrd orange delay 1000 delete t4 delay 500 text t5 10 40 "the fourth element in the array is moved to the right 80 using moveRelative" violet 16 delay 600 moveRelative a1[3] 80 0 delay 1000 delete t5 delay 500 text t6 20 20 "the text in the second field is changed from '123' to 'changed'" darkgreen 16 delay 600 changeParam a1[1] text "changed" delay 1000 delete t6 delay 500 text t7 5 40 "the size of the fifth field is increased to 200% of its original size using scale" violet 16 delay 600 scale a1[4] 200 delay 1000 delete t7 delay 500 text txt1 10 40 "the size of the text in the fifth element is changed from 12 to 20 using changeParam" darkgreen 16 delay 600 changeParam a1[4] point 20 delay 1000 delete txt1 delay 500 begin text t8 10 40 "the x-coordinate of the array is changed to 30" violet 16 text t9 10 60 "the y-coordinate of the array is changed to 400" violet 16 end delay 600 changeParam a1 x 30 delay 600 changeParam a1 y 400 delay 1000 begin delete t8 delete t9 end text t10 10 40 "the entire array is moved up 250 and to the right 100" darkgreen 16 delay 600 moveRelative a1 100 -250 delay 1000 delete t10 text t11 10 40 "the width of the first cell in the array is changed to 200" violet 16 delay 600 changeParam a1[0] width 200 delay 1000 delete t11 delay 500 begin text t12 10 40 "the outline color of the entire array is changed to darkorange" darkgreen 16 text t13 10 70 "the background of the entire array is changed to black" darkgreen 16 text t14 10 100 "the textcolor of the entire array is changed to green" darkgreen 16 end delay 600 changeParam a1 color darkorange delay 500 changeParam a1 bkgrd black delay 500 changeParam a1 textcolor green delay 800 begin delete t12 delete t13 delete t14 end text t15 10 40 "a horizontal array is created with two data in each field" violet 16 delay 600 begin array a2 150 340 4.2 3 blocks 2 data 1 array 4th oneisverylonginarray HORZ black brown transparent changeParam a2[0] textcolor wheat changeParam a2[1] textcolor wheat changeParam a2[2] textcolor wheat changeParam a2[3].0 textcolor wheat end delay 1000 delete t15 delay 600 text t15 10 40 "the array is made wide by having a long transparanet word" darkgreen 16 delay 800 delete t15 delay 800 text t15 10 40 "the text in the second data of the fourth cell is changed to 'field'" violet 16 delay 800 begin changeParam a2[3].1 text "field" changeParam a2[3].1 textcolor wheat end delay 800 delete t15 delay 500 text t16 10 40 "the textcolor of the text in the first field is changed to cyan" darkgreen 16 delay 600 changeParam a2[0] textcolor cyan delay 1000 delete t16 delay 500 text t17 10 40 "the point size of the second data's text in the second field is increased" violet 16 delay 600 changeParam a2[1][1] point 16 delay 1000 delete t17 delay 500 text t18 10 40 "the text of the the first data in the third field is changed from '1' to 'one'" darkgreen 16 delay 600 changeParam a2[2][0] text "one" delay 1000 delete t18 delay 600 text t19 40 500 "END DEMO" black 30