1 # (The only difference between those two files is the change alpha to 0 at
4 .swf bbox=autocrop version=4 fps=25 name="GoodPins.swf"
5 .box box1 width=100 height=100 color=red line=5 # a simple red box
7 .put box1 x=100 y=100 alpha=0
9 .change box1 alpha=100% # box bright
11 .change box1 # box hold
13 .jump box1 alpha=100% # make the box appear suddenly and leap around a bit
15 .jump box1 x+=20 y+=20
19 .jump box1 x-=20 y-=20
21 .jump box1 x=100 y=100 # put box bck where it belongs
23 .change box1 alpha=0 # box fade
27 .swf bbox=autocrop version=4 fps=25 name="BadPins.swf"
28 .box box1 width=100 height=100 color=red line=5 # a simple red box
30 .put box1 x=100 y=100 alpha=0
32 .change box1 alpha=100% # box bright
34 .change box1 # box hold
36 .change box1 alpha=0 # box fade
38 .jump box1 alpha=100% # make the box appear suddenly and leap around a bit
40 .jump box1 x+=20 y+=20 # why doesn't this work?
44 .jump box1 x-=20 y-=20
46 .jump box1 x=100 y=100 # put box bck where it belongs
48 .change box1 alpha=0 # box fade