<?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>Flash Scope Blog &#187; Tutorials</title>
	<atom:link href="http://www.flashscope.com/blog/category/tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.flashscope.com/blog</link>
	<description>Blogging about flash, flex and AS</description>
	<lastBuildDate>Wed, 30 Jun 2010 09:14:14 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>ActionScript 3.0 Tutorial: &#8220;Magic Stick&#8221; Stars Mouse Trailer</title>
		<link>http://www.flashscope.com/blog/actionscript-3-0-tutorial-magic-stick-stars-mouse-trailer/</link>
		<comments>http://www.flashscope.com/blog/actionscript-3-0-tutorial-magic-stick-stars-mouse-trailer/#comments</comments>
		<pubDate>Mon, 22 Feb 2010 10:18:03 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[actionscript]]></category>
		<category><![CDATA[flash component]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://www.flashscope.com/blog/?p=288</guid>
		<description><![CDATA[
This is a basic tutorial for creating a nice looking mouse trailer using ActionScript 3.0.
Here&#8217;s how this flash component looks like:

&#160;
Hey! Stop playing with it and go follow the tutorial to create one of your own :)
&#160;

1. Source Image
&#160;
Let&#8217;s start with a source image that we are going to use for this mouse trailer flash [...]]]></description>
			<content:encoded><![CDATA[<p><!--ActionScript 3.0 Tutorial: Follow easy steps to create a fancy looking mouse trailer. --><br />
This is a basic tutorial for creating a nice looking <strong>mouse trailer</strong> using <strong>ActionScript 3.0</strong>.<br />
Here&#8217;s how this <a href="http://www.flashscope.com" title="flash components">flash component</a> looks like:</p>
<p><center><object width="500" height="300" data="http://www.flashscope.com/blog/wp-content/uploads/2010/02/magic-stick-trailer.swf" type="application/x-shockwave-flash"></center></p>
<p>&nbsp;<br />
Hey! <strong>Stop playing with it</strong> and go follow the tutorial to create one of your own <strong>:)</strong><br />
&nbsp;<br />
<span id="more-288"></span></p>
<h3>1. Source Image</h3>
<p>&nbsp;<br />
Let&#8217;s start with a source image that we are going to use for this mouse trailer flash component.<br />
As far as you have probably guessed we need some kind of a star. I cropped one out of this picture:</p>
<p><center><img src="http://www.flashscope.com/blog/wp-content/uploads/2010/02/bright_yellow_star-s.png" alt="Bright Star" /></center></p>
<p>&nbsp;<br />
So you need to crop this fancy star out of its white background. Since we&#8217;re building a magic stick effect, I&#8217;ve used the <strong>Magic Wand Tool</strong> to crop the star image and saved it as <strong>.gif</strong>. And here is what I&#8217;ve got:</p>
<p><center><img src="http://www.flashscope.com/blog/wp-content/uploads/2010/02/bright_yellow_star.gif" alt="Bright Star Cropped" /></center></p>
<p>&nbsp;</p>
<h3>2. Creating the object</h3>
<p>&nbsp;<br />
Now you can open a new <strong>ActionScript 3.0</strong> project in <strong>Flash</strong> and simply drag&#038;drop this .gif star to the <strong>Scene</strong>.<br />
Looks huge, ha? We&#8217;ll have to fix that by going down to <strong>Properties</strong> section. I&#8217;ve set the <strong>width</strong> and <strong>height</strong> to <strong>12px</strong>. I think that&#8217;s the best size.</p>
<p><center><img src="http://www.flashscope.com/blog/wp-content/uploads/2010/02/star-size-flash.gif" alt="Star Size Flash" /></center></p>
<p>&nbsp;<br />
Once the star is tiny, right-click on it and:<br />
<strong>&#8220;Convert to Symbol&#8230;&#8221;</strong> > <strong>Name:</strong> Star > <strong>Type:</strong> Movie Clip<br />
Click the <strong>Advanced</strong> button > Check the <strong>&#8220;Export for ActionScript&#8221;</strong> checkbox > <strong>Class:</strong> Star > <strong>Base Class:</strong> flash.display.MovieClip</p>
<p><center><img src="http://www.flashscope.com/blog/wp-content/uploads/2010/02/convert-to-symbol-flash.gif" alt="Convert To Sуmbol Flash" /></center></p>
<p>&nbsp;</p>
<h3>3. ActionScript</h3>
<p>&nbsp;<br />
Go to <strong>File > New</strong> And create a new blank <strong>ActionScript File</strong>.<br />
Let&#8217;s paste some code there:</p>
<p><strong>Importing the classes</strong> that our flash file will be using:</p>
<div style="width: 70%;">
<pre class="brush: as3;">package
{
	import flash.display.Sprite;
	import flash.ui.Mouse;
	import flash.events.MouseEvent;
	import flash.events.Event;</pre>
</div>
<p>The next thing we need to do is <strong>extend the Sprite Class</strong> to access the <strong>addChild()</strong> method. The name of the class should be the same to the file name.</p>
<div style="width: 70%;">
<pre class="brush: as3;">	public class MouseTrailer extends Sprite
	{</pre>
</div>
<p><strong><br />
Setting up variables:</strong> we have only one and it&#8217;s our <strong>Star</strong>. This variable will be used for creating multiple instances of our star.</p>
<div style="width: 70%;">
<pre class="brush: as3;">var star:Star;</pre>
</div>
<p>Now lets <strong>hide</strong> the mouse cursor away and add the <strong>Listener</strong>, which will trigger the <strong>Trailer</strong> effect:</p>
<div style="width: 70%;">
<pre class="brush: as3;">public function MouseTrailer():void
		{
			Mouse.hide();
			stage.addEventListener(MouseEvent.MOUSE_MOVE, startTrailer);
		}</pre>
</div>
<p>Trailer start function itself. Here we&#8217;re <strong>creating a new star</strong> on mouse move, <strong>defining its position</strong> and <strong>adding it to the stage</strong>:</p>
<div style="width: 70%;">
<pre class="brush: as3;">private function startTrailer(e:MouseEvent):void
		{
			/* Create a new Star */

			star = new Star();

			/* Define the Position */

			star.x = mouseX + Math.random() * star.width;
			star.y = mouseY - Math.random() * star.height;

			/* Add new star to Stage */

			addChild(star);</pre>
</div>
<p>Adding <strong>Alpha</strong> animation:</p>
<div style="width: 70%;">
<pre class="brush: as3;">/* Listener */

			 star.addEventListener(Event.ENTER_FRAME, animate);
		} 

		/* Animation */

		 private function animate(e:Event):void
		{
			/* Alpha */ 

			e.target.alpha -= 0.05;</pre>
</div>
<p>While stars <strong>disappear</strong> it would be convenient to <strong>remove</strong> them:</p>
<div style="width: 77%;">
<pre class="brush: as3;">if (e.target.alpha &lt;= 0)
    			{
       			 e.target.removeEventListener(Event.ENTER_FRAME, animate);  

       			 removeChild(e.target as Sprite);
     			}</pre>
</div>
<p>Now lets <strong>scale down our stars</strong> frame-by-frame and have them <strong>moving down</strong> to the ground:</p>
<div style="width: 70%;">
<pre class="brush: as3;">/* Scale &amp; Falling of the stars */

			e.target.scaleX -= 0.04;
			e.target.scaleY -= 0.04;

			e.target.y += 3;
		}
	}
}</pre>
</div>
<p>&nbsp;</p>
<h3>4. Last thing</h3>
<p>&nbsp;<br />
Now save your progress with the <strong>actionscript</strong> file and go back to the <strong>.fla</strong><br />
Look down at the <strong>Properties</strong> panel and fill in <strong>Document Class</strong> with &#8220;MouseTrailer&#8221; setting.</p>
<p><center><img src="http://www.flashscope.com/blog/wp-content/uploads/2010/02/document-class-flash.gif" alt="Document Class Flash" /></center></p>
<p>&nbsp;<br />
Don&#8217;t forget to set the background to <strong>black</strong> and remove any elements from the stage. And you can now test your awesome <strong>mouse trailer flash component</strong>.</p>
<p>Thought <a href="http://www.flashscope.com/blog/flash-components-marketplaces-analytics-which-components-are-popular-today/">this flash component won&#8217;t be your best seller</a>, you can do some more advanced stuff out of it. Try to insert your own picture, or you can either play with the action script settings: alpha, scaling, falling etc. Thus this is a great flash file to customize and implement for your own needs.</p>
<p>In case you have any troubles with this tutorial, you can buy this <a href="http://www.flashscope.com/product/mouse-trailer-magic-stick-stars">mouse trailer flash component</a> together with the source files for as less as $1 at our marketplace.</p>
<p>Want something more advanced? Try <a href="http://www.flashscope.com/blog/creating-an-animated-cube-revolving-on-its-axis-2/">Creating an Animated Cube</a>!</p>
<div id="fb-like" style=""><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.flashscope.com/blog/actionscript-3-0-tutorial-magic-stick-stars-mouse-trailer/&amp;layout=button_count&amp;show_faces=false&amp;width=70&amp;action=like&amp;font=&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:70px; height:30px"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://www.flashscope.com/blog/actionscript-3-0-tutorial-magic-stick-stars-mouse-trailer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating an Animated Cube Revolving on its Axis</title>
		<link>http://www.flashscope.com/blog/creating-an-animated-cube-revolving-on-its-axis-2/</link>
		<comments>http://www.flashscope.com/blog/creating-an-animated-cube-revolving-on-its-axis-2/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 14:30:25 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[animation]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://beta.flashscope.com/blog/?p=116</guid>
		<description><![CDATA[
This is a simple tutorial that will teach you how to create an animated cube revolving on its axis. To replicate the steps described above you will need Adobe Flash CS4. 
At the end you will get the following result:









1. Create a new Flash file AS3 with the size 400 X 400 px.

2. Then draw [...]]]></description>
			<content:encoded><![CDATA[<p><!--This is a simple tutorial that will teach you how to create an animated cube revolving on its axis.--><br />
This is a simple tutorial that will teach you how to create an animated cube revolving on its axis. To replicate the steps described above you will need Adobe Flash CS4. </p>
<p>At the end you will get the following result:</p>
<table>
<tr>
<td>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="450" height="450" title="menu"><param name="movie" value="http://flashscope.com/sites/default/files/images/animated-cube/flash-02.swf" /><param name="quality" value="high" /><param value="#000000" name="bgcolor"/><embed src="http://flashscope.com/sites/default/files/images/animated-cube/flash-02.swf" bgcolor="#000000" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="450" height="450"></embed></object>
</td>
</tr>
</table>
<p><br/></p>
<p><span id="more-116"></span></p>
<p>1. Create a new Flash file AS3 with the size 400 X 400 px.</p>
<p><img src="http://flashscope.com/sites/default/files/images/animated-cube/01.jpg"></p>
<p>2. Then draw a square 100 X 100 px with thick outline and filling of low opacity. </p>
<p><img src="http://flashscope.com/sites/default/files/images/animated-cube/02.jpg"></p>
<p>3. Highlight the square and convert it to symbol by pressing F8. &#8216;Covert to symbol&#8217; window will open. Write a name, set type to Movie Clip and make sure you selected Registration &#8220;Center&#8221;. </p>
<p><img src="http://flashscope.com/sites/default/files/images/animated-cube/03.jpg"></p>
<p>4. After that we should center the movie clip on the scene. Click [Ctrl + K] -> the &#8216;Align&#8217; window will appear. Highlight the movie clicp and copy it [Ctrl+c].</p>
<p><img src="http://flashscope.com/sites/default/files/images/animated-cube/04.jpg"></p>
<p>5. While the movie clip is still selected, go to its Properties [Ctrl+F3] -> 3D Position and View, where we set &#8216;Z&#8217; value (depth) to be equal to our square size. In our case Z equals 100 px.<br />
The <b>Prespective angle</b> is 80. </p>
<p><img src="http://flashscope.com/sites/default/files/images/animated-cube/05.jpg"></p>
<p>6. Then click on any empty place of the scene to get highlight off. By mouse right clicking, choose <b>Paste in Place</b>.</p>
<p>7. Now we have two moview clips. Highlight them [Ctrl+A] and copy [Ctrl+C]. Right mouse clicking -> <b>Pate in Place</b>. </p>
<p>8. While the movie clips are still selected, open the <b>Transfrom</b> window [Ctrl+T] and enter the following values:</p>
<p><b>3D Center point:</b><br />
X: half scene width<br />
Y: half scene height<br />
Z: half square side</p>
<p><b>3D Rotation:</b><br />
X: 90;  Y: 0: Z:0.</p>
<p><img src="http://flashscope.com/sites/default/files/images/animated-cube/06.jpg"></p>
<p>9. Right mouse clicking -> <b>Paste in Place</b>. While the movie clips are still selected, open the <b>Transfrom</b> window [Ctrl+T] and enther the follwoing values:</p>
<p><b>3D Center point:</b><br />
X: half scene width<br />
Y: half scene height<br />
Z: half square side</p>
<p><b>3D Rotation:</b><br />
X: 0; Y: 90; Z: 0. </p>
<p><img src="http://flashscope.com/sites/default/files/images/animated-cube/07.jpg"></p>
<p>10. Highlight everything [Ctrl+A] and convert to Movie Clip [F8]. Make sure you set <b>Registration</b> to &#8216;<b>Center</b>&#8216;. Then go to the movie clip Properties [Crtl+F3] and enter Instance name &#8220;cube&#8221;. </p>
<p>11. To view the cube from different sides, we should make the cube revolving. For this open ActionScript [F9] and paste in the first frame the following code:</p>
<p>function rotate(e:Event){// function to rotate the cube<br />
cube.rotationX+=1// where cube is the Instance name of our cube<br />
cube.rotationY-=1<br />
}<br />
stage.addEventListener(Event.ENTER_FRAME,rotate) </p>
<p>Press [Ctrl + Enter] and view the result. </p>
<table>
<tr>
<td>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="450" height="450" title="menu"><param name="movie" value="http://flashscope.com/sites/default/files/images/animated-cube/flash-01.swf" /><param name="quality" value="high" /><param value="#000000" name="bgcolor"/><embed src="http://flashscope.com/sites/default/files/images/animated-cube/flash-01.swf" bgcolor="#000000" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="450" height="450"></embed></object>
</td>
</tr>
</table>
<p><br/><br />
To make cube revolving on its axis, double click on it (on the scene or in the Library [F11]). Highlight it and open the Pro[erties window. Set &#8220;Z&#8221; value (depth) = 0. </p>
<table>
<tr>
<td>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="450" height="450" title="menu"><param name="movie" value="http://flashscope.com/sites/default/files/images/animated-cube/flash-02.swf" /><param name="quality" value="high" /><param value="#000000" name="bgcolor"/><embed src="http://flashscope.com/sites/default/files/images/animated-cube/flash-02.swf" bgcolor="#000000" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="450" height="450"></embed></object>
</td>
</tr>
</table>
<p>Download <a href="http://flashscope.com/sites/default/files/images/animated-cube/cube.zip">source files</a>.</p>
<p>* * *</p>
<p>Thanks to DooD for this great lesson.</p>
<div id="fb-like" style=""><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.flashscope.com/blog/creating-an-animated-cube-revolving-on-its-axis-2/&amp;layout=button_count&amp;show_faces=false&amp;width=70&amp;action=like&amp;font=&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:70px; height:30px"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://www.flashscope.com/blog/creating-an-animated-cube-revolving-on-its-axis-2/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>How to Create Stunning Flash Bubbles</title>
		<link>http://www.flashscope.com/blog/how-to-create-stunning-flash-bubbles/</link>
		<comments>http://www.flashscope.com/blog/how-to-create-stunning-flash-bubbles/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 13:33:04 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flash bubbles]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://beta.flashscope.com/blog/?p=94</guid>
		<description><![CDATA[This tutorial will teach you how to create an amazing image effect such as Flash bubbles. Step by step you will learn how to draw such bubbles, how to create movie clips and symbols and how to set everything in motion. This Flash lession will be perfect for beginners, but hoping, Flash gurus will also [...]]]></description>
			<content:encoded><![CDATA[<p>This tutorial will teach you how to create an amazing image effect such as Flash bubbles. Step by step you will learn how to draw such bubbles, how to create movie clips and symbols and how to set everything in motion. This Flash lession will be perfect for beginners, but hoping, Flash gurus will also find something useful.<br />
Good luck!</p>
<table>
<tbody>
<tr>
<td><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="410" height="455" title="menu"><param name="movie" value="http://flashscope.com/sites/default/files/images/flash-bubbles/bubbles.swf" /><param name="quality" value="high" /><embed src="http://flashscope.com/sites/default/files/images/flash-bubbles/bubbles.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="410" height="455"></embed></object></td>
</tr>
</tbody>
</table>
<p><span id="more-94"></span></p>
<p>1. Let&#8217;s start from some preparations. First of all take a suitable image, it will be our background. I found this image, added some effects to it using Photoshop and that&#8217;s it! My background is ready.</p>
<p><img src="http://flashscope.com/sites/default/files/images/flash-bubbles/background.jpg"></p>
<p>2. Now open Flash and create scene with the same dimensions as your picture. In my case the dimensions are: 410 X 455, and set 30 frames per second. It will be enough.</p>
<p>3. After that we should import our background on a new layer, aligh it and then name the layer &#8220;bg&#8221;.</p>
<p><img src="http://flashscope.com/sites/default/files/images/flash-bubbles/fl-bubbles-01.jpg"></p>
<p>4. Now it&#8217;s time to create a new symbol in the library [Ctrl + 8]. Let&#8217;s call it &#8220;bubble&#8221;. </p>
<p><img src="http://flashscope.com/sites/default/files/images/flash-bubbles/fl-bubbles-02.jpg"></p>
<p>5. Now is the most creative part of our tutorial &#8211; drawing a bubble. As our basic color will be white and its tints, then for convenience it would be better to change the color of the workingspace to dark one.<br />
First we draw a circle about 10 px wide and high, a bit stretched-out below, without contour line and with gradient fill.</p>
<p><img src="http://flashscope.com/sites/default/files/images/flash-bubbles/fl-bubbles-03.jpg"> </p>
<p>Align the bubble according to origin of coordinates and set gradient. </p>
<p><img src="http://flashscope.com/sites/default/files/images/flash-bubbles/fl-bubbles-04.jpg"></p>
<p>Inside this symbol you may create an additional layer and draw something like patch of light.</p>
<p><img src="http://flashscope.com/sites/default/files/images/flash-bubbles/fl-bubbles-05.jpg"></p>
<p>The buble is ready!</p>
<p>6. Our next step is to create new symbol [Crtl + F8]. Select the symbol type &#8220;Movie Clip&#8221; and call it &#8220;bubbleMC&#8221;:</p>
<p><img src="http://flashscope.com/sites/default/files/images/flash-bubbles/fl-bubbles-06.jpg"></p>
<p>Make sure you checked &#8220;Export for ActionScript&#8221; for further work with this movie clip using AS.</p>
<p>7. In this movie clip we have to create one layer named &#8220;path&#8221; and then draw a curve. </p>
<p><img src="http://flashscope.com/sites/default/files/images/flash-bubbles/fl-bubbles-07.jpg"></p>
<p>As you see on the screenshot below, the curve should start approximately at the origin of coordinates of this movie clip (measurement accuracy is not a principle). The curve form should be zigzagging at the bottom, and its height should not be more than 350 px.<br />
To make it more smoothly, choose the &#8220;Smooth&#8221; Pencil Mode. </p>
<p>8. Create a new layer with the name &#8220;bubble&#8221; and move it under the layer &#8220;path&#8221;. Drag a symbol &#8220;Bubble&#8221; from the library to this layer. By mouse right clicking set  the layer &#8220;path&#8221; to &#8220;Guide&#8221;.</p>
<p><img src="http://flashscope.com/sites/default/files/images/flash-bubbles/fl-bubbles-08.jpg"></p>
<p>Make sure the layer &#8220;path&#8221; is the main one in regards to the &#8220;bubble&#8221; layer. For this move it under &#8220;path&#8221; layer.</p>
<p>9. On the &#8220;bubble&#8221; layer create a Motion Tween. Choose the 50 frame and create a keyframe. [F6]. On the &#8220;path&#8221; layer also choose frame 50 and prolong our curve&#8217;s &#8220;life&#8221; [F5]:</p>
<p><img src="http://flashscope.com/sites/default/files/images/flash-bubbles/fl-bubbles-09.jpg"></p>
<p>10. Now we are working with the Bubble object. Choose the frame 1 and verify that its properties are set right. Make sure &#8220;Sync&#8221; and &#8220;Snap&#8221; are checked.</p>
<p><img src="http://flashscope.com/sites/default/files/images/flash-bubbles/fl-bubbles-10.jpg"> </p>
<p>Now choose the bubble and drag it to the beginning of our curve (the lowest point). Then choose the last frame 50, and drag the bubble at the end of the curve (the highest point). After that choose frame 8 and create keyframe [F6]. Drag this keyframe to the frame 15.</p>
<p><img src="http://flashscope.com/sites/default/files/images/flash-bubbles/fl-bubbles-11.jpg">  </p>
<p>In this frame set Ease to -100:</p>
<p><img src="http://flashscope.com/sites/default/files/images/flash-bubbles/fl-bubbles-12.jpg">  </p>
<p>After that set Transform settings for a bubble. Bubble scale should be 50%.</p>
<p><img src="http://flashscope.com/sites/default/files/images/flash-bubbles/fl-bubbles-13.jpg"></p>
<p>Then go to the first frame and set bubble scale &#8211; 10%.</p>
<p>11. Now create a new layer above the &#8220;path&#8221; layer and call it &#8220;actions&#8221;. On this layer choose the frame 51 and create an empty keyframe [F6]. Write the follwoing scrept in this frame:<br />
removeMovieClip(this);</p>
<p><img src="http://flashscope.com/sites/default/files/images/flash-bubbles/fl-bubbles-14.jpg"> </p>
<p>The bubble creation has been completed.</p>
<p>12. And now we go back to the scene where there is only one layer with the background. Create a new layer named &#8220;actions&#8221; and write the follwoing code for it:</p>
<p>this.createEmptyMovieClip(&#8220;holderMC&#8221;, this.getNextHighestDepth());<br />
holderMC.onEnterFrame = function() {</p>
<p>    var bubbleName:String = &#8220;bubble&#8221; + random(1000);</p>
<p>    var bubbleX:Number = random(Stage.width);<br />
    var bubbleY:Number = random(Stage.height);</p>
<p>    var bubbleScale:Number = random(6) * 10 + 50;</p>
<p>    var bub:MovieClip = this.attachMovie(&#8220;bubbleMC&#8221;, bubbleName, random(1000), {_x:bubbleX, _y:bubbleY, _xscale:bubbleScale, _yscale:bubbleScale});<br />
}</p>
<p>And now the most complicated part of the tutorial &#8211; press [Ctrl + Enter].<br />
And enjoy the result!</p>
<p>Good luck!<br />
Download <a href="http://www.flashscope.com/sites/default/files/images/flash-bubbles/bubbles.zip">source files</a></p>
<p>* * *</p>
<p>Thanks to mute_Max for this great lesson.</p>
<div id="fb-like" style=""><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.flashscope.com/blog/how-to-create-stunning-flash-bubbles/&amp;layout=button_count&amp;show_faces=false&amp;width=70&amp;action=like&amp;font=&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:70px; height:30px"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://www.flashscope.com/blog/how-to-create-stunning-flash-bubbles/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>11 Best Professional Tutorials on Flash Menu and Navigation</title>
		<link>http://www.flashscope.com/blog/11-best-professional-tutorials-on-flash-menu-and-navigation/</link>
		<comments>http://www.flashscope.com/blog/11-best-professional-tutorials-on-flash-menu-and-navigation/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 12:39:59 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flash menu]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://beta.flashscope.com/blog/?p=67</guid>
		<description><![CDATA[This is the greatest collection of professional tutorials that will teach you how to create a stunning Flash menu and navigation &#8211; a necessary flash component for any flash website. And though Flash less and less is used while creating a website, we all tend to agree that animated pages look more attractive and interactive [...]]]></description>
			<content:encoded><![CDATA[<p>This is the greatest collection of professional tutorials that will teach you how to create a stunning Flash menu and navigation &#8211; a necessary <a href="http://www.flashscope.com">flash component</a> for any flash website. And though Flash less and less is used while creating a website, we all tend to agree that animated pages look more attractive and interactive than the static ones. But we have to remember one more detail: website menu should be not only beautiful but usable presenting the whole website structure and making browsing pleasant and convenient. And these detailed tutorials will help you resolve this urgent task and choose the right decision for your website.</p>
<p>* * *<br />
<a href="http://www.extremestudio.ro/blog/?p=910">Glass Aero Flash Menu with Fade Effect</a></p>
<p><a href="http://www.extremestudio.ro/blog/?p=910"><img src="http://flashscope.com/sites/default/files/images/flash-menu-tutorials/aero-flash-menu.jpg"></a></p>
<p>In this tutorial you will learn how to make vista aero flash menu with awesome fade effect in Flash CS3.</p>
<p><span id="more-67"></span></p>
<p>* * *<br />
<a href="http://www.flash-game-design.com/flash-tutorials/funky-flash-website-tutorial.html">Funky Flash Website Tutorial</a></p>
<p><a href="http://www.flash-game-design.com/flash-tutorials/funky-flash-website-tutorial.html"><img src="http://flashscope.com/sites/default/files/images/flash-menu-tutorials/funky-flash-website-tutorial.jpg"></a></p>
<p>This tutorial is showing you how to create a funky flash website with awesome menu buttons with the rotating star effect. There are two groups of stars and the rings are used as guides to position them.</p>
<p>* * *<br />
<a href="http://www.stutorials.com/flash_spore_menu.php">Spore Menu</a></p>
<p><a href="http://www.stutorials.com/flash_spore_menu.php"><img src="http://flashscope.com/sites/default/files/images/flash-menu-tutorials/spore-menu.jpg"></a></p>
<p>By following all steps described in this tutorial you will get an attractive and usable animated menu.</p>
<p>* * *<br />
<a href="http://tutorials.flashmymind.com/2009/02/rotating-menu-via-actionscript-3/">Rotating Menu via ActionScript 3</a></p>
<p><a href="http://tutorials.flashmymind.com/2009/02/rotating-menu-via-actionscript-3/"><img src="http://flashscope.com/sites/default/files/images/flash-menu-tutorials/rotating-menu-via-actionscript.jpg"></a></p>
<p>This tutorial will teach you how to create a rotating menu. This is a very basic form of the menu. You can edit your Flash movie easily, for example if you want to make the menu items visually more appealing. All the animation is done with ActionScript 3.0.</p>
<p>* * *<br />
<a href="http://www.extremestudio.ro/blog/?p=299">Professional Menu with Effects in Flash CS3</a></p>
<p><a href="http://www.extremestudio.ro/blog/?p=299"><img src="http://flashscope.com/sites/default/files/images/flash-menu-tutorials/professional-menu-with-effects.jpg"></a></p>
<p>This is a great video tutorial from Extreme Studio. Step by step you will learn how to make a professional menu with great effects in Flash CS3.</p>
<p>* * *<br />
<a href="http://tutorials.flashmymind.com/2009/02/advanced-xml-menu-with-actionscript-3/">Advanced XML Menu with ActionScript 3</a></p>
<p><a href="http://tutorials.flashmymind.com/2009/02/advanced-xml-menu-with-actionscript-3/"><img src="http://flashscope.com/sites/default/files/images/flash-menu-tutorials/advanced-xml-menu.jpg"></a></p>
<p>This tutorial will teach you how to create an advanced XML menu. You will first set up everything ready in Flash, then create the XML file and finally add some ActionScript 3 for the functionality.</p>
<p>* * *<br />
<a href="http://tutorials.flashmymind.com/2009/05/shaky-flash-menu-with-actionscript-3/">Shaky Flash Menu with ActionScript 3</a></p>
<p><a href="http://tutorials.flashmymind.com/2009/05/shaky-flash-menu-with-actionscript-3/"><img src="http://flashscope.com/sites/default/files/images/flash-menu-tutorials/shaky-flash-menu.jpg"></a></p>
<p>This tutorial will teach you how to create a cool looking shaky menu with ActionScript 3. All the animation is done with ActionScript, so no timeline animation is needed. You will also need to download TweenMax for AS3, as it is used for the animation of the menu items. Check out the end result!</p>
<p>* * *<br />
<a href="http://tutorials.flashmymind.com/2009/04/modern-horizontal-flash-menu/">Modern Horizontal Flash Menu</a></p>
<p><a href="http://tutorials.flashmymind.com/2009/04/modern-horizontal-flash-menu/"><img src="http://flashscope.com/sites/default/files/images/flash-menu-tutorials/modern-horizontal-flash-menu.jpg"></a></p>
<p>This tutorial will show you how to create a cool animated horizontal menu. You will need ActionScript 3 for the animation, so no timeline animation is involved in this tutorial. The random colors are used in the menu to give it an extra spice. The result is really catchy!</p>
<p>Note: You need TweenMax in order to fully complete this tutorial.</p>
<p>* * *<br />
<a href="http://www.flash-game-design.com/flash-tutorials/blackMenu-flash-tutorial.html">Black Navigation Menu Flash Tutorial</a></p>
<p><a href="http://www.flash-game-design.com/flash-tutorials/blackMenu-flash-tutorial.html"><img src="http://flashscope.com/sites/default/files/images/flash-menu-tutorials/black-flash-menu.jpg"></a></p>
<p>Here is another Flash menu presentation. The tutorial is so detailed, so it won&#8217;t make any difficulties to represent all steps even by newbies. The tutorial also contains code explanations.</p>
<p>* * *<br />
<a href="http://www.toxiclab.org/tutorial.asp?ID=289">Advanced and powerful flash menu with sound</a></p>
<p><a href="http://www.toxiclab.org/tutorial.asp?ID=289"><img src="http://flashscope.com/sites/default/files/images/flash-menu-tutorials/advanced-flash-menu-with-sound.jpg"></a></p>
<p>This highly detailed Flash will teach you how to make an advanced modern flash menu with sound. You will leran how to design flash menu, how to animate it using special flash tips and tricks and how to apply action script code on it.</p>
<p>* * *<br />
<a href="http://www.flash-game-design.com/flash-tutorials/advanced-dd-menu-flash-tutorial.html">Advanced Drop Down Menu Tutorial</a></p>
<p><a href="http://www.flash-game-design.com/flash-tutorials/advanced-dd-menu-flash-tutorial.html"><img src="http://flashscope.com/sites/default/files/images/flash-menu-tutorials/advanced-drop-down-menu.jpg"></a></p>
<p>This Flash tutorial will show you how to create a drop down menu using Actionscript. It&#8217;s a fairly advanced tutorial, so you&#8217;ll be expected to know some of the basics, such as creating an MC (movieclip symbol), using labels on the timeline etc.</p>
<div id="fb-like" style=""><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.flashscope.com/blog/11-best-professional-tutorials-on-flash-menu-and-navigation/&amp;layout=button_count&amp;show_faces=false&amp;width=70&amp;action=like&amp;font=&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:70px; height:30px"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://www.flashscope.com/blog/11-best-professional-tutorials-on-flash-menu-and-navigation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useful Collection of Flash Preloaders Tutorials</title>
		<link>http://www.flashscope.com/blog/useful-collection-of-flash-preloaders-tutorials/</link>
		<comments>http://www.flashscope.com/blog/useful-collection-of-flash-preloaders-tutorials/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 12:02:57 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[preloaders]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://beta.flashscope.com/blog/?p=49</guid>
		<description><![CDATA[Flash technology has more advantages over the other means of website creation. It allows you to create an attractive and breathtaking websites that combine theme-based graphics, action effects, multiple media types &#8211; audio, video, text, still images. It provides good opportunities to make your presentation or video game more dynamic, interactive and appealing.
Flash technology gives [...]]]></description>
			<content:encoded><![CDATA[<p>Flash technology has more advantages over the other means of website creation. It allows you to create an attractive and breathtaking websites that combine theme-based graphics, action effects, multiple media types &#8211; audio, video, text, still images. It provides good opportunities to make your presentation or video game more dynamic, interactive and appealing.<br />
Flash technology gives free rein to flash developers that they can not find anywhere. Flash allows them to place objects where they want without thinking about browser restrictions, problems with templates, tables, screen resolution and others. Flash pages will be displayed properly in all web browsers without any differences. </p>
<p>But what is the first thing we face with while entering a Flash website? Of course, it&#8217;s a Flash preloader that indicates the loading status of your website and creates a first impression about it. So, Flash designers should not only think out the whole website structure and design, but the preloading moment as well, because it&#8217;s a Flash prealoder that all visitors turn their eyes to.</p>
<p>Below is the list of Flash tutorials that will help you create an attractive Flash preloader &#8211; essential <a href="http://www.flashscope.com">Flash component</a> of your website.</p>
<p>***<br />
<a href="http://theflashblog.com/?p=916" width="335px">TheFlashBlog.com</a></p>
<p align='center'><img src="http://flashscope.com/sites/default/files/images/theflashblog-01.jpg" width="400px"></p>
<p><span id="more-49"></span></p>
<p>This tutorial is written by Lee Brimelow is a Platform Evangelist at Adobe focusing on the Flash, Flex, and AIR developer communities. This video tutorial shows you how to create a completely customized Flex preloader using Flash CS4. </p>
<p>* * *<br />
<a href="http://flashexplained.com/preloaders/creating-a-preloader-for-your-flash-site-using-the-image-of-a-bottle-and-a-rectangular-mask/">Flashexplained.com</a></p>
<p align="center"><embed type="application/x-shockwave-flash" src="http://www.flashexplained.com/img/preloaders/media/image-preloader-example.swf" id="fm_image-preloader-example_1913857044" name="fm_image-preloader-example_1913857044" quality="high" width="350" height="260"></p>
<p>In this detailed tutorial made for Flash 8, you will see how easy it is to create a preloading system that is gradually displaying an image as your site loads. It will show you the following: how to import an image into Flash, how to create a rectangular movie clip and turn it into a mask, how to write ActionScript that will power the preloader and more.</p>
<p>* * *<br />
<a href="http://flash.tutsplus.com/tutorials/web-design/create-an-apple-inspired-flash-preloader/">Flash.Tutsplus.com</a></p>
<p align='center'><object data="http://flashtuts.s3.amazonaws.com/042_ApplePreloader/ApplePreloader.swf" type="application/x-shockwave-flash" width="400" height="200"><param name="src" value="http://flashtuts.s3.amazonaws.com/042_ApplePreloader/ApplePreloader.swf"></object></p>
<p>In this tutorial Carlos Yanez, a Web/Logo Designer, Flash Developer with passion for great designs and cool applications, help you create an Apple inspired preloader MovieClip and teach you how to display some loading information. All this using Flash and ActionScript 3.0.</p>
<p>***<br />
<a href="http://www.absolutecross.com/tutorials/flash/preloader/">Absolutecross.com</a></p>
<p align='center'><embed src="http://www.absolutecross.com/images/tips/flash/preloader.swf" width="400" height="257"></p>
<p>This tutorial will teach you how to create an advanced preloader which determines not only the actual percent, but the Bytes Loaded, Bytes Remaining, and other neat stuff. To replicate all the steps, you should be completely familiar with Flash. </p>
<p>* * *<br />
<a href="http://www.flashkit.com/tutorials/Interactivity/Preloade-Alan_Wis-920/index.php">Flashkit.com</a></p>
<p align='center'><embed src="http://images2.flashkit.com/tutorials/Interactivity/Preloade-Alan_Wis-920/loadometertute2.swf" type="application/x-shockwave-flash" width="430" height="300"></p>
<p>Another great and detailed tutorial on how to create an original preloader in a clock form. Click on the &#8220;Play&#8221; button to see how ir works.</p>
<p>* * *<br />
<a href="http://www.adobe.com/devnet/actionscript/articles/lightweight_as3.html">Adobe.com</a></p>
<p>This tutorial is written by Jamie Kosoy, a senior developer at Big Spaceship. He provides an introduction to writing classes and walks you through some of the nuances of the new language by building a modular preloader. Along the way, he identifies the best practices to optimize performance and suggest strategies for reskinning artwork to achieve a desired look and feel. This article covers the fundamentals of ActionScript 3.0. Some knowledge of ActionScript 2.0 is recommended but not necessary.</p>
<p>***<br />
<a href="http://tutorials.learnflash.com/tutorials/flash/preloader.html">Learnflash.com</a></p>
<p align='center'><img src="http://flashscope.com/sites/default/files/images/learnflash.jpg" width="400px"></p>
<p>This great video tutorial is presented by LearnFlash.com and shows you step by step how to create an attractive Flash preloader. You can hear the voice of an expert who recorded this video and see every movement on his computer screen, as if you were sitting right beside him. Such videos, sometimes referred to as &#8220;Quickstarts&#8221; can reduce training time from days to just a few hours.</p>
<p>***<br />
<a href="http://www.kirupa.com/developer/flashcs3/preloader_as3_pg1.htm">Kirupa.com</a></p>
<p align='center'><img src="http://www.kirupa.com/developer/flashcs3/images/preloaderExample2.png" width="425px"></p>
<p>By the end of this tutorial, you will learn how to create a preloader &#8211; a progress bar indicating how much of your content is being loaded. After the preloader has finished loading, the image will become visible. The tutorial consists of two parts. One part will focus on how to create the preloader animation and code, and the second part will discuss integrating your preloader with an existing application such as one that loads an image from an external location.</p>
<p>* * *<br />
<a href="http://flashexplained.com/preloaders/sleek-green-sphere-mathematical-preloader/">Flashexplained.com</a></p>
<table>
<tr>
<td style="background-color:white"><embed type="application/x-shockwave-flash" src="http://www.flashexplained.com/img/preloaders/media/sleek-green-sphere-preloader-example.swf" id="fm_sleek-green-sphere-preloader-example_2041376520" name="fm_sleek-green-sphere-preloader-example_2041376520" quality="high" width="200" height="180"></td>
<td style="background-color:white" widht="100%">This easy, detailed Flash 8 pro lesson will show you how to make a sleek green sphere preloader for your website. In this lesson, you will learn: how to create a sphere with a realistic depth effect, how to use the great filters in Flash 8 pro to achieve a realistic sphere, how to use transparency combined with radial gradient fills in Flash, how to create a beveled ring around your preloader, how to create a dynamic text field with pixel fonts and extra effects added to it, how to load an external SWF and more.</p>
<p>Here is an example of how your preloader will look like at the end of this lesson. This is a simulation of course, no real preloading is happening in the example.</td>
</tr>
</table>
<p>***<br />
<a href="http://www.flashfridge.com/tutorial.asp?ID=55">FlashFridge.com</a></p>
<p><img src="http://www.flashfridge.com/img/11994_swf.gif" style='padding-left: 36px; padding-right: 36px;' align="left" style='padding-right:10px'/>Using this thoroughly explained, detailed, action script  flash lesson, you will see how to create very trendy stars preloader. You will also learn how to draw stars using the Line Tool, how to convert preloader into a Movie Clip Symbol,  how to create Motion Tween and much, much more!</p>
<p>***<br />
<a href="http://www.toxiclab.org/tutorial.asp?ID=174">Toxiclab.org</a></p>
<table>
<tr>
<td style="background-color:white"><img src="http://www.toxiclab.org/img/2007629_swf.gif" style='padding-left: 6px; padding-right: 6px;' align="left"/></td>
<td style="background-color:white" widht="100%">Take a look at this lesson and learn how to create attractive preloader using the picture and action script. You will also learn how to convert an image into a Movie Clip Symbol, how to apply on it alpha effect, how to convert any layer into a mask, how to create percent for preloader and more. Here is how your Flash preloader will look like.</td>
</tr>
</table>
<p>***<br />
<a href="http://www.flashfridge.com/tutorial.asp?ID=41">FlashFridge.com</a></p>
<p><img src="http://www.flashfridge.com/img/5661218_swf.gif" align="left" style='padding-left: 40px; padding-right: 40px;'/>In this tutorial, you will see how to create a black and white preloader with percent. To create this tutorial, you have to use a little Action Script code. You will also learn how to design a preloader, how to animate it and more. This lesson is perfect for newbies because it doesn&#8217;t require profound knowledge. Just follow the steps and at the end you will get something like this.</p>
<div id="fb-like" style=""><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.flashscope.com/blog/useful-collection-of-flash-preloaders-tutorials/&amp;layout=button_count&amp;show_faces=false&amp;width=70&amp;action=like&amp;font=&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:70px; height:30px"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://www.flashscope.com/blog/useful-collection-of-flash-preloaders-tutorials/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>A Portion of the Freshest Flash Tutorials</title>
		<link>http://www.flashscope.com/blog/a-portion-of-the-freshest-flash-tutorials/</link>
		<comments>http://www.flashscope.com/blog/a-portion-of-the-freshest-flash-tutorials/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 11:30:31 +0000</pubDate>
		<dc:creator>Steve</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[flash menu]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://beta.flashscope.com/blog/?p=37</guid>
		<description><![CDATA[Hi guys! In this blog post we tried to gather the freshest Flash tutorials that have been published by qualified Flash developers for the last couple of days. Just that very point served as a main criterion for tutorials selection, but not only. Rating technical execution and general idea, we created this amazing collection that [...]]]></description>
			<content:encoded><![CDATA[<p>Hi guys! In this blog post we tried to gather the freshest Flash tutorials that have been published by qualified Flash developers for the last couple of days. Just that very point served as a main criterion for tutorials selection, but not only. Rating technical execution and general idea, we created this amazing collection that will come in handy both for newbies and Flash professionals.</p>
<h3>1. Scrapbook Photo Gallery tutorial in Flash</a></h3>
<p align="center"><iframe width="580" height="420" src="http://www.flashscope.com/sites/default/files/BehaviorsScrapbook_0.html" frameborder="0"></iframe></p>
<p><span id="more-37"></span></p>
<p><i>Drag and drop the images to view the effect.</i> </p>
<p>This tutorial will teach you how to create this eye-catching photo gallery by learning three flash behaviors: load external graphic behavior, on-click behavior to lift photograph right on top and drag-and-drop behavior.<br />
Read the tutorial <a href="http://www.imajine.in/tutorials/flash/sb_photogallery.aspx">here</a>.</p>
<h3>2. Create a Glowing Mouse Trailer in Flash</h3>
<p align='center'>
<object height="250" width="450" type="application/x-shockwave-flash" data="http://flashtuts.s3.amazonaws.com/069_MouseTrailer/MouseTrailer.swf"><param value="http://flashtuts.s3.amazonaws.com/069_MouseTrailer/MouseTrailer.swf" name="src"/></object></p>
<p>Thanks to Carlos Yanez, a Web/Logo Designer and Flash Developer, and his exclusive step-by-step tutorial, now everyone can create a glowing mouse trailer in ActionScript 3.0. Mouse Trailers are objects which follow the mouse cursor as you move it.<br />
Read the tutorial <a href="http://flash.tutsplus.com/tutorials/effects/create-a-glowing-mouse-trailer-in-flash/">here</a>.</p>
<h3>3. Transforming picture effect</h3>
<p align='center'><a href="http://www.flashfridge.com/tutorial.asp?ID=157"><img src="http://www.flashscope.com/sites/default/files/images/flashfridge_0.jpg" alt="Flash Tutorials - Picture Effect" title="Flash Tutorials - Picture Effect"  class="image image-_original " width="400" height="250" /></a></p>
<p>This tutorial will expain how to create modern transforming picture effect without ActionScript code. You will also learn how to import any picture into flash stage, how to apply flash filters on it, how to convert it into a movie clip symbol and much more. </p>
<p>This Flash picture effect will be useful for those who would like to create an attractive Flash banner and a stunning presentation.<br />
Read the tutorial <a href="http://www.flashfridge.com/tutorial.asp?ID=157">here</a>.</p>
<h3>4. Creating an advertising billboard with a 3D twist</h3>
<p align='center'><a href="http://www.flashandmath.com/flashcs4/cs4billboard/index.html"><img src="http://www.flashscope.com/sites/default/files/images/flash-tutorials-billboard effect.jpg" alt="Flash Tutorials - Billboard Effect" title="Flash Tutorials - Billboard Effect"  class="image image-_original " width="450" height="383" /></a> </p>
<p>This detailed tutorial will help you create a winning advertising billboard with a 3D twist. The native 3D methods available in Flash Player 10 and several custom ActionScript 3 classes are used here for the billboard construction.<br />
Read the tutorial <a href="http://www.flashandmath.com/flashcs4/cs4billboard/index.html">here</a>.</p>
<h3>5. Actionscript 3 &#8211; as3 Lightning / Thunderbolt / Electric discharge Class</h3>
<p align='center'><embed height="390" width="450" quality="high" name="ist" id="ist" src="http://blog.oaxoa.com/wp-content/examples/lightning_test_coil.swf" type="application/x-shockwave-flash"/></p>
<p>Pierluigi Pesenti (aka Panta), a qualified Flash developer, prepared three demos and a publishable class. The demos are FLA based. You can find the timeline code to assemble the demos in this post.<br />
Read the tutorial <a href="http://blog.oaxoa.com/2009/07/27/actionscript-3-as3-lightning-thunderbolt-electric-discharge-class/">here</a>.</p>
<h3>6. Create Your Own Adobe AIR Application with Flash</h3>
<p align='center'><a href="http://flash.tutsplus.com/tutorials/air/create-your-own-adobe-air-application-with-flash/"><img src="http://www.flashscope.com/sites/default/files/images/flashtuts-adobe air.jpg" align='center' alt="Flash Tutorials - Adobe AIR" title="Flash Tutorials - Adobe AIR" width="450"/></a></p>
<p>By reading this tutorial you will learn how to create a Twitter Reader application, fed from your own Twitter updates. It will show you some of the features of the nativeWindow class, how to sign it and make an install package.</p>
<p>This tutorial has been written by Dario Gutierrez, a web designer and Flash designer from Mexica. Follow me on twitter _dariux. (http://twitter.com/_dariux)<br />
Read the tutorial <a href="http://flash.tutsplus.com/tutorials/air/create-your-own-adobe-air-application-with-flash/">here</a>.</p>
<h3>7. An Image Exploding into Particles</h3>
<p align='center'><img src='http://www.flashandmath.com/advanced/particles3d/dan2.jpg'/></p>
<p>Here is another great tutorial written by Dan Gries especially for Flash &#038; Math. By reading this tutorial you will learn how to create a rotating bitmap in 3D that explodes into particles. This visual effect is really engaging.<br />
Read the tutorial <a href="http://www.flashandmath.com/advanced/particles3d/">here</a>.</p>
<h3>8. Eyes follow the cursor</h3>
<p align='center'><embed height="450" align="middle" width="450" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" allowfullscreen="false" allowscriptaccess="sameDomain" name="EyesFollow" bgcolor="#ffffff" quality="high" src="http://files.riacodes.com/flash_eyes-follow-cursor/EyesFollow.swf"/></p>
<p>From this tutorial you will learn how to build an animation where the eyes of Dug, the dog from the Pixar movie UP, follow the mouse cursor. This tutorial is done with actionscript 3 and introduces the use of the Math.atan2 method.<br />
Read the tutorial <a href="http://www.riacodes.com/flash/eyes-follow-the-cursor/">here</a>.</p>
<h3>9. Icon following mouse cursor</h3>
<p align='center'>
<embed height="400" width="400" quality="high" control.swf="" full="" type="application/x-shockwave-flash" src="http://www.toxiclab.org/img/88423_swf.swf" pluginspage="http://www.macromedia.com/go/getflashplayer"/></p>
<p>The last but not the least. This tutorial presents one more catchy Flash effect. You&#8217;ll get to know how to create an icon following a mouse cursor. This tutorial is done with actionscript 3. You will also learn how to import any icon into a flash stage, how to convert it into a movie clip symbol, how to animate it using some special flash tricks and etc.<br />
Read the tutorial <a href="http://www.toxiclab.org/tutorial.asp?ID=378">here</a>.</p>
<div id="fb-like" style=""><iframe src="http://www.facebook.com/plugins/like.php?href=http://www.flashscope.com/blog/a-portion-of-the-freshest-flash-tutorials/&amp;layout=button_count&amp;show_faces=false&amp;width=70&amp;action=like&amp;font=&amp;colorscheme=light&amp;locale=en_US" scrolling="no" frameborder="0" allowTransparency="true" style="border:none; overflow:hidden; width:70px; height:30px"></iframe></div>]]></content:encoded>
			<wfw:commentRss>http://www.flashscope.com/blog/a-portion-of-the-freshest-flash-tutorials/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
