Mick G schrieb:
I'm working with Zigo/FMP and just getting used to these mysterious
wonders...

I've used *mc_tween2* in the past and was able to do this type of thing but
not having any luck with the Fuse Kit...

//Blur to 10, then back to 0
ZigoEngine.doTween(mc, "Blur_blur", 10, 2, Elastic.easeOut, 0);
ZigoEngine.doTween(mc, "Blur_blur", 0, 2, Elastic.easeOut, 2);

i too find it very hard to read through the Fuse-docs too.
but as i understand it you do it with a callback (that's what i do)
so:

ZigoEngine.doTween(mc, "Blur_blur", 10, 2, Elastic.easeOut, 0, myCallback);

function myCallback ()
{

ZigoEngine.doTween(mc, "Blur_blur", 0, 2, Elastic.easeOut, 2);

}

Just take a look at the tooltip when you're typing "ZigoEngine.doTween(" ...

micha
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to