<?xml version="1.0" encoding="UTF-8"?> <rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" ><channel><title>Cool Flash Effect Tutorials!</title> <atom:link href="http://flash-effects.com/feed/" rel="self" type="application/rss+xml" /><link>http://flash-effects.com</link> <description>Tutorial blog about effects for Flash 8, Flash CS3, Flash CS4 and Flash CS5 using on timeline and with ActionScript</description> <lastBuildDate>Tue, 31 Jul 2012 15:02:23 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.1.3</generator> <item><title>Rollover effect animation with DisplacementMap and TweenLite (AS3)</title><link>http://flash-effects.com/displacementmap-mouseover-effect-tweenlite/</link> <comments>http://flash-effects.com/displacementmap-mouseover-effect-tweenlite/#comments</comments> <pubDate>Thu, 02 Sep 2010 10:58:45 +0000</pubDate> <dc:creator>FE-Team</dc:creator> <category><![CDATA[Uncategorized]]></category> <category><![CDATA[ActionScript]]></category> <category><![CDATA[animation]]></category> <category><![CDATA[as3]]></category> <category><![CDATA[displacement map]]></category> <category><![CDATA[DisplacementMapFilter]]></category> <category><![CDATA[distortion]]></category> <category><![CDATA[effect]]></category> <category><![CDATA[flash]]></category> <category><![CDATA[mouseover]]></category> <category><![CDATA[perlinNoise()]]></category> <category><![CDATA[rollover]]></category> <category><![CDATA[transition]]></category> <category><![CDATA[tweenlite]]></category><guid isPermaLink="false">http://flash-effects.com/?p=1253</guid> <description><![CDATA[In this tutorial you&#8217;ll learn how to create a rollover effect with the DisplacementMapFilter and TweenLite. Follow step-by-step or go directly to the source code. Step 1 &#8211; Create Movieclips First you need to setup the timeline (you can use the example fla file). Create 4 layer according to the image above. In the &#8220;script&#8221; [...]]]></description> <content:encoded><![CDATA[<p>In this tutorial you&#8217;ll learn how to create a rollover effect with the DisplacementMapFilter and TweenLite. Follow step-by-step or go directly to the <a href="#sourcecode">source code</a>.</p><p><a title="roll over button" rel="lightbox;width=450;height=300" href="http://s1.flash-effects.com/swf/displacement-map-effect-as3.swf"><img src="http://s1.flash-effects.com/img/displacement-map-effect-as3.jpg" width="450" height="300" alt="roll over button" /></a><br /> <span id="more-1253"></span></p><h3>Step 1 &#8211; Create Movieclips</h3><p>First you need to setup the timeline (you can use the <a href="#sourcecode">example fla file</a>).</p><p><img src="http://s3.flash-effects.com/img/displacement-map-effect-tutorial-create-movieclips-1.gif" /></p><p>Create 4 layer according to the image above. In the &#8220;script&#8221; layer you will later place the ActionScript code. Layer &#8220;label 1&#8243; and &#8220;label 2&#8243; contain the label Movieclips for the default and rollover state. &#8220;bg&#8221; contains a background shape.</p><p>The Movieclip on layer &#8220;label 1&#8243; looks like this:<br /> <img src="http://s3.flash-effects.com/img/displacement-map-effect-tutorial-create-movieclips-2.gif" /><br /> On layer &#8220;text&#8221; you place textfield for the default state. Make sure, that the registration point is the center (both vertical and horizontal) of the Movieclip. Later you will apply a size transition (<code>scaleX</code> and <code>scaleY</code>) to the Movieclip and you want the transition to move to the middle and not the upper left corner.</p><p>The Movieclip on layer &#8220;label 2&#8243; looks like this:<br /> <img src="http://s2.flash-effects.com/img/displacement-map-effect-tutorial-create-movieclips-3.gif" /><br /> Pretty much the same here except the text of the label is different.</p><h3>Step 2 &#8211; Set instance names</h3><p>Set the instance name of the default state Movieclip to &#8220;label1&#8243; and for the rollover state Movieclip to &#8220;label2&#8243;. You do not need the second Movieclip for now, so make the layer &#8220;label 2&#8243; a guide layer (the layer will not be compiled into the swf).</p><h3>Step 3 &#8211; Add DisplacementMap</h3><p>Let&#8217;s get the party started. Copy to following code in the first frame of the layer &#8220;script&#8221;.</p><pre class="brush: jscript; title: ; notranslate">
var perlinBd:BitmapData = new BitmapData(width, height);
perlinBd.perlinNoise(32, 32, 1, 2, false, true);

dpf = new DisplacementMapFilter(perlinBd, new Point(), BitmapDataChannel.BLUE, BitmapDataChannel.GREEN, 32, 32, &amp;quot;color&amp;quot;);			

label1.filters = [dpf];
</pre><p>In line 1 and 2 you create a <code>BitmapData</code> object that will be used as map for the <code>DisplacementMapFilter</code>. In line 1 you initialize the object with the size of the button. In line 2 you apply a <code>perlinNoise()</code> on the <code>BitmapData</code> object. The <code>perlinNoise()</code> method creates a noise image. I won&#8217;t go into details what this does. The <a href="http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/display/BitmapData.html?filter_flex=4.1&#038;filter_flashplayer=10.1&#038;filter_air=2#perlinNoise()">ActionScript reference to perlinNoise()</a> is a good starting point, besides that you can find lots of examples on the web. If you want to see how the perlin bitmap actually looks like, add the following code to line 3: <code>addChild(new Bitmap(perlinBd));</code></p><p>In line 4 you create the <code>DisplacementMapFilter</code> object. Again, for the sake of simplicity here please consult the <a href="http://help.adobe.com/en_US/AS3LCR/Flash_10.0/flash/filters/DisplacementMapFilter.html">ActionScript reference for DisplacementMapFilter</a> to get more details to that filter. For now the important part is the first parameter, where you pass the perlin <code>BitmapData</code> object and parameter 5 and 6, where you set the x- and y-distortion-strength in pixel (they&#8217;re called <a href="http://help.adobe.com/en_US/AS3LCR/Flash_10.0/flash/filters/DisplacementMapFilter.html#scaleX"><code>scaleX</code></a> and <a href="http://help.adobe.com/en_US/AS3LCR/Flash_10.0/flash/filters/DisplacementMapFilter.html#scaleY"><code>scaleY</code></a>).</p><p>In line 5 finally you apply the filter to the label Movieclip. Export the fla. Now you might want to play around with the <code>scaleX</code> and <code>scaleY</code> parameter of the <code>DisplacementMapFilter</code> to understand the filter better, since you need to tween this properties later.</p><h3>Step 4 &#8211; Animate DisplacementMapFilter</h3><p>Now you will animate the filter by putting some TweenLite spice in the soup.</p><pre class="brush: jscript; title: ; notranslate">
import com.greensock.*;
import com.greensock.easing.*;

var perlinBd:BitmapData = new BitmapData(width, height);
perlinBd.perlinNoise(32, 32, 1, 2, false, true);

dpf = new DisplacementMapFilter(perlinBd, new Point(), BitmapDataChannel.BLUE, BitmapDataChannel.GREEN, 0, 0, &amp;quot;color&amp;quot;);			

TweenLite.to(this, 3, {tween:1, ease:Sine.easeInOut});

var _tween:Number = 0;

function get tween() : Number
{
	return _tween;
}

