Thursday, February 01, 2007

My first Fuse

Just some stuff I was trying to learn tonight. The syntax makes sense fot the most part. Is there a site out there that breaks down all the syntax, etc? (Like McTween has)

import com.mosesSupposes.fuse.*;
ZigoEngine.simpleSetup( Shortcuts, PennerEasing );


//simple fuse examples:

//circle_mc.brightOffsetTo(100,5,null);

//circle_mc.alphaTo(0, 2, "easeInExpo");

//circle_mc.alphaTo(0, 2, "easeInExpo");

/*
FuseFMP.simpleSetup();
circle_mc.Blur_blurX = 5;
circle_mc.Blur_blurY = 0;
circle_mc.writeFilter("DropShadow")
*/

/*
FuseFMP.writeFilter(circle_mc, "Blur", { blur:0 });
ZigoEngine.doTween(circle_mc, "Blur_blurX", 50, 1, "easeInExpo");
*/

/*
var f = Fuse.open();
circle_mc.tween("_y", "10", .5);
Fuse.openGroup();
circle_mc.tween("_x", "4", .5, "easeInOutBack");
circle_mc.tween("_x", "50", .5, "easeInOutBack", .1);
Fuse.closeGroup();
circle_mc.tween("_y", "200", .5);
Fuse.closeAndStart();
*/

/*
var f:Fuse = new Fuse(
[
{ start_x : "-100", seconds : 1, delay : .25, ease : "easeOutQuint" },
{ scope : FuseFMP, func : "writeFilter", args : [box_mc, "Blur", { blur : 0 }] },
{ Blur_blurX : 20, seconds : .5, ease : "easeInQuad", trigger : true }
], // end group
// The next action happens after the trigger in the previous group.
{ Blur_blurX : 0, seconds : .3, ease : "easeOutQuad" }
);
f.target = circle_mc;
f.start();
*/

0 Comments:

Post a Comment

Links to this post:

Create a Link

<< Home