Fuse has been extended to tween text properties and color effects and sound. Lot’s of great possibilities here.
http://www.mosessupposes.com/Fuse/FuseFX.html
Here is an example for colorFX.
http://endologik.com/fusefx/colorfx/index.html
Very cool.
pharmacy […]
This is an example proof-of-concept I did a while back to see if it would be possible to tween objects into more organic shapes using Fuse. Turns out it is not only possible, it looks pretty neat. I will definitely be using this idea in a project. Give it a click and […]
This example uses just the Zigo Engine and FuseItem object syntax to scale up a clip with an elastic tween. Nothing too flashy, but it is a simple example of using object syntax.
[kml_flashembed movie=”/wp-content/uploads/fuse/Scale-Tween.swf” width=”700″ height=”300″ /]
Here is the code:
[as]
/*****************************************************************************
=============================================================================
EXAMPLE FILE:
Scale a box up 300 percent with an elastic tween.
=============================================================================
EXAMPLE CREDIT:
Ryan Potter
www.ThoughtWillRise.com
License: Same as […]
Yet another post on getting stuff off my hard drive and into the public domain in the effort that it may help someone with AS, Fuse or filter tweening. This example just moves and blurs a clip using Fuse and FMP.
[kml_flashembed movie=”/wp-content/uploads/fuse/Filter-Blur-Tween.swf” width=”700″ height=”300″ /]
And here is the code:
[as]
/*****************************************************************************
=============================================================================
EXAMPLE FILE:
Create a box. Move it […]
More Fuse goodness. This was an answer to a question asked on the Fuse mailing list about how to create fade a clip out, hold for a bit, and fade it back in.
[kml_flashembed movie=”/wp-content/uploads/fuse/Fade-Out-In.swf” width=”700″ height=”300″ /]
Example code:
[as]
/*****************************************************************************
=============================================================================
EXAMPLE FILE:
Make a box fade out, hold, and fade back in.
=============================================================================
EXAMPLE CREDIT:
Ryan Potter
www.ThoughtWillRise.com
License: Same as Fuse.
=============================================================================
FUSE CREDIT:
Fuse […]
Here is a another Fuse example of moving a clip around the stage to a new random point every time you click on it. A simple illustration of what Fuse can do.
[kml_flashembed movie=”/wp-content/uploads/fuse/Button-Random-Tween.swf” width=”700″ height=”300″ /]
And here is the code for the above example.
[as]
/*****************************************************************************
=============================================================================
EXAMPLE FILE:
Make a button that moves randomly about the stage when […]
Here is another simple example using fuse to tween a movie clip. It is pretty simple, but it illustrates how easy it is to tween a clip with 1 line of code. The code draws all of the visual assets on the stage so just copt the code below in the first frame […]
March 11, 2007 – 12:21 am
Here is an example using Fuse Kit and the Zigo tweening engine to make a grow effect on a button.
[kml_flashembed movie=”/wp-content/uploads/fuse/Button-Grow-Tween.swf” width=”700″ height=”300″ /]
And here is the code:
[as]
/*****************************************************************************
=============================================================================
EXAMPLE FILE:
Create a button that grows when you mouse over it.
=============================================================================
EXAMPLE CREDIT:
Ryan Potter
www.ThoughtWillRise.com
License: Same as Fuse.
=============================================================================
FUSE CREDIT:
Fuse Kit 2
Copyright (c) 2006 Moses Gunesch, MosesSupposes.com
Distributed under MIT Open Source […]
Here is an example of using Fuse to do a code based Bezier tween.
[kml_flashembed movie=”/wp-content/uploads/fuse/Bezier-Tween.swf” width=”700″ height=”300″ /]
And here is the code:
[as]
/*****************************************************************************
=============================================================================
EXAMPLE FILE:
Move a box along a curve.
=============================================================================
EXAMPLE CREDIT:
Ryan Potter
www.ThoughtWillRise.com
License: Same as Fuse.
=============================================================================
FUSE CREDIT:
Fuse Kit 2
Copyright (c) 2006 Moses Gunesch, MosesSupposes.com
Distributed under MIT Open Source License, see Fuse-Kit-License.html (in fuse package directory)
Easing Equations (c) 2003 […]
Here is an example of using Fuse as a load manager. This works really well if you want to sequence code that needs to wait until something is loaded. It works great if you need to load xml before you draw the ui.
UPDATED 03-10-07: The code has been updated to fuse 2.
[as]
function drawLoadManager(){
trace(”Draw Load Manager […]