function set tween(tween : Number) : void
{
	_tween = tween;

	dpf.scaleX = 48 * _tween;
	dpf.scaleY = 48 * _tween;

	label1.filters = [dpf];
}
</pre><p>If you already familiar with TweenLite you know, that you can animate a lot of things with TweenLite. x- and y-position, alpha and even some Papervision3D properties (to name only a few). However, to animate the properties <code>scaleX</code> and <code>scaleY</code> of a <code>DisplacementMapFilter</code> there is no build-in parameter. So you need your own custom tween method.</p><p>In line 11 you first create the variable <code>_tween</code> with the value 0. After that you create the getter and setter method for that variable. Note that the setter method not only sets the value but also sets the strength of the filter. In line 22 and 23 the magic happens. To put it simple: If <code>_tween</code> is 0 scaleX and scaleY are 0, if <code>_tween</code> is 1 they both are 48 (which you want to be the max strength of the animation). So how to get the values in between?</p><p>Simply by letting TweenLite do the work. In line 9 you tell TweenLite to animate the variable <code>tween</code> (you build getter and setter for that) with a duration of 3 seconds and the Sine ease (<a href="http://www.greensock.com/tweenlite/">here you find the bullet proof documentation of TweenLite</a>).</p><p>Make sure that the TweenLite package is in the same folder as your fla file and import the classes in line 1 and 2.</p><p>Export. Magic!</p><h3>Step 5 &#8211; DisplacementMapFilter animation on mouse over</h3><p>Since you want the effect to appear only on mouse over you need to set the corresponding event handlers.</p><pre class="brush: jscript; title: ; notranslate">
import com.greensock.*;
import com.greensock.easing.*;

var perlinBd:BitmapData = new BitmapData(width, height);
perlinBd.perlinNoise(32, 32, 1, 2, false, true);

dpf = new DisplacementMapFilter(perlinBd, new Point(), BitmapDataChannel.BLUE, BitmapDataChannel.GREEN, 0, 0, &amp;quot;color&amp;quot;);			

addEventListener(MouseEvent.MOUSE_OVER, btnRollOver);
addEventListener(MouseEvent.MOUSE_OUT, btnRollOut);

function btnRollOver(e:Event)
{
	TweenLite.to(this, 1.2, {tween:1, ease:Sine.easeInOut});
}

function btnRollOut(e:Event)
{
	TweenLite.to(this, 0.6, {tween:0, ease:Sine.easeInOut});
}

var _tween:Number = 0;

function get tween() : Number
{
	return _tween;
}

function set tween(tween : Number) : void
{
	_tween = tween;

	dpf.scaleX = 48 * _tween;
	dpf.scaleY = 48 * _tween;

	label1.filters = [dpf];
}
</pre><p>You add the mouse event stuff in line 9 to 20. Note that the <code>btnRollOut</code> function tweens the <code>tween</code> variable back to 0, so the effect runs backwards. Also note, that you adjusted the duration of the tween a little. The rollout tween runs only half as long as the rollover tween (1.2 vs. 0.6 seconds). Thats because the user generally expects the out-transition to be faster, so he can focus on other things. However, now that you know that rule, feel free to break it&#8230; <img src='http://s2.flash-effects.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p><h3>Step 6 &#8211; Add rollover label and fine tuning</h3><p>Almost done, now you add the rollover label Movieclip and so some fine tuning.</p><pre class="brush: jscript; title: ; notranslate">
import com.greensock.*;
import com.greensock.easing.*;

label2.scaleX = 0.5;
label2.scaleY = 0.5;
label2.alpha = 0;

var perlinBd:BitmapData = new BitmapData(width, height);
perlinBd.perlinNoise(32, 32, 1, 2, false, true);

dpf = new DisplacementMapFilter(perlinBd, new Point(), BitmapDataChannel.BLUE, BitmapDataChannel.GREEN, 0, 0, &amp;quot;color&amp;quot;);			

addEventListener(MouseEvent.MOUSE_OVER, btnRollOver);
addEventListener(MouseEvent.MOUSE_OUT, btnRollOut);

function btnRollOver(e:Event)
{
	TweenLite.to(this, 0.65, {tween:1, ease:Sine.easeInOut});
	TweenLite.to(label1, 0.65, {scaleX:1.5, scaleY:1.5, alpha:0.25, ease:Sine.easeInOut});
	TweenLite.to(label2, 0.5, {scaleX:1, scaleY:1, alpha:1, delay:0.15, ease:Sine.easeInOut});
}

function btnRollOut(e:Event)
{
	TweenLite.to(this, 0.5, {tween:0, ease:Sine.easeInOut});
	TweenLite.to(label1, 0.5, {scaleX:1, scaleY:1, alpha:1, ease:Sine.easeInOut});
	TweenLite.to(label2, 0.5, {scaleX:0.5, scaleY:0.5, alpha:0, ease:Sine.easeInOut});
}

var _tween:Number = 0;

function get tween() : Number
{
	return _tween;
}

function set tween(tween : Number) : void
{
	_tween = tween;

	dpf.scaleX = 48 * _tween;
	dpf.scaleY = 48 * _tween;

	label1.filters = [dpf];
}
</pre><p>First make the layer &#8220;label 2&#8243; to a normal layer (no guide anymore).</p><p>So the rollover Movieclip is there, but it should be invisible until the rollover (line 6). Also you want the Movieclip to scale up on rollover, so you set the initial size to half the original size (line 4 and 5).</p><p>In line 20 and 27 you set the tweening for the rollover label Movieclip. On rollover it tweens to original size (<code>scaleX:1</code> and <code>scaleY:1</code>) and gets visible (<code>alpha:1</code>). Also the tween has a tiny delay (<code>delay:0.15</code>) because you first want to animate the default state label Movieclip animate a bit, before the rollover Movieclip hits the scene.</p><p>Besides that you apply a additional tweening on &#8220;label1&#8243; (line 19 and 26). On rollover &#8220;label1&#8243; tweens to a size of 150% (<code>scaleX:1.5</code> and <code>scaleY:1.5</code>) and it fades to 25% alpha (<code>alpha:0.25</code>). On rollout it tweens back to original values.</p><h3>Step 6 &#8211; Yeah, done!</h3><p>Now you have a cool rollover effect with the <code>DisplacementMapFilter</code> and TweenLite. And &#8211; of course &#8211; the fun just started. Play around with the values. Have a closer look (learn!) the <code>DisplacementMapFilter</code> and the <code>perlinNoise()</code> method.</p><p>You found a setting that looks even cooler? Let us know and post a comment.</p><h3><a name="sourcecode">Source code</a></h3><p>The source code can be <a href="http://s2.flash-effects.com/download/displacement-map-effect-as3.zip">found here</a>.<br /> <a href="http://www.greensock.com/tweenlite/">TweenLite source code and examples</a>.<br /> AS2 version of the effect on request.</p> ]]></content:encoded> <wfw:commentRss>http://flash-effects.com/displacementmap-mouseover-effect-tweenlite/feed/</wfw:commentRss> <slash:comments>10</slash:comments> </item> <item><title>Super simple blur rollover effect example with TweenLite (AS2 and AS3)</title><link>http://flash-effects.com/blur-rollover-effect-example-tweenlite/</link> <comments>http://flash-effects.com/blur-rollover-effect-example-tweenlite/#comments</comments> <pubDate>Thu, 19 Aug 2010 21:00:43 +0000</pubDate> <dc:creator>FE-Team</dc:creator> <category><![CDATA[Uncategorized]]></category> <category><![CDATA[ActionScript]]></category> <category><![CDATA[as2]]></category> <category><![CDATA[as3]]></category> <category><![CDATA[blur]]></category> <category><![CDATA[blur filter]]></category> <category><![CDATA[blur transition]]></category> <category><![CDATA[effect]]></category> <category><![CDATA[fade in]]></category> <category><![CDATA[fade out]]></category> <category><![CDATA[flash]]></category> <category><![CDATA[rollover]]></category> <category><![CDATA[transition]]></category> <category><![CDATA[tweenlite]]></category><guid isPermaLink="false">http://flash-effects.com/?p=1230</guid> <description><![CDATA[TweenLite is without a questions one of the most powerful Flash tools out there. If you haven&#8217;t so far, check it out right now! Here a example of how to create a blur rollover effect in 30 sec. Both for the AS2 and AS3 example make sure you have the TweenLite classes in the same [...]]]></description> <content:encoded><![CDATA[<p>TweenLite is without a questions one of the most powerful Flash tools out there. If you haven&#8217;t so far, <a href="http://www.greensock.com/tweenlite/">check it out right now</a>!</p><p>Here a example of how to create a blur rollover effect in 30 sec.</p><p><a title="roll over button" rel="lightbox;width=450;height=300" href="http://s2.flash-effects.com/swf/rollover-blur-effect-as2.swf"><img src="http://s1.flash-effects.com/img/blur-rollover-effect-tweenlite.png" width="451" height="301" alt="roll over button" /></a><br /> <span id="more-1230"></span></p><p>Both for the AS2 and AS3 example make sure you have the TweenLite classes in the same folder as your fla (the first folder of the package &#8220;com&#8221;).</p><p><strong>AS2 version</strong>:</p><pre class="brush: jscript; title: ; notranslate">
import com.greensock.*; 

