Posted: 3/2/2010 8:12:03 PM EDT
|
so i'm making a short music video for my flash class, and i'm getting kind of pissed.
a few days ago, i made a few symbols, added a simple tween to them with actionscript (3), and then saved and closed the file. coming back to it today, i can't add action script to any keyframes after (later in the timeline than) the ones i had created previously, and any motion tweens or anything else i add through flash itself doesn't appear to work. the tween/keyframes show up in the timeline, and it seems to work when i preview (by just hitting enter) but when i try to publish, or preview by hitting ctrl+enter, nada. here's the tween i'd added previously: import fl.transitions.Tween;
import fl.transitions.easing.*; var myTween_b_x:Tween =new Tween (b, "x", Regular.easeInOut, 365, 11.75, 8, true); var myTween_b_y:Tween =new Tween (b, "y", Back.easeInOut, 400, 25, 9, true); is it something with the code that's causing this? do i need to add a 'stop' somewhere? any ideas at all?? |