In the middle of writing some fuse tweens, using the proper syntax for the first time! However, the following code runs the tweens in a sequence, I need them to run at the same time. Im sure its something simple, but I cant find it. Can someone point me in the right direction please?
var fuse:Fuse;
fuse = new Fuse();
fuse.push({target:target_0, _y:246, seconds:0.5, ease:'easeOutBack', delay:0});
fuse.push({target:target_1, _y:134, seconds:0.5, ease:'easeOutBack', delay:0});
fuse.push({target:target_2, _y:64, seconds:0.5, ease:'easeOutBack', delay:0});
fuse.push({target:target_3, _y:-6, seconds:0.5, ease:'easeOutBack', delay:0, func:'endOfTweens'});
fuse.start();