btn.onRollOver = btnRollOver;
btn.onRollOut = btnRollOut;

function btnRollOver()
{
	TweenMax.to(btn, .6, {blurFilter:{blurX:12, blurY:12}});
}

function btnRollOut()
{
	TweenMax.to(btn, .6, {blurFilter:{blurX:0, blurY:0}});
}
</pre><p>In line 1 the necessary TweenLite classes are imported (again, make sure, that the TweenLite package is in the same folder as your fla file).</p><p>The events are mapped to the designated function in line 3 and 4.</p><p>Inside the functions the tween behavior is applied to the Movieclip &#8220;btn&#8221; (which needs to be set in the fla file, please consult example fla if unclear). In the function &#8220;btnRollOver&#8221; a blur transition (both x- and y-wise) with the strength of 8 and a duration of 0.6 sec is applied, where the function &#8220;btnRollOut&#8221; goes the opposite direction and sets the blur back to 0.</p><p><a href="http://s2.flash-effects.com/download/rollover-blur-effect-as2.zip">Download source file</a></p><p><strong>AS3 version</strong>:</p><pre class="brush: jscript; title: ; notranslate">
import com.greensock.*;

btn.addEventListener(MouseEvent.MOUSE_OVER, btnRollOver);
btn.addEventListener(MouseEvent.MOUSE_OUT, btnRollOut);

function btnRollOver(e:Event)
{
	TweenMax.to(btn, .6, {blurFilter:{blurX:12, blurY:12}});
}

