Skip navigation

Category Archives: Fuse


Tweening variables using fuse

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 […]

Fuse elastic tween example using the Zigo engine and object syntax

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 […]

Bluring a clip with Fuse and Fuse FMP filter shortcuts

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 […]

Fading a clip in and out with Fuse

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 […]

Randomly moving a button with 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 […]

Elastic tween example using Fuse

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 […]

Button Grow Fuse Example

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 […]

Bezier Tween

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 […]

Managing Code Loading with Fuse

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 […]

Random Clips Blur Tween

Same as the random clips tween but this time it is moving a bunch of blurred clips. Again, on my machine it is amazingly smooth.
UPDATED 03-10-07: This is now updated to Fuse 2.
[kml_flashembed movie=”/wp-content/uploads/fuse/Random-Blur-Clips.swf” width=”700″ height=”300″ /]
[as]
/*****************************************************************************
=============================================================================
EXAMPLE FILE:
Create a bunch of clips, blur them and move them around randomly.
=============================================================================
EXAMPLE CREDIT:
Ryan Potter
www.ThoughtWillRise.com
License: Same as Fuse.
=============================================================================
FUSE […]