working + non-working version are now both in this file.
[swftools.git] / doc / Bugs / BadPins.sc
1 # (The only difference between those two files is the change alpha to 0 at
2 #  frame 100.)
3
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
6 .frame 0  
7         .put box1 x=100 y=100 alpha=0
8 .frame 60
9         .change box1 alpha=100%         # box bright
10 .frame 80
11         .change box1                    # box hold
12 .frame 120
13         .jump box1 alpha=100%           # make the box appear suddenly and leap around a bit
14 .frame 125
15         .jump box1 x+=20 y+=20
16 .frame 130
17         .jump box1 x-=20
18 .frame 135
19         .jump box1 x-=20 y-=20
20 .frame 140
21         .jump box1 x=100 y=100          # put box bck where it belongs
22 .frame 160
23         .change box1 alpha=0            # box fade
24 .end
25
26
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
29 .frame 0  
30         .put box1 x=100 y=100 alpha=0
31 .frame 60
32         .change box1 alpha=100%         # box bright
33 .frame 80
34         .change box1                    # box hold
35 .frame 100
36         .change box1 alpha=0            # box fade
37 .frame 120
38         .jump box1 alpha=100%           # make the box appear suddenly and leap around a bit
39 .frame 125
40         .jump box1 x+=20 y+=20          # why doesn't this work?
41 .frame 130
42         .jump box1 x-=20
43 .frame 135
44         .jump box1 x-=20 y-=20
45 .frame 140
46         .jump box1 x=100 y=100          # put box bck where it belongs
47 .frame 160
48         .change box1 alpha=0            # box fade
49 .end