function btnRollOut(e:Event)
{
	TweenMax.to(btn, .6, {blurFilter:{blurX:0, blurY:0}});
}
</pre><p>Basically the same as in the AS2 is happening. However, the mouse event are handled differently in AS3.</p><p><a href="http://s1.flash-effects.com/download/rollover-blur-effect-as3.zip">Download source file</a></p> ]]></content:encoded> <wfw:commentRss>http://flash-effects.com/blur-rollover-effect-example-tweenlite/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>You can expect more from us in the future!</title><link>http://flash-effects.com/expect-more/</link> <comments>http://flash-effects.com/expect-more/#comments</comments> <pubDate>Wed, 18 Aug 2010 09:38:40 +0000</pubDate> <dc:creator>FE-Team</dc:creator> <category><![CDATA[Uncategorized]]></category><guid isPermaLink="false">http://flash-effects.com/?p=1225</guid> <description><![CDATA[Long time no see. This will change! We&#8217;re not the only one who love to create amazing effects with Flash. From now you can find reviews, links and tutorials from all the interweb right here. Also if you have a link that might be interesting to the readers of this blog, get in touch with [...]]]></description> <content:encoded><![CDATA[<p>Long time no see. This will change!</p><p>We&#8217;re not the only one who love to create amazing effects with Flash. From now you can find reviews, links and tutorials from all the interweb right here.</p><p>Also if you have a link that might be interesting to the readers of this blog, get in touch with us.</p> ]]></content:encoded> <wfw:commentRss>http://flash-effects.com/expect-more/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>This blog has a theme now!</title><link>http://flash-effects.com/finally-with-theme/</link> <comments>http://flash-effects.com/finally-with-theme/#comments</comments> <pubDate>Sun, 03 Jan 2010 22:03:28 +0000</pubDate> <dc:creator>FE-Team</dc:creator> <category><![CDATA[Uncategorized]]></category><guid isPermaLink="false">http://flash-effects.com/?p=1194</guid> <description><![CDATA[Finally! The guys from billionstudio produced it. Great job! And by the way, new tutorials are just around the corner. Watch out!]]></description> <content:encoded><![CDATA[<p>Finally! <img src='http://s3.flash-effects.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> The guys from <a href="http://www.billionstudio.com/">billionstudio</a> produced it. Great job!</p><p>And by the way, new tutorials are just around the corner. Watch out!</p> ]]></content:encoded> <wfw:commentRss>http://flash-effects.com/finally-with-theme/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Image transition effects for Flash roundup &#8211; Part 2</title><link>http://flash-effects.com/image-transition-effects-for-flash-roundup-part-2/</link> <comments>http://flash-effects.com/image-transition-effects-for-flash-roundup-part-2/#comments</comments> <pubDate>Tue, 25 Aug 2009 13:24:17 +0000</pubDate> <dc:creator>FE-Team</dc:creator> <category><![CDATA[Uncategorized]]></category> <category><![CDATA[effect]]></category> <category><![CDATA[effect overview]]></category> <category><![CDATA[effect roundup]]></category> <category><![CDATA[flash]]></category> <category><![CDATA[image]]></category> <category><![CDATA[transition]]></category><guid isPermaLink="false">http://flash-effects.com/?p=1140</guid> <description><![CDATA[Click here for part 1 of the roundup Drain transition Read complete tutorial Swirl transition Read complete tutorial Wobble transition Read complete tutorial Burning paper transition Read complete tutorial 3D tiles transition Read complete tutorial]]></description> <content:encoded><![CDATA[<div style="border:1px solid grey; padding:8px; margin-right:20px; margin-top:10px"><a href="http://flash-effects.com/image-transition-effects-for-flash-roundup-part-1/">Click here for <b>part 1</b> of the roundup</a></div><h3>Drain transition</h3><p><a rel="lightbox;width=550;height=400" href="http://s1.flash-effects.com/swf/drain-animation-tutorial.swf"><img src="http://s2.flash-effects.com/wp-content/uploads/2009/07/drain-effect-tutorial-swf-image.jpg" alt="flash drain transition" /></a><br /> <a href="http://flash-effects.com/tutorial-drain-transition-slideshow/">Read complete tutorial</a></p><h3>Swirl transition</h3><p><a title="" rel="lightbox;width=550;height=400" href="http://s2.flash-effects.com/swf/swirl-transition-effect-tutorial.swf"><img src="http://s2.flash-effects.com/wp-content/uploads/2009/06/swirl-transition-effect-swf-image.jpg" alt="flash swirl transition" /></a><br /> <a href="http://flash-effects.com/tutorial-flash-swirl-transition-effect/">Read complete tutorial</a></p><h3>Wobble transition</h3><p><a title="" rel="lightbox;width=550;height=400" href="http://s1.flash-effects.com/swf/wobble-effect-tutorial.swf"><img src="http://s3.flash-effects.com/wp-content/uploads/2009/06/tutorial-wobble-effect-swf-image.jpg" alt="flash wobble transition" /></a><br /> <a href="http://flash-effects.com/tutorial-wobble-effect-on-image/">Read complete tutorial</a></p><h3>Burning paper transition</h3><p><a rel="lightbox;width=550;height=400" href="http://s3.flash-effects.com/swf/burning-paper-tutorial.swf"><img src="http://s3.flash-effects.com/wp-content/uploads/2009/02/burning-paper-swf-image.jpg" alt="flash burn transition" /></a><br /> <a href="http://flash-effects.com/create-burning-paper-transition-on-your-image/">Read complete tutorial</a></p><h3>3D tiles transition</h3><p><a title="" rel="lightbox;width=550;height=400" href="http://s2.flash-effects.com/swf/flying-tile-tutorial.swf"><img src="http://s1.flash-effects.com/wp-content/uploads/2009/02/tile-3d-transition-swf-image.jpg" alt="flash 3d tile transition" /></a><br /> <a href="http://flash-effects.com/tutorial-image-transition-flying-tile-3d/">Read complete tutorial</a></p> ]]></content:encoded> <wfw:commentRss>http://flash-effects.com/image-transition-effects-for-flash-roundup-part-2/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Waving flag effect</title><link>http://flash-effects.com/tutorial-waving-flag-effect/</link> <comments>http://flash-effects.com/tutorial-waving-flag-effect/#comments</comments> <pubDate>Tue, 28 Jul 2009 07:35:22 +0000</pubDate> <dc:creator>FE-Team</dc:creator> <category><![CDATA[Uncategorized]]></category> <category><![CDATA[effect]]></category> <category><![CDATA[flag]]></category> <category><![CDATA[flash]]></category> <category><![CDATA[waving flag]]></category><guid isPermaLink="false">http://flash-effects.com/?p=1092</guid> <description><![CDATA[Summary In this tutorial you will learn how to apply a waving flag effect on image Movieclips. This is the final result: Requirements Flash 8, Flash CS3 or Flash CS4. Note: The screenshot in this tutorial is made in Flash CS3. It works exactly the same in Flash 8 or Flash CS4. This tutorial is [...]]]></description> <content:encoded><![CDATA[<h3>Summary</h3><p>In this tutorial you will learn how to apply a waving flag effect on image Movieclips.</p><p>This is the final result:</p><p><a rel="lightbox;width=550;height=400" href="http://s3.flash-effects.com/swf/flag-effect-tutorial.swf"><img src="http://s1.flash-effects.com/wp-content/uploads/2009/07/tutorial-waving-flag-swf-image.jpg" alt="" /></a><br /> <span id="more-1092"></span></p><h3>Requirements</h3><p>Flash 8, Flash CS3 or Flash CS4.</p><p><strong>Note:</strong> The screenshot in this tutorial is made in Flash CS3. It works exactly the same in Flash 8 or Flash CS4. This tutorial is a ActionScript 2 Project (although no ActionScript is required). This effect is also available as ActionScript 3 version.</p><h3>Step 1 &#8211; Install the effect component</h3><p>Download the <a href="http://www.flash-filter.net/waving-flag-effect.phtml">Waving Flag Effect here</a>. Please follow the <a href="http://www.flash-filter.net/video/install/">install instructions</a> and drag the component from the component panel into the libary of your .fla file.</p><p><a title="Drag component into library" rel="lightbox" href="http://s3.flash-effects.com/wp-content/uploads/2009/07/tutorial-waving-flag-01.jpg"><img src="http://s2.flash-effects.com/wp-content/uploads/2009/07/tutorial-waving-flag-01-small.jpg" alt="Drag component into library" /></a></p><h3>Step 2 &#8211; Import image and convert to Movieclip</h3><p>Import an images [press Ctrl-R] or “File” -&gt; “Import” -&gt; “Import to Stage…”.</p><p><a title="Import image to stage" rel="lightbox" href="http://s2.flash-effects.com/wp-content/uploads/2009/07/tutorial-waving-flag-02.jpg"><img src="http://s1.flash-effects.com/wp-content/uploads/2009/07/tutorial-waving-flag-02-small.jpg" alt="Import images to stage" /></a></p><p>Select the image and convert it into a Movieclip [press F8] or right click on the MovieClip -&gt; “Convert to Symbol…”. Give the Movieclip the name “image”.</p><p><a title="Convert image to Movieclip" rel="lightbox" href="http://s2.flash-effects.com/wp-content/uploads/2009/07/tutorial-waving-flag-03.jpg"><img src="http://s2.flash-effects.com/wp-content/uploads/2009/07/tutorial-waving-flag-03-small.jpg" alt="Convert image to Movieclip" /></a></p><p><a title="Set name of image Movieclip" rel="lightbox" href="http://s1.flash-effects.com/wp-content/uploads/2009/07/tutorial-waving-flag-04.jpg"><img src="http://s1.flash-effects.com/wp-content/uploads/2009/07/tutorial-waving-flag-04-small.jpg" alt="Set name of image Movieclip" /></a></p><p>Select the just created Movieclip on stage and set the instance name to &#8220;image_mc&#8221;.</p><p><a title="Set instance name of Movieclip" rel="lightbox" href="http://s2.flash-effects.com/wp-content/uploads/2009/07/tutorial-waving-flag-05.jpg"><img src="http://s2.flash-effects.com/wp-content/uploads/2009/07/tutorial-waving-flag-05-small.jpg" alt="Set instance name of Movieclip" /></a></p><h3>Step 3 &#8211; Apply effect and set parameter</h3><p>Drag the component onto the Movieclip. The component snaps automatically.</p><p><a title="Drag component onto shape Movieclip" rel="lightbox" href="http://s1.flash-effects.com/wp-content/uploads/2009/07/tutorial-waving-flag-06.jpg"><img src="http://s1.flash-effects.com/wp-content/uploads/2009/07/tutorial-waving-flag-06-small.jpg" alt="Drag component onto shape Movieclip" /></a></p><p>Open the component inspector panel: &#8220;Windows&#8221; -&gt; &#8220;Component Inspector&#8221;. Here you can set the parameters for the effect. All Movieclips with instance names in this frame are listed in the “Target Movieclip” select list. Since you have only one Movieclip the component assumes that you want to apply the effect on the Movieclip “image_mc”. Here you can set the options for the effect.</p><p><a title="Check component inspector" rel="lightbox" href="http://s1.flash-effects.com/wp-content/uploads/2009/07/tutorial-waving-flag-07.jpg"><img src="http://s3.flash-effects.com/wp-content/uploads/2009/07/tutorial-waving-flag-07-small.jpg" alt="Check component inspector" /></a></p><p>Note: These settings are only applied to this one instance of the effect component. If you drag the component on another Movieclip (somewhere else inside the .fla or in a new project) you have to set the settings again.</p><h3>Step 4 &#8211; Export</h3><p>Export the Movie Command -&gt; &#8220;Test Movie&#8221; or press [Ctrl-ENTER] and see the result. If you&#8217;re not satisfied, go back and change the settings in the component inspector panel.</p><p><a title="Result" rel="lightbox" href="http://s1.flash-effects.com/wp-content/uploads/2009/07/tutorial-waving-flag-08.jpg"><img src="http://s3.flash-effects.com/wp-content/uploads/2009/07/tutorial-waving-flag-08-small.jpg" alt="Result" /></a></p><h3>Step 5 &#8211; Play!</h3><p>Now you can play around with the parameter, to customize you effect. You can also use this effect with ActionScript. Find the <a href="http://www.flash-filter.net/waving-flag-effect-implement.phtml">full documentation here</a>.</p><h3>Download</h3><p><a href="http://s3.flash-effects.com/download/flash-waving-flag-tutorial.zip">Click here</a> to download the fla of this tutorial. Note: The .fla includes the trial version of the effect component, which will only work in the Flash IDE (Flash 8, Flash CS3 or Flash CS4) but not inside the browser.</p><p>You can also download the <a href="http://www.flash-filter.net/waving-flag-effect.phtml">Flash Waving Flag Effect Component here</a>.</p><p>Here you can find a <a href="http://www.flash-filter.net/video/implement/">video tutorial of how to implement a different effect</a>.</p> ]]></content:encoded> <wfw:commentRss>http://flash-effects.com/tutorial-waving-flag-effect/feed/</wfw:commentRss> <slash:comments>6</slash:comments> </item> <item><title>Drain transition effect animation</title><link>http://flash-effects.com/tutorial-drain-transition-slideshow/</link> <comments>http://flash-effects.com/tutorial-drain-transition-slideshow/#comments</comments> <pubDate>Tue, 21 Jul 2009 07:31:11 +0000</pubDate> <dc:creator>FE-Team</dc:creator> <category><![CDATA[Uncategorized]]></category> <category><![CDATA[drain transition]]></category> <category><![CDATA[effect]]></category> <category><![CDATA[flash]]></category> <category><![CDATA[image]]></category> <category><![CDATA[suck]]></category> <category><![CDATA[transition]]></category><guid isPermaLink="false">http://flash-effects.com/?p=1031</guid> <description><![CDATA[Summary In this tutorial you will learn how to create a drain transition effect where one image &#8220;suck&#8221; to another. You can set the duration (in frames) of the transition, the point where the images drain to and other options. No ActionScript is required, you&#8217;ll work only on timeline and set the parameter of the [...]]]></description> <content:encoded><![CDATA[<h3>Summary</h3><p>In this tutorial you will learn how to create a drain transition effect where one image &#8220;suck&#8221; to another. You can set the duration (in frames) of the transition, the point where the images drain to and other options. No ActionScript is required, you&#8217;ll work only on timeline and set the parameter of the effect inside the component inspector.</p><p>Here the final result:</p><p><a rel="lightbox;width=550;height=400" href="http://s1.flash-effects.com/swf/drain-animation-tutorial.swf"><img src="http://s2.flash-effects.com/wp-content/uploads/2009/07/drain-effect-tutorial-swf-image.jpg" alt="" /></a><br /> <span id="more-1031"></span></p><h3>Requirements</h3><p>Flash 8, Flash CS3 or Flash CS4.<br /> Two images (in this case 550&#215;400, image available in the <a href="http://s3.flash-effects.com/download/flash-drain-effect-tutorial.zip">tutorial zip file</a>)</p><p><strong>Note:</strong> The screenshots in this tutorial are made in Flash CS3. It works exactly the same with Flash 8 and  Flash CS4. This tutorial is an ActionScript 2 Project (the component is also available as AS3 version).</p><h3>Step 1 &#8211; Install the effect component</h3><p>Download the <a href="http://www.flash-filter.net/drain-transition-effect.phtml">Drain Transition Effect</a>. Please follow the <a href="http://www.flash-filter.net/video/install/">installation instructions</a> and drag the component from the component panel into the library of your .fla file.</p><p><a title="Drag component into library" rel="lightbox" href="http://s2.flash-effects.com/wp-content/uploads/2009/07/drain-effect-tutorial-01.jpg"><img src="http://s3.flash-effects.com/wp-content/uploads/2009/07/drain-effect-tutorial-01-small.jpg" alt="Drag component into library" /></a></p><h3>Step 2 &#8211; Import Slideshow images</h3><p>Import two images [press Ctrl-R] or “File” -&gt; “Import” -&gt; “Import to Stage…”.</p><p><a title="Import images to stage" rel="lightbox" href="http://s2.flash-effects.com/wp-content/uploads/2009/07/drain-effect-tutorial-02.jpg"><img src="http://s1.flash-effects.com/wp-content/uploads/2009/07/drain-effect-tutorial-02-small.jpg" alt="Import images to stage" /></a></p><p>Select the frist image and convert it into a Movieclip [press F8] or right click on the MovieClip -&gt; “Convert to Symbol…”. Give the Movieclip the name “image1”.</p><p><a title="Convert first image to Movieclip" rel="lightbox" href="http://s1.flash-effects.com/wp-content/uploads/2009/07/drain-effect-tutorial-03.jpg"><img src="http://s2.flash-effects.com/wp-content/uploads/2009/07/drain-effect-tutorial-03-small.jpg" alt="Convert first image to Movieclip" /></a></p><p><a title="Set name of first image Movieclip" rel="lightbox" href="http://s2.flash-effects.com/wp-content/uploads/2009/07/drain-effect-tutorial-04.jpg"><img src="http://s3.flash-effects.com/wp-content/uploads/2009/07/drain-effect-tutorial-04-small.jpg" alt="Set name of first image Movieclip" /></a></p><p>Select the second image and convert it into a Movieclip [press F8] or right click on the MovieClip -&gt; “Convert to Symbol…”. Give the Movieclip the name “image2”.</p><p><a title="Convert second image to Movieclip" rel="lightbox" href="http://s2.flash-effects.com/wp-content/uploads/2009/07/drain-effect-tutorial-05.jpg"><img src="http://s3.flash-effects.com/wp-content/uploads/2009/07/drain-effect-tutorial-05-small.jpg" alt="Convert second image to Movieclip" /></a></p><p><a title="Set name of second image Movieclip" rel="lightbox" href="http://s3.flash-effects.com/wp-content/uploads/2009/07/drain-effect-tutorial-06.jpg"><img src="http://s2.flash-effects.com/wp-content/uploads/2009/07/drain-effect-tutorial-06-small.jpg" alt="Set name of second image Movieclip" /></a></p><h3>Step 3 &#8211; Set instance name of image Movieclip</h3><p>Give the Movieclip of the first image the instance name “my_image_01” (You can choose a different name if you want. Make sure that the instance name is unique). Without an instance name the component is unable to detect the Movieclip. Set the instance name for the second image Movieclip to &#8220;my_image_02&#8243;.</p><p><a title="Set instance name of first image Movieclip" rel="lightbox" href="http://s2.flash-effects.com/wp-content/uploads/2009/07/drain-effect-tutorial-07.jpg"><img src="http://s2.flash-effects.com/wp-content/uploads/2009/07/drain-effect-tutorial-07-small.jpg" alt="Set instance name of first image Movieclip" /></a></p><p><a title="Set instance name of second image Movieclip" rel="lightbox" href="http://s3.flash-effects.com/wp-content/uploads/2009/07/drain-effect-tutorial-08.jpg"><img src="http://s1.flash-effects.com/wp-content/uploads/2009/07/drain-effect-tutorial-08-small.jpg" alt="Set instance name of second image Movieclip" /></a></p><h3>Step 4 &#8211; Apply effect</h3><p>Drag the component from the library onto the upper Movieclip. The effect component will snap automatically.</p><p><a title="Drag component onto Movieclip" rel="lightbox" href="http://s3.flash-effects.com/wp-content/uploads/2009/07/drain-effect-tutorial-09.jpg"><img src="http://s3.flash-effects.com/wp-content/uploads/2009/07/drain-effect-tutorial-09-small.jpg" alt="Drag component onto Movieclip" /></a></p><h3>Step 5 &#8211; Adjust settings of the effect</h3><p>Click on the component and open the component inspector panel [press SHIFT-F7] or “Window” -&gt; “Component Inspector”. In the “Start Movieclip” select list, “my_image_01” should be selected.</p><p><a title="Target Movieclips in component inspector" rel="lightbox" href="http://s3.flash-effects.com/wp-content/uploads/2009/07/drain-effect-tutorial-10.jpg"><img src="http://s3.flash-effects.com/wp-content/uploads/2009/07/drain-effect-tutorial-10-small.jpg" alt="Target Movieclips in component inspector" /></a></p><p>All Movieclips with instance names in this frame are listed in the “Target Movieclip” select list. Since you draged the effect on the Movieclip &#8220;my_image_01&#8243;, this is the frist Movieclip. As &#8220;End Movieclip&#8221; select &#8220;my_image_02&#8243;. Leave the other setting blank for now. Export the flash movie [press Ctrl-ENTER] or &#8220;Command&#8221; -&gt; “Test Movie” and you&#8217;ll see that the image transition.</p><p><a title="Result" rel="lightbox" href="http://s2.flash-effects.com/wp-content/uploads/2009/07/drain-effect-tutorial-11.jpg"><img src="http://s2.flash-effects.com/wp-content/uploads/2009/07/drain-effect-tutorial-11-small.jpg" alt="Result" /></a></p><h3>Step 6 &#8211; Play!</h3><p>Play around with the other parameters inside the component inspector. The <a href="http://www.flash-filter.net/drain-transition-effect-implement.phtml">documentation</a> of the settings can be <a href="http://www.flash-filter.net/drain-transition-effect-implement.phtml">found here</a>. You can also use this effect with ActionScript.</p><h3>Download</h3><p><a href="http://s3.flash-effects.com/download/flash-drain-effect-tutorial.zip">Click here</a> to download the .fla of this tutorial. Note: The .fla includes the trial version of the effect component, which will only work in the Flash IDE (Flash 8, Flash CS3 or Flash CS4) but not inside the browser.</p><p>Here you can find a <a href="http://www.flash-filter.net/video/implement/" target="_blank">video tutorial of how to implement a different effect.</a></p> ]]></content:encoded> <wfw:commentRss>http://flash-effects.com/tutorial-drain-transition-slideshow/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Heat haze (fata morgana) effect for images</title><link>http://flash-effects.com/tutorial-heat-haze-effect/</link> <comments>http://flash-effects.com/tutorial-heat-haze-effect/#comments</comments> <pubDate>Tue, 14 Jul 2009 15:30:40 +0000</pubDate> <dc:creator>FE-Team</dc:creator> <category><![CDATA[Uncategorized]]></category> <category><![CDATA[effect]]></category> <category><![CDATA[fata morgana]]></category> <category><![CDATA[flash]]></category> <category><![CDATA[heat haze]]></category><guid isPermaLink="false">http://flash-effects.com/?p=1033</guid> <description><![CDATA[Summary In this tutorial you will learn how to apply a fata morgana effect on image Movieclips. You can set the speed and angle of the haze. This effect works with animated content and video. This is the final result: Requirements Flash 8, Flash CS3 or Flash CS4. Note: The screenshot in this tutorial is [...]]]></description> <content:encoded><![CDATA[<h3>Summary</h3><p>In this tutorial you will learn how to apply a fata morgana effect on image Movieclips. You can set the speed and angle of the haze. This effect works with animated content and video.</p><p>This is the final result:</p><p><a rel="lightbox;width=550;height=400" href="http://s1.flash-effects.com/swf/heat-haze-effect.swf"><img src="http://s3.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-swf-image.jpg" alt="" /></a><br /> <span id="more-1033"></span></p><h3>Requirements</h3><p>Flash 8, Flash CS3 or Flash CS4.</p><p><strong>Note:</strong> The screenshot in this tutorial is made in Flash CS3. It works exactly the same in Flash 8 or Flash CS4. This tutorial is a ActionScript 2 Project (although no ActionScript is required). This effect is also available as ActionScript 3 version.</p><h3>Step 1 &#8211; Install the effect component</h3><p>Download the <a href="http://www.flash-filter.net/heat-haze-effect.phtml">Heat Haze Effect here</a>. Please follow the <a href="http://www.flash-filter.net/video/install/">install instructions</a> and drag the component from the component panel into the libary of your .fla file.</p><p><a title="Drag component into library" rel="lightbox" href="http://s2.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-01.jpg"><img src="http://s2.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-01-small.jpg" alt="Drag component into library" /></a></p><h3>Step 2 &#8211; Import image and convert to Movieclip</h3><p>Import an image [press Ctrl-R] or &#8220;File&#8221; -&gt; &#8220;Import&#8221; -&gt; &#8220;Import to Stage&#8230;&#8221;.</p><p><a title="Import image to stage" rel="lightbox" href="http://s1.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-02.jpg"><img src="http://s1.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-02-small.jpg" alt="Import images to stage" /></a></p><p>Select the image and convert it into a Movieclip [press F8] or right click on the MovieClip -&gt; &#8220;Convert to Symbol…&#8221;. Give the Movieclip the name &#8220;image&#8221;.</p><p><a title="Convert image to Movieclip" rel="lightbox" href="http://s2.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-03.jpg"><img src="http://s1.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-03-small.jpg" alt="Convert image to Movieclip" /></a></p><p><a title="Set name of image Movieclip" rel="lightbox" href="http://s1.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-04.jpg"><img src="http://s2.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-04-small.jpg" alt="Set name of image Movieclip" /></a></p><p>Select the just created Movieclip on stage and set the instance name to &#8220;image_mc&#8221;.</p><p><a title="Set instance name of Movieclip" rel="lightbox" href="http://s3.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-05.jpg"><img src="http://s1.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-05-small.jpg" alt="Set instance name of Movieclip" /></a></p><h3>Step 3 &#8211; Create shape Movieclip</h3><p>Draw a shape on the canvas (use the pen tool to get a custom shape), select it and convert it into a Movieclip [press F8] or right click on the shape -&gt; &#8220;Convert to Symbol&#8230;&#8221;. Give the Movieclip the name &#8220;shape&#8221;.</p><p><a title="Create shape" rel="lightbox" href="http://s3.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-06.jpg"><img src="http://s2.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-06-small.jpg" alt="Create shape" /></a></p><p><a title="Convert shape to Movieclip" rel="lightbox" href="http://s1.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-07.jpg"><img src="http://s1.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-07-small.jpg" alt="Convert shape to Movieclip" /></a></p><p><a title="Set name of Movieclip" rel="lightbox" href="http://s2.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-08.jpg"><img src="http://s3.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-08-small.jpg" alt="Set name of Movieclip" /></a></p><p>Note: Only the dimensions from the shape Movieclip are taken. The Movieclip will not be visible in the final swf. So color does not mater here.</p><p>Set the instance name of the Movieclip. Use &#8220;shape_mc&#8221;. Its important to set an instance name here, otherwise the component will not find the Movieclip. BTW, the naming is up to you, you can choose another name if you want. Just make sure the instance name is unique project-wide.</p><p><a title="Set instance name of Movieclip" rel="lightbox" href="http://s1.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-09.jpg"><img src="http://s1.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-09-small.jpg" alt="Set instance name of Movieclip" /></a></p><h3>Step 4 &#8211; Apply effect and set parameter</h3><p>Drag the component onto the image Movieclip. The component snaps automatically.</p><p><a title="Drag component onto shape Movieclip" rel="lightbox" href="http://s3.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-10.jpg"><img src="http://s2.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-10-small.jpg" alt="Drag component onto shape Movieclip" /></a></p><p>Open the component inspector panel: &#8220;Windows&#8221; -&gt; &#8220;Component Inspector&#8221;. Here you can set the parameters for the effect. All Movieclips with instance names in this frame are listed in the select lists. Since you dragged the component onto the image Movieclip the component assumes that you want to apply the effect on the Movieclip &#8220;image_mc&#8221;. Set &#8220;Shape Movieclip&#8221; to &#8220;shape_mc&#8221;. Here you can also set the other options of the effect.</p><p><a title="Check component inspector" rel="lightbox" href="http://s2.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-11.jpg"><img src="http://s3.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-11-small.jpg" alt="Check component inspector" /></a></p><p>Note: These settings are only applied to this one instance of the effect component. If you drag the component on another Movieclip (somewhere else inside the .fla or in a new project) you have to set the settings again.</p><h3>Step 5 &#8211; Export</h3><p>Export the Movie Command -&gt; &#8220;Test Movie&#8221; or press [Ctrl-ENTER] and see the result. If you&#8217;re not satisfied, go back and change the settings in the component inspector panel.</p><p><a title="Result" rel="lightbox" href="http://s1.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-12.jpg"><img src="http://s3.flash-effects.com/wp-content/uploads/2009/07/tutorial-heat-haze-effect-12-small.jpg" alt="Result" /></a></p><h3>Step 6 &#8211; Play!</h3><p>Now you can play around with the parameter, to customize you effect. You can also use this effect with ActionScript. Find the <a href="http://www.flash-filter.net/heat-haze-effect-implement.phtml">full documentation here</a>.</p><h3>Download</h3><p><a href="http://s1.flash-effects.com/download/flash-heat-haze-tutorial.zip">Click here</a> to download the fla of this tutorial. Note: The .fla includes the trial version of the effect component, which will only work in the Flash IDE (Flash 8, Flash CS3 or Flash CS4) but not inside the browser.</p><p>You can also download the <a href="http://www.flash-filter.net/heat-haze-effect.phtml">Flash Heat Haze Effect Component here</a>.</p><p>Here you can find a <a href="http://www.flash-filter.net/video/implement/">video tutorial of how to implement a different effect</a>.</p> ]]></content:encoded> <wfw:commentRss>http://flash-effects.com/tutorial-heat-haze-effect/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Image transition effects for Flash roundup &#8211; Part 1</title><link>http://flash-effects.com/image-transition-effects-for-flash-roundup-part-1/</link> <comments>http://flash-effects.com/image-transition-effects-for-flash-roundup-part-1/#comments</comments> <pubDate>Wed, 01 Jul 2009 14:58:03 +0000</pubDate> <dc:creator>FE-Team</dc:creator> <category><![CDATA[Uncategorized]]></category> <category><![CDATA[effect]]></category> <category><![CDATA[effect overview]]></category> <category><![CDATA[effect roundup]]></category> <category><![CDATA[flash]]></category> <category><![CDATA[image]]></category> <category><![CDATA[transition]]></category><guid isPermaLink="false">http://flash-effects.com/?p=1019</guid> <description><![CDATA[Click here for part 2 of the roundup Pixelation transition Read complete tutorial Mask transition Read complete tutorial TV fuzz transition Read complete tutorial 3D shuffle transition Read complete tutorial Dream transition Read complete tutorial Wipe transition Read complete tutorial Splash transition Read complete tutorial Drip transition Read complete tutorial]]></description> <content:encoded><![CDATA[<div style="border:1px solid grey; padding:8px; margin-right:20px; margin-top:10px"><a href="http://flash-effects.com/image-transition-effects-for-flash-roundup-part-2/">Click here for <b>part 2</b> of the roundup</a></div><h3>Pixelation transition</h3><p><a rel="lightbox;width=550;height=400" href="http://s3.flash-effects.com/swf/pixelation-effect-tutorial.swf"><img src="http://s2.flash-effects.com/wp-content/uploads/2009/06/pixelation-effect-swf-image.jpg" alt="flash pixelation transition" /></a><br /> <a href="http://flash-effects.com/tutorial-pixelation-transition/">Read complete tutorial</a></p><h3>Mask transition</h3><p><a title="" rel="lightbox;width=550;height=400" href="http://s2.flash-effects.com/swf/mask-transition-animation.swf"><img src="http://s3.flash-effects.com/wp-content/uploads/2009/01/mask-transition-animation-swf.jpg" alt="flash mask transition" /></a><br /> <a href="http://flash-effects.com/tutorial-mask-transition-animation/">Read complete tutorial</a></p><h3>TV fuzz transition</h3><p><a title="" rel="lightbox;width=550;height=400" href="http://s1.flash-effects.com/swf/tv-transition-image-slideshow.swf"><img src="http://s1.flash-effects.com/wp-content/uploads/2009/01/tv-transition-slideshow-swf.jpg" alt="flash tv transition" /></a><br /> <a href="http://flash-effects.com/tutorial-tv-transition-image-slideshow/">Read complete tutorial</a></p><h3>3D shuffle transition</h3><p><a rel="lightbox;width=550;height=400" href="http://s1.flash-effects.com/swf/shuffle-transition-tutorial.swf"><img src="http://s3.flash-effects.com/wp-content/uploads/2009/02/shuffle-3d-transition-swf-image.jpg" alt="flash 3d shuffle transition" /></a><br /> <a href="http://flash-effects.com/tutorial-3d-shuffle-image-transition/">Read complete tutorial</a></p><h3>Dream transition</h3><p><a title="" rel="lightbox;width=550;height=400" href="http://s2.flash-effects.com/swf/dream-transition-tutorial.swf"><img src="http://s3.flash-effects.com/wp-content/uploads/2009/02/dream-transition-swf-image.jpg" alt="flash dream transition" /></a><br /> <a href="http://flash-effects.com/create-dream-transition-effect/">Read complete tutorial</a></p><h3>Wipe transition</h3><p><a title="" rel="lightbox;width=550;height=400" href="http://s1.flash-effects.com/swf/wipe-transition-tutorial.swf"><img src="http://s3.flash-effects.com/wp-content/uploads/2009/02/wipe-transition-swf-image.jpg" alt="flash wipe transition" /></a><br /> <a href="http://flash-effects.com/create-wipe-transition-effect/">Read complete tutorial</a></p><h3>Splash transition</h3><p><a title="" rel="lightbox;width=550;height=400" href="http://s1.flash-effects.com/swf/splash-transition-tutorial.swf"><img src="http://s2.flash-effects.com/wp-content/uploads/2009/02/splash-transition-swf-image.jpg" alt="flash splash transition" /></a><br /> <a href="http://flash-effects.com/tutorial-apply-splash-effect-on-images/">Read complete tutorial</a></p><h3>Drip transition</h3><p><a title="" rel="lightbox;width=550;height=400" href="http://s1.flash-effects.com/swf/drip-transition-tutorial.swf"><img src="http://s1.flash-effects.com/wp-content/uploads/2009/02/drip-tutorial-swf-image.jpg" alt="flash drip transition" /></a><br /> <a href="http://flash-effects.com/tutorial-drip-transition-effect/">Read complete tutorial</a></p> ]]></content:encoded> <wfw:commentRss>http://flash-effects.com/image-transition-effects-for-flash-roundup-part-1/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Create Pixelation transition with Flash</title><link>http://flash-effects.com/tutorial-pixelation-transition/</link> <comments>http://flash-effects.com/tutorial-pixelation-transition/#comments</comments> <pubDate>Tue, 16 Jun 2009 07:33:54 +0000</pubDate> <dc:creator>FE-Team</dc:creator> <category><![CDATA[Uncategorized]]></category> <category><![CDATA[effect]]></category> <category><![CDATA[flash]]></category> <category><![CDATA[image]]></category> <category><![CDATA[pixel]]></category> <category><![CDATA[pixelation]]></category> <category><![CDATA[transition]]></category><guid isPermaLink="false">http://flash-effects.com/?p=917</guid> <description><![CDATA[Summary In this tutorial you will learn how to create a pixelation transition effect where one image &#8220;pixelates&#8221; to another. You can set the duration (in frames) of the transition. No ActionScript is required, you&#8217;ll work only on timeline and set the parameter of the effect inside the component inspector. Here the final result: Requirements [...]]]></description> <content:encoded><![CDATA[<h3>Summary</h3><p>In this tutorial you will learn how to create a pixelation transition effect where one image &#8220;pixelates&#8221; to another. You can set the duration (in frames) of the transition. No ActionScript is required, you&#8217;ll work only on timeline and set the parameter of the effect inside the component inspector.</p><p>Here the final result:</p><p><a rel="lightbox;width=550;height=400" href="http://s3.flash-effects.com/swf/pixelation-effect-tutorial.swf"><img src="http://s2.flash-effects.com/wp-content/uploads/2009/06/pixelation-effect-swf-image.jpg" alt="" /></a><br /> <span id="more-917"></span></p><h3>Requirements</h3><p>Flash 8, Flash CS3 or Flash CS4.<br /> Two images (in this case 550&#215;400, image available in the <a href="http://s2.flash-effects.com/download/flash-pixelation-effect-tutorial.zip">tutorial zip file</a>)</p><p><strong>Note:</strong> The screenshots in this tutorial are made in Flash CS3. It works exactly the same with Flash 8 and  Flash CS4. This tutorial is an ActionScript 2 Project (the component is also available as AS3 version).</p><h3>Step 1 &#8211; Install the effect component</h3><p>Download the <a href="http://www.flash-filter.net/pixelation-effect.phtml">Pixelation Effect</a>. Please follow the <a href="http://www.flash-filter.net/video/install/">installation instructions</a> and drag the component from the component panel into the library of your .fla file.</p><p><a title="Drag component into library" rel="lightbox" href="http://s1.flash-effects.com/wp-content/uploads/2009/06/pixelation-effect-tutorial-01.jpg"><img src="http://s3.flash-effects.com/wp-content/uploads/2009/06/pixelation-effect-tutorial-01-small.jpg" alt="Drag component into library" /></a></p><h3>Step 2 &#8211; Import Slideshow images</h3><p>Import two images [press Ctrl-R] or “File” -&gt; “Import” -&gt; “Import to Stage…”.</p><p><a title="Import images to stage" rel="lightbox" href="http://s2.flash-effects.com/wp-content/uploads/2009/06/pixelation-effect-tutorial-02.jpg"><img src="http://s2.flash-effects.com/wp-content/uploads/2009/06/pixelation-effect-tutorial-02-small.jpg" alt="Import images to stage" /></a></p><p>Select the frist image and convert it into a Movieclip [press F8] or right click on the MovieClip -&gt; “Convert to Symbol…”. Give the Movieclip the name “image1”.</p><p><a title="Convert first image to Movieclip" rel="lightbox" href="http://s3.flash-effects.com/wp-content/uploads/2009/06/pixelation-effect-tutorial-03.jpg"><img src="http://s3.flash-effects.com/wp-content/uploads/2009/06/pixelation-effect-tutorial-03-small.jpg" alt="Convert first image to Movieclip" /></a></p><p><a title="Set name of first image Movieclip" rel="lightbox" href="http://s3.flash-effects.com/wp-content/uploads/2009/06/pixelation-effect-tutorial-04.jpg"><img src="http://s3.flash-effects.com/wp-content/uploads/2009/06/pixelation-effect-tutorial-04-small.jpg" alt="Set name of first image Movieclip" /></a></p><p>Select the second image and convert it into a Movieclip [press F8] or right click on the MovieClip -&gt; “Convert to Symbol…”. Give the Movieclip the name “image2”.</p><p><a title="Convert second image to Movieclip" rel="lightbox" href="http://s1.flash-effects.com/wp-content/uploads/2009/06/pixelation-effect-tutorial-05.jpg"><img src="http://s2.flash-effects.com/wp-content/uploads/2009/06/pixelation-effect-tutorial-05-small.jpg" alt="Convert second image to Movieclip" /></a></p><p><a title="Set name of second image Movieclip" rel="lightbox" href="http://s3.flash-effects.com/wp-content/uploads/2009/06/pixelation-effect-tutorial-06.jpg"><img src="http://s3.flash-effects.com/wp-content/uploads/2009/06/pixelation-effect-tutorial-06-small.jpg" alt="Set name of second image Movieclip" /></a></p><h3>Step 3 &#8211; Set instance name of image Movieclip</h3><p>Give the Movieclip of the first image the instance name “my_image_01” (You can choose a different name if you want. Make sure that the instance name is unique). Without an instance name the component is unable to detect the Movieclip. Set the instance name for the second image Movieclip to &#8220;my_image_02&#8243;.</p><p><a title="Set instance name of first image Movieclip" rel="lightbox" href="http://s2.flash-effects.com/wp-content/uploads/2009/06/pixelation-effect-tutorial-07.jpg"><img src="http://s3.flash-effects.com/wp-content/uploads/2009/06/pixelation-effect-tutorial-07-small.jpg" alt="Set instance name of first image Movieclip" /></a></p><p><a title="Set instance name of second image Movieclip" rel="lightbox" href="http://s1.flash-effects.com/wp-content/uploads/2009/06/pixelation-effect-tutorial-08.jpg"><img src="http://s1.flash-effects.com/wp-content/uploads/2009/06/pixelation-effect-tutorial-08-small.jpg" alt="Set instance name of second image Movieclip" /></a></p><h3>Step 4 &#8211; Apply effect</h3><p>Drag the component from the library onto the upper Movieclip. The effect component will snap automatically.</p><p><a title="Drag component onto Movieclip" rel="lightbox" href="http://s3.flash-effects.com/wp-content/uploads/2009/06/pixelation-effect-tutorial-09.jpg"><img src="http://s3.flash-effects.com/wp-content/uploads/2009/06/pixelation-effect-tutorial-09-small.jpg" alt="Drag component onto Movieclip" /></a></p><h3>Step 5 &#8211; Adjust settings of the effect</h3><p>Click on the component and open the component inspector panel [press SHIFT-F7] or “Window” -&gt; “Component Inspector”. In the “Start Movieclip” select list, “my_image_01” should be selected.</p><p><a title="Target Movieclips in component inspector" rel="lightbox" href="http://s2.flash-effects.com/wp-content/uploads/2009/06/pixelation-effect-tutorial-10.jpg"><img src="http://s2.flash-effects.com/wp-content/uploads/2009/06/pixelation-effect-tutorial-10-small.jpg" alt="Target Movieclips in component inspector" /></a></p><p>All Movieclips with instance names in this frame are listed in the “Target Movieclip” select list. Since you draged the effect on the Movieclip &#8220;my_image_01&#8243;, this is the frist Movieclip. As &#8220;End Movieclip&#8221; select &#8220;my_image_01&#8243;. Leave the other setting blank for now. Export the flash movie [press Ctrl-ENTER] or &#8220;Command&#8221; -&gt; “Test Movie” and you&#8217;ll see that the image transition.</p><p><a title="Result" rel="lightbox" href="http://s3.flash-effects.com/wp-content/uploads/2009/06/pixelation-effect-tutorial-11.jpg"><img src="http://s1.flash-effects.com/wp-content/uploads/2009/06/pixelation-effect-tutorial-11-small.jpg" alt="Result" /></a></p><h3>Step 6 &#8211; Play!</h3><p>Play around with the other parameters inside the component inspector. The <a href="http://www.flash-filter.net/pixelation-effect-implement.phtml">documentation</a> of the settings can be <a href="http://www.flash-filter.net/pixelation-effect-implement.phtml">found here</a>. You can also use this effect with ActionScript.</p><h3>Download</h3><p><a href="http://s2.flash-effects.com/download/flash-pixelation-effect-tutorial.zip">Click here</a> to download the .fla of this tutorial. Note: The .fla includes the trial version of the effect component, which will only work in the Flash IDE (Flash 8, Flash CS3 or Flash CS4) but not inside the browser.</p><p>Here you can find a <a href="http://www.flash-filter.net/video/implement/" target="_blank">video tutorial of how to implement a different effect.</a></p> ]]></content:encoded> <wfw:commentRss>http://flash-effects.com/tutorial-pixelation-transition/feed/</wfw:commentRss> <slash:comments>2</slash:comments> </item> </channel> </rss>
<!-- Served from: flash-effects.com @ 2013-05-23 19:30:49 by W3 Total Cache -->