<?xml version="1.0" encoding="US-ASCII"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Free photoshop and flash tutorials</title><link>http://www.blog.0tutor.com</link><description>new daily updated adobe tutorials blog.</description><copyright>(c) 2007, support@dd-soft.com All rights reserved.</copyright><ttl>5</ttl><category>photoshop/flash/asp/css/drawings/other</category><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/0tutor-tutorials-blog" type="application/rss+xml" /><feedburner:emailServiceId>0tutor-tutorials-blog</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item><title>Car Acceleration Tutorial</title><description>&lt;p&gt;In this flash actionscript 3.0 tutorial you will see how to make a car move more realistic then just moving back and forth, we will add some acceleration and de acceleration functionality so the car start up slow and increases in speed until it ends at a max speed, then when we want to stop it also need to slow down before it stops.&lt;/p&gt;
&lt;p&gt;And it all should be looking like this.&lt;/p&gt;

&lt;div align="left"&gt;
  &lt;object width="400" height="250"&gt;
    &lt;param name="flash actionscript 3 move car acceleration" value="http://www.blog.0tutor.com/archive/229/move_car.swf"&gt;
    &lt;embed src="http://www.blog.0tutor.com/archive/229/move_car.swf" width="400" height="250"&gt;
    &lt;/embed&gt;
  &lt;/object&gt;
&lt;/div&gt;
&lt;p&gt;First you may prepare some graphics for you stage, I guess you can do better then I did, I just made a fast one here. One simple tip I will tell you is to add a drop shadow to your object, so it looks like its standing on some kind of ground.&lt;/p&gt;
&lt;p&gt;Now the only thing we need on the stage is some kind of car, just draw something or put in one if you have one. Convert it to a movie clip and give it the instance name &amp;quot;car&amp;quot;.&lt;/p&gt;
&lt;p&gt;Now we are ready for the actionscript part, so open up your actionscript panel and type in the code below.&lt;/p&gt;
&lt;p&gt;First we need some variables to control some stuff, like telling us which key is pressed, the speed of the car, friction and acc..&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
  var rightKeyDown:Boolean;
  var leftKeyDown:Boolean;
  var keyPressed:int;
  var speed = 0.5;
  var cs = 0;
  var friction = 0.96;
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;Usually I always put an init function, we could just type it outside any function, but it all looks more structured with a init function for all the code that should be run at program start.&lt;/p&gt;
&lt;p&gt;First the function makes sure to tell flash that no keys is down.&lt;/p&gt;
&lt;p&gt;Then we add to eventlisteners, one for the key down, and one for key up, to call a function no matter what key is hit.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
startMe();
function startMe():void {
	leftKeyDown = false;
	rightKeyDown = false;
	stage.addEventListener(KeyboardEvent.KEY_DOWN, pressKey);
	stage.addEventListener(KeyboardEvent.KEY_UP, releaseKey);
}
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;This next function &amp;quot;filters&amp;quot; what key is down, if its the left or right, then add some function if its the one or other.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
function pressKey(event:KeyboardEvent):void {
	keyPressed = event.keyCode;
	if (keyPressed == Keyboard.LEFT) {
		leftKeyDown = true;
	}
	if (keyPressed == Keyboard.RIGHT) {
		rightKeyDown = true;
	}
	car.addEventListener(Event.ENTER_FRAME, driveCar);
}
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;And here is the function that has the most important code, it actually makes the car move, when the right key is down.&lt;/p&gt;
function driveCar(event:Event):void {
	if (leftKeyDown) {
		cs -= speed;
	}
	if (rightKeyDown) {
		cs += speed;
	}
	car.x += cs;
	cs *= friction;
}
&lt;p&gt;As you may have noticed in the startMe function we also added an eventlistner to listen to when the key is UP again, that is no key is down, so we can stop the car again.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
function releaseKey(event:KeyboardEvent):void {
	var key_:int = event.keyCode;
	if (key_ == Keyboard.LEFT) {
		leftKeyDown = false;
	}
	if (key_ == Keyboard.RIGHT) {
		rightKeyDown = false;
	}
}
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;And that''s it, if you had any problem with the code, you may download the source code below, and test the car function through there.&lt;/p&gt;
&lt;a class="download_btn" href="http://www.blog.0tutor.com/archive/229/move_car.zip"&gt;&lt;span class="alt"&gt;Download button&lt;/span&gt;&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=qbslxn8L948:VmkUgnbub9M:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=qbslxn8L948:VmkUgnbub9M:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=qbslxn8L948:VmkUgnbub9M:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=qbslxn8L948:VmkUgnbub9M:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=qbslxn8L948:VmkUgnbub9M:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=qbslxn8L948:VmkUgnbub9M:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/qbslxn8L948" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/qbslxn8L948/post.aspx</link><category>flash</category><pubDate>Mon, 8 Dec 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=229&amp;title=Car-Acceleration-Tutorial</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=229&amp;title=Car-Acceleration-Tutorial</feedburner:origLink></item><item><title>Work with Arrays in Actionscript 3 part 2</title><description>&lt;p&gt;Not so long ago I made a tutorial on how to make and use &lt;a href="http://blog.0tutor.com/post.aspx?id=224&amp;amp;titel=Work-with-Arrays-in-Actionscript-3"&gt;simple one dimensional arrays with flash actionscript 3.0&lt;/a&gt;, now we will go a bit a further and develop our skill to create multidimensional arrays.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Not that this is  more complex then the first, one dimensional array, but its worth while digging into, so if you think your ready, lets get started.&lt;/p&gt;
&lt;p&gt;There are different kinds of multidimensional arrays, the one we will be dealing with now is using a technique to nest arrays into each other, another way, which we will get into in another article is to create data of the data type object. I won''t get into this right now, because that''s another story for later.&lt;/p&gt;
&lt;p&gt;First we will define a simple array with two other arrays nested inside it, then I''ll show you how to call the data from it.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
var myArray:Array = new Array(new Array("one","two"), new Array("three", "four"));
trace(myArray);
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;As you see if you test this example, you get an output trace with all the items one two three and four, this looks simple, but this time I promise you, it will get a bit more complicated.&lt;/p&gt;
&lt;p&gt;Now we only want to extract some of the data, lets say two and four.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
var myArray:Array = new Array(new Array("one","two"), new Array("three", "four"));
trace(myArray[0][1]);
trace(myArray[1][1]);
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;Lets take a look at how we extract the item &amp;quot;two&amp;quot;, first we call the myArray, tells it to get into the first array (0 indexed) and take its second item &amp;quot;two&amp;quot; (has the index 1).&lt;/p&gt;
&lt;p&gt;The second trace does the same, first we call the myArray, tells it to get into the second array (indexed 1) and again we want to extract the second item &amp;quot;four&amp;quot; (has index 1).&lt;/p&gt;
&lt;p&gt;Okay that was simple, but think if we had 4 or even 10 arrays nested, then it will demand some thinking..&lt;/p&gt;
&lt;h2&gt;Put our knowledge to good use!&lt;/h2&gt;
&lt;p&gt;And now that we have learned the basics of how to construct a multidimensional array, what should we do with it?&lt;/p&gt;
&lt;p&gt;Well lets say you are building a simple board game, it could be chess, it could be something else, but what board games got in common is they usually are build up by a grid in some way, chess got white and black squares. What we can do then is to construct that grid with a multi dimensional array. I will show you an example and try to explain how its made up.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
var gridSize:int = 2;
var mainArr:Array = new Array(gridSize);
var i:int;
var j:int;
for (i = 0; i &lt; gridSize; i++) {
	mainArr[i] = new Array(gridSize);
    for (j = 0; j &lt; gridSize; j++) {
        mainArr[i][j] = "[" + i + "][" + j + "]";
    }
}
trace(mainArr);
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;This might seem a bit confusing, but try to test the code, you should get something like this. [0][0],[0][1],[1][0],[1][1] this is a two dimensional array, shown as a grid, you can refer to each column or row, as you can see now you can add to a three dimensional array or four to make big grids.&lt;/p&gt;
&lt;p&gt;First we create a variable called gridsize to tell how many rows we want, this will be 2, then we set a main array object to hold it all.&lt;/p&gt;
&lt;p&gt;We declare two variables i and j one for each column, we just add to this if we want more columns.&lt;/p&gt;
&lt;p&gt;Finally we loop through the site (rows) for both j and i columns and set the values of each items in the arrays.&lt;/p&gt;
&lt;p&gt;In the next array tutorial we will create array objects containing objects with seperate properties and values, like I explained in the description above.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=PgXRWeVP95w:W-wG0VrMfYQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=PgXRWeVP95w:W-wG0VrMfYQ:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=PgXRWeVP95w:W-wG0VrMfYQ:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=PgXRWeVP95w:W-wG0VrMfYQ:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=PgXRWeVP95w:W-wG0VrMfYQ:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=PgXRWeVP95w:W-wG0VrMfYQ:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/PgXRWeVP95w" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/PgXRWeVP95w/post.aspx</link><category>flash</category><pubDate>Thu, 6 Nov 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=228&amp;title=Work-with-Arrays-in-Actionscript-3-part-2</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=228&amp;title=Work-with-Arrays-in-Actionscript-3-part-2</feedburner:origLink></item><item><title>Glossy Error Icon Tutorial</title><description>&lt;p&gt;In this tutorial I will show you how to make my very glossy error message icon using Adobe Photoshop.&lt;/p&gt;
&lt;p&gt;See what we will be making just below.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p align="center"&gt;&lt;img src="http://www.blog.0tutor.com/archive/227/glossy-error-icon.jpg" alt="photoshop tutorial error icon" width="297" height="297" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;First we need to make the outer border of the ellipse shape, so with the ellipse tool drag out a circle (the color doesn''t matter we will change it later).&lt;/p&gt;
&lt;p&gt;In the layers panel double click the new shape layer to get to the layers styles panel and give it settings as shown below.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/227/error-icon-1.jpg" alt="photoshop tutorial error icon" width="266" height="268" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/227/error-icon-2.jpg" alt="photoshop tutorial error icon" width="238" height="246" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/227/error-icon-3.jpg" alt="photoshop tutorial error icon" width="253" height="389" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/227/error-icon-4.jpg" alt="photoshop tutorial error icon" width="240" height="194" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/227/error-icon-5.jpg" alt="photoshop tutorial error icon" width="252" height="200" /&gt;&lt;/p&gt;
&lt;p&gt;And here is the metallic gradient I made..&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/227/error-icon-6.jpg" alt="photoshop tutorial error icon" width="387" height="140" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now your ellipse should look something like this.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/227/error-icon-7.jpg" alt="photoshop tutorial error icon" width="289" height="291" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now that was the first part, easy right? the next stage is to make the inner ellipse, (the red shape), so with the ellipse tool drag out a new shape, a bit smaller, so it looks like the one below.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/227/error-icon-8.jpg" alt="photoshop tutorial error icon" width="287" height="292" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Again go to the layers styles panel and give this shape the following style settings.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/227/error-icon-9.jpg" alt="photoshop tutorial error icon" width="261" height="186" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/227/error-icon-10.jpg" alt="photoshop tutorial error icon" width="237" height="221" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/227/error-icon-11.jpg" alt="photoshop tutorial error icon" width="255" height="188" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;And now the result should look like this.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/227/error-icon-12.jpg" alt="photoshop tutorial error icon" width="294" height="293" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Yes I know this is a lot of settings for such a little effect, but I promise its worth it..&lt;/p&gt;
&lt;p&gt;Now lets make the X in the middle, you can use the custom shape tool to make one, or the text tool and use a custom font the make a cool variation, bit I didn''t, I quite liked the standard X with crisp corners.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/227/error-icon-13.jpg" alt="photoshop tutorial error icon" width="263" height="245" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now yet again go to the layers styles panel and give it the following settings.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/227/error-icon-14.jpg" alt="photoshop tutorial error icon" width="259" height="266" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/227/error-icon-15.jpg" alt="photoshop tutorial error icon" width="253" height="169" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/227/error-icon-16.jpg" alt="photoshop tutorial error icon" width="260" height="190" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/227/error-icon-17.jpg" alt="photoshop tutorial error icon" width="242" height="348" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now we are almost done, we only need the final touch, but its one of the most important things, the glossy effect.&lt;/p&gt;
&lt;p&gt;We will be making this 3 times, using the same technique on 3 different places, so I will only show it once.&lt;/p&gt;
&lt;p&gt;Hold down ctrl and click the outer ellipse shape layer to load the shapes selection.&lt;/p&gt;
&lt;p&gt;Choose the elliptical selection tool, set the selection mode to subtract from selection, and drag over the selection as shown below.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/227/error-icon-18.jpg" alt="photoshop tutorial error icon" width="323" height="319" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Finally we will make a gradient going from white to transparent and drag it in the selection to make the glossy effect.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/227/error-icon-19.jpg" alt="photoshop tutorial error icon" width="400" height="149" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/227/error-icon-20.jpg" alt="photoshop tutorial error icon" width="264" height="236" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now as I wrote before, you will need to repeat this last step two more times to accomplish the full effect as I did.&lt;/p&gt;
&lt;p&gt;That''s it for now, I hope you enjoyed it.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=kfKx21at7CY:WWs1FbL0-e0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=kfKx21at7CY:WWs1FbL0-e0:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=kfKx21at7CY:WWs1FbL0-e0:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=kfKx21at7CY:WWs1FbL0-e0:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=kfKx21at7CY:WWs1FbL0-e0:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=kfKx21at7CY:WWs1FbL0-e0:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/kfKx21at7CY" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/kfKx21at7CY/post.aspx</link><category>photoshop</category><pubDate>Mon, 3 Nov 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=227&amp;title=Glossy-error-icon-with-photoshop</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=227&amp;title=Glossy-error-icon-with-photoshop</feedburner:origLink></item><item><title>Ultimate Halloween Icons Collection</title><description>&lt;p&gt;Happy halloween or what else people are saying these days, I have actually been working on this post for some time now, collecting useful links with halloween stuff, in this post you will find almost every single halloween related icons there exist (only free icons of cause).&lt;/p&gt;
&lt;p&gt;So lets start the list, its going to be quite a big one.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.iconshock.com/web-icons/hallowen/" target="_blank"&gt;&lt;strong&gt;Iconshock.com&lt;/strong&gt;&lt;/a&gt; - Some really cool and detailed halloween icons, quite new release I think.&lt;br /&gt;
&lt;a href="http://www.iconshock.com/web-icons/hallowen/" target="_blank"&gt;&lt;img src="http://www.blog.0tutor.com/archive/226/halloween-1.jpg" alt="halloween icons 1" width="450" height="245" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.icondrawer.com/free.php" target="_blank"&gt;&lt;strong&gt;Icondrawer.com&lt;/strong&gt;&lt;/a&gt; - You must agree with me, this is the best and most detailed icon set, this halloween icons gets 10 out of 10 on my scale, good job.&lt;br /&gt;
  &lt;a href="http://www.icondrawer.com/free.php" target="_blank"&gt;&lt;img src="http://www.blog.0tutor.com/archive/226/halloween-7.jpg" alt="hallowwen icons 7" width="450" height="183" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://deleket.deviantart.com/art/Halloween-Avatars-6695537" target="_blank"&gt;&lt;strong&gt;Deleket - deviantart.com&lt;/strong&gt;&lt;/a&gt; - As you guys might have noticed I spend a lot of time on deviantart, and have also contributed a couple of times, so here is some great halloween icons from deviantart, kind of smiley theme.&lt;br /&gt;
&lt;a href="http://deleket.deviantart.com/art/Halloween-Avatars-66955374" target="_blank"&gt;&lt;img src="http://www.blog.0tutor.com/archive/226/halloween-2.jpg" alt="halloween icons 2" width="450" height="252" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.freeiconsdownload.com/Free_Downloads.asp?id=16" target="_blank"&gt;&lt;strong&gt;Freeiconsdownload.com&lt;/strong&gt;&lt;/a&gt; - What is a halloween without a pumpkin, so here you go, some crazy halloween pumpkin icons.&lt;br /&gt;
&lt;a href="http://www.freeiconsdownload.com/Free_Downloads.asp?id=16" target="_blank"&gt;&lt;img src="http://www.blog.0tutor.com/archive/226/halloween-3.jpg" alt="halloween icons 3" width="450" height="269" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.freeiconsdownload.com/Free_Downloads.asp?id=52" target="_blank"&gt;&lt;strong&gt;Freeiconsdownload.com&lt;/strong&gt;&lt;/a&gt; - Yes some more pumpkin icons. They are really cool and very nicely detailed.&lt;br /&gt;
&lt;a href="http://www.freeiconsdownload.com/Free_Downloads.asp?id=52" target="_blank"&gt;&lt;img src="http://www.blog.0tutor.com/archive/226/halloween-4.jpg" alt="halloween icons 4" width="450" height="295" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;  &lt;a href="http://www.iconspedia.com/cat/halloween/" target="_blank"&gt;&lt;strong&gt;Iconspedia.com&lt;/strong&gt;&lt;/a&gt; - Iconspedia is a great archive for icons, they have a huge storage of cool icons, here is a big collection of their halloween icons.&lt;br /&gt;
&lt;a href="http://www.iconspedia.com/cat/halloween/" target="_blank"&gt;&lt;img src="http://www.blog.0tutor.com/archive/226/halloween-5.jpg" alt="halloween icons 5" width="450" height="166" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://benjigarner.deviantart.com/art/Halloween-Icon-Pack-68116852" target="_blank"&gt;&lt;strong&gt;benjigarner - deviantart.com&lt;/strong&gt;&lt;/a&gt; - Again I stumbled on some icons from deviantart, for those who don''t know deviantart, I can say, they have a huge archive of everything you will ever need.&lt;br /&gt;
&lt;a href="http://benjigarner.deviantart.com/art/Halloween-Icon-Pack-68116852" target="_blank"&gt;&lt;img src="http://www.blog.0tutor.com/archive/226/halloween-8.jpg" alt="halloween icons 8" width="450" height="237" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://iconfactory.com/freeware/preview/woah" target="_blank"&gt;&lt;strong&gt;Iconfactory.com&lt;/strong&gt;&lt;/a&gt; - As you can see from the next few examples, iconfactory has a lot of halloween theme icons, they are really nice and sweet, or scary maybe.&lt;br /&gt;
&lt;a href="http://iconfactory.com/freeware/preview/woah" target="_blank"&gt;&lt;img src="http://www.blog.0tutor.com/archive/226/halloween-9.jpg" alt="halloween icons 9" width="450" height="133" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://iconfactory.com/freeware/preview/h204" target="_blank"&gt;&lt;strong&gt;Iconfactory.com&lt;/strong&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://iconfactory.com/freeware/preview/h204" target="_blank"&gt;&lt;img src="http://www.blog.0tutor.com/archive/226/halloween-10.jpg" alt="halloween icons 10" width="450" height="119" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://iconfactory.com/freeware/preview/stkrhw" target="_blank"&gt;&lt;strong&gt;Iconfactory.com&lt;/strong&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://iconfactory.com/freeware/preview/stkrhw" target="_blank"&gt;&lt;img src="http://www.blog.0tutor.com/archive/226/halloween-11.jpg" alt="halloween 11" width="450" height="107" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://iconfactory.com/freeware/preview/trik" target="_blank"&gt;&lt;strong&gt;Iconfactory.com&lt;/strong&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://iconfactory.com/freeware/preview/trik" target="_blank"&gt;&lt;img src="http://www.blog.0tutor.com/archive/226/halloween-12.jpg" alt="halloween icons 12" width="450" height="114" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.icons-land.com/vista-style-halloween-pumpkin-emoticons.php" target="_blank"&gt;&lt;strong&gt;Icons-land.com&lt;/strong&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.icons-land.com/vista-style-halloween-pumpkin-emoticons.php" target="_blank"&gt;&lt;img src="http://www.blog.0tutor.com/archive/226/halloween-13.jpg" alt="halloween icons 13" width="450" height="208" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.littlerainey.com/halloween/" target="_blank"&gt;&lt;strong&gt;Littlerainey.com&lt;/strong&gt;&lt;/a&gt; - What is a halloween without some monsters, so here you got everything from a ghost, witch, jason voorhees and many more, they are just so great.&lt;br /&gt;
&lt;a href="http://www.littlerainey.com/halloween/" target="_blank"&gt;&lt;img src="http://www.blog.0tutor.com/archive/226/halloween-14.jpg" alt="halloween icons 14" width="450" height="407" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.iconarchive.com/category/halloween/halloween-icons-by-dragonxp.html" target="_blank"&gt;&lt;strong&gt;Iconarchive.com&lt;/strong&gt;&lt;/a&gt; - Some more scary halloween icons.&lt;br /&gt;
&lt;a href="http://www.iconarchive.com/category/halloween/halloween-icons-by-dragonxp.html" target="_blank"&gt;&lt;img src="http://www.blog.0tutor.com/archive/226/halloween-15.jpg" alt="halloween icons 15" width="450" height="95" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://sniffels.deviantart.com/art/A-Candy-Halloween-67770322" target="_blank"&gt;&lt;strong&gt;Sniffels - deviantart.com&lt;/strong&gt;&lt;/a&gt; - Also I think these are quite new, I haven''t seen them around before, but they are cool.&lt;a href="http://sniffels.deviantart.com/art/A-Candy-Halloween-67770322" target="_blank"&gt;&lt;br /&gt;
  &lt;img src="http://www.blog.0tutor.com/archive/226/halloween-16.jpg" alt="halloween icons 16" width="450" height="292" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://hybridworks.deviantart.com/art/Haunted-hotel-67527815" target="_blank"&gt;&lt;strong&gt;hybridworks - deviantart.com&lt;/strong&gt;&lt;/a&gt; - Yes again some halloween pumpkins for you all.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://hybridworks.deviantart.com/art/Haunted-hotel-67527815" target="_blank"&gt;&lt;img src="http://www.blog.0tutor.com/archive/226/halloween-17.jpg" alt="halloween icons 17" width="450" height="265" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://vector4free.com/vectors/id/158" target="_blank"&gt;&lt;strong&gt;Vector4free.com&lt;/strong&gt;&lt;/a&gt; - And here I just slipped in an rss icon, with halloween theme, just that this is the first one I have seen of these, quite nice and clean.&lt;br /&gt;
&lt;a href="http://vector4free.com/vectors/id/158" target="_blank"&gt;&lt;img src="http://www.blog.0tutor.com/archive/226/halloween-18.jpg" alt="halloween icons 18" width="450" height="157" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.smashingmagazine.com/2008/10/27/smashing-pumpkins-a-free-halloween-vector-icon-set/" target="_blank"&gt;&lt;strong&gt;Smashingmagazine.com&lt;/strong&gt;&lt;/a&gt; - This new halloween icons from smashingmagazine should be brand new, just released, so enjoy them.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.smashingmagazine.com/2008/10/27/smashing-pumpkins-a-free-halloween-vector-icon-set/" target="_blank"&gt;&lt;img src="http://www.blog.0tutor.com/archive/226/halloween-19.jpg" alt="halloween icons 19" width="450" height="450" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://kearone.deviantart.com/art/kearone-s-Helloween-icons-24627728" target="_blank"&gt;&lt;strong&gt;kearone - deviantart.com&lt;/strong&gt;&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://kearone.deviantart.com/art/kearone-s-Helloween-icons-24627728" target="_blank"&gt;&lt;img src="http://www.blog.0tutor.com/archive/226/halloween-20.jpg" alt="halloween icons 20" width="450" height="210" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://turbomilk.com/downloads/monsters/" target="_blank"&gt;&lt;strong&gt;Turbomilk.com&lt;/strong&gt;&lt;/a&gt; - I know these are not really halloween icons, but they are cute monsters and monsters are some how related to halloween so I included them anyway.&lt;br /&gt;
  &lt;a href="http://turbomilk.com/downloads/monsters/" target="_blank"&gt;&lt;img src="http://www.blog.0tutor.com/archive/226/halloween-21.jpg" alt="halloween icons 21" width="450" height="259" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now you have something to look at until I make a collection for christmas icons and other holiday collections, so you have something to look forward to.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=XnXzjXzfaeY:CMdclW0ufW8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=XnXzjXzfaeY:CMdclW0ufW8:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=XnXzjXzfaeY:CMdclW0ufW8:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=XnXzjXzfaeY:CMdclW0ufW8:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=XnXzjXzfaeY:CMdclW0ufW8:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=XnXzjXzfaeY:CMdclW0ufW8:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/XnXzjXzfaeY" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/XnXzjXzfaeY/post.aspx</link><category>other</category><pubDate>Thu, 30 Oct 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=226&amp;title=Ultimate-Halloween-Icons-Collection</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=226&amp;title=Ultimate-Halloween-Icons-Collection</feedburner:origLink></item><item><title>Abstract High Res wallpapers</title><description>&lt;p&gt;Today I felt a bit creative, take a look at these new abstract wallpaper I just made. You are welcome to download them use them and share with your friends.&lt;/p&gt;
&lt;p&gt;I would be happy if you mentioned me if you share this.&lt;/p&gt;
&lt;p&gt;And as you know, I don''t mind anybody commenting on my work, and helping to improve our work here.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/225/all.jpg" width="450" height="320" /&gt;&lt;/p&gt;
&lt;p&gt;These wallpapers are made in Adobe photoshop, so below you can download the photoshop file and a jpg file with the wallpapers.&lt;/p&gt;
&lt;p&gt;All wallpapers are 1600 by 1200 px, so the resolution should be okay for most screens.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/225/abstract-blue-twirl_thumb.jpg" alt="twirl abstract wallpaper thumb" width="450" height="157" /&gt;&lt;br /&gt;
&lt;a class="download_btn" href="http://www.blog.0tutor.com/archive/225/abstract-blue-twirl.zip"&gt;&lt;span class="alt"&gt;Download button&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/225/bloodstains_thumb.jpg" width="450" height="157" /&gt;&lt;br /&gt;
&lt;a class="download_btn" href="http://www.blog.0tutor.com/archive/225/blood-stains.zip"&gt;&lt;span class="alt"&gt;Download button&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/225/dream-letters_thumb.jpg" width="450" height="157" /&gt;&lt;br /&gt;
&lt;a class="download_btn" href="http://www.blog.0tutor.com/archive/225/dream-letters.zip"&gt;&lt;span class="alt"&gt;Download button&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I hope you like my new work, look back later to see more of my work.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=Y57xZ2vdfcg:4bOaigF7FMQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=Y57xZ2vdfcg:4bOaigF7FMQ:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=Y57xZ2vdfcg:4bOaigF7FMQ:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=Y57xZ2vdfcg:4bOaigF7FMQ:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=Y57xZ2vdfcg:4bOaigF7FMQ:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=Y57xZ2vdfcg:4bOaigF7FMQ:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/Y57xZ2vdfcg" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/Y57xZ2vdfcg/post.aspx</link><category>other</category><pubDate>Mon, 27 Oct 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=225&amp;title=Abstract-High-Res-wallpapers</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=225&amp;title=Abstract-High-Res-wallpapers</feedburner:origLink></item><item><title>Work with Arrays in Actionscript 3</title><description>&lt;p&gt;In this lesson we will talk about making and using arrays with actionscript 3. Arrays is a HUGE topic, so I have decided to split it into 2 or 3 articles (not sure yet, but we will see).&lt;/p&gt;
&lt;p&gt;In this first lesson we will talk about what arrays are, how to use them, and make our own simple one dimensional array.&lt;/p&gt;
&lt;p&gt;In the next tutorial we will add more advanced theory to the arrays, such as multi dimensional arrays, making objects and adding properties to the array objects to make the arrays hold much more information then just a flat 1 dimensional array.&lt;/p&gt;
&lt;h2&gt;What is an array?&lt;/h2&gt;
&lt;p&gt;An array is kind of a data type, like a string, variable and so on, which means its purpose in life is to contain data. An array is usually made to contain more then one information, like a list of information. We could load a list of image url''s into and array like so [img1.jpg] [img2.jpg] [img3.jpg] [img4.jpg].&lt;/p&gt;
&lt;p&gt;One thing I use arrays to a lot is to hold data sets from a database, or an xml file, so I can close my database connection after the data is loaded, and only needs to call the array data when needed. Its much easier and much faster, I will get into that in one of the more advanced array lessons.&lt;/p&gt;
&lt;h2&gt;How to make and use an array?&lt;/h2&gt;
&lt;p&gt;Now here is how to declare a simple array list, and put some simple one dimensional data into it.&lt;/p&gt;
&lt;p&gt;This is the most simple form of an array, here is an example.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
var myArray:Array = new Array("a", "b", "c");
trace(myArray[0]);
trace(myArray[1]);
trace(myArray[2]);
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;What we did here was to declare a variable with the name &amp;quot;myArray&amp;quot; and give it 3 data items, a, b and c.&lt;/p&gt;
&lt;p&gt;You may have noticed how easy it is to trace an array item just by calling the myArray[number].&lt;/p&gt;
&lt;p&gt;If you think this was simple, just wait to see how simple it is to add items and much more.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
myArray.push("d");
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;That''s it, now lets bring it all together, lets try to add a couple of items to the list, then output all the items with a loop, we will count how many items the array holds, then loop through each item.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
var myArray:Array = new Array("a", "b", "c");
myArray.push("d");
myArray.push("e");
myArray.push("f");

var i:int;
for (i = 0; i &lt; (myArray.length); i++) {
  trace(myArray[i]);
}
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;Didn''t that look easy? and it is, this will output all letters from a to f.&lt;/p&gt;
&lt;p&gt;The final thing I want to show you with simple arrays is how to remove an item from an array list.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
myArray.splice(0, 1);
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;You might think its just as using the push method, but with removing we have the opportunity to remove a row of items at once, say we want to remove the first 3 items it would be.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
myArray.splice(0, 2);
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;I could go on and on and on about using arrays to loop through and do a lot of stuff, and I assure you, I will do some more in depth lessons on that, but an article must have a limit of size, so for a complete list of methods for the array I can only recommend &lt;a href="http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/Array.html#includeExamplesSummary" target="_top"&gt;Adobe''s own livedocs&lt;/a&gt; its some dry reading, but its good for quick reference.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=i9ugXZj3nmg:z3Thvbh3IgM:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=i9ugXZj3nmg:z3Thvbh3IgM:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=i9ugXZj3nmg:z3Thvbh3IgM:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=i9ugXZj3nmg:z3Thvbh3IgM:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=i9ugXZj3nmg:z3Thvbh3IgM:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=i9ugXZj3nmg:z3Thvbh3IgM:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/i9ugXZj3nmg" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/i9ugXZj3nmg/post.aspx</link><category>flash</category><pubDate>Fri, 24 Oct 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=224&amp;title=Work-with-Arrays-in-Actionscript-3</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=224&amp;title=Work-with-Arrays-in-Actionscript-3</feedburner:origLink></item><item><title>Append text with AS3</title><description>&lt;p&gt;Okay its been a while since I have made articles for actionscript, mostly because of some freelance work that has taken a lot of my time lately, so we will be starting off light with a simple function to add text to a textbox using the appendtext.&lt;/p&gt;
&lt;p&gt;Yes I know it sounds simple, and it is, but some newbies sometimes mess up the most simple stuff, so I want to make this stuff clear.&lt;/p&gt;
&lt;p&gt;&lt;em&gt;An example of a bad way to append text to a textbox (or just to a variable)&lt;/em&gt;&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
var myVariable = "hey"
myVariable = myVariable + "there"
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;Which outputs hey there, BUT I will recommend you doing it another way.&lt;/p&gt;
&lt;p&gt;First this is what we will be making.&lt;/p&gt;
&lt;div align="center"&gt;
&lt;object width="350" height="230"&gt;
&lt;param name="flash actionscript 3 append text" value="./archive/223/append_text.swf"&gt;
&lt;embed src="./archive/223/append_text.swf" width="350" height="230"&gt;
&lt;/embed&gt;
&lt;/object&gt;&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The method we will use is called appendText, but first we need to set up a button and some textboxes, and give them instance names.&lt;/p&gt;
&lt;p&gt;First make the three buttons as shown in the example above, give them the following instance names. &amp;quot;appendBreakBtn&amp;quot; &amp;quot;appendBtn&amp;quot; &amp;quot;breakBtn&amp;quot;&lt;/p&gt;
&lt;p&gt;Now make two textboxes, you can just drag them from the component panel, make one of them multline and give them the following instance names. &amp;quot;inputText&amp;quot; and &amp;quot;displayText&amp;quot;.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;Now we are ready to look at some code. &lt;/h2&gt;
&lt;p&gt;This first function will just add functionality to the appendBtn button, to add some text into the textbox named displayText.&lt;/p&gt;
&lt;p&gt;We add an eventlistener to listen to when somebody clicks the button, then active the function to add the text from the input text field.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
appendBtn.addEventListener(MouseEvent.CLICK, doAppend);
function doAppend(evt:MouseEvent):void {
	displayText.appendText(inputText.text);
}
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;This next function will be to add a line break, because for some reason this is really weird with textboxes in flash actionscript, what you have to do is to add a /n this is a line break. So let's do that.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
breakBtn.addEventListener(MouseEvent.CLICK, doBreak);
function doBreak(evt:MouseEvent):void {
	displayText.appendText("\n");
}
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;Finally the last thing we will do is to combine those two functions so after we append some text to the textfield, we will add a linebreak.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
appendBreakBtn.addEventListener(MouseEvent.CLICK, doAppendBreak);
function doAppendBreak(evt:MouseEvent):void {
	displayText.appendText(inputText.text + "\n");
}
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;As you might see, this is the first step towards making a small chat in flash, so maybe I will make an article about that, and this will be a pre launch of that, who knows.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=oozFmpgJDCs:uYTMyNPxV84:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=oozFmpgJDCs:uYTMyNPxV84:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=oozFmpgJDCs:uYTMyNPxV84:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=oozFmpgJDCs:uYTMyNPxV84:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=oozFmpgJDCs:uYTMyNPxV84:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=oozFmpgJDCs:uYTMyNPxV84:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/oozFmpgJDCs" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/oozFmpgJDCs/post.aspx</link><category>flash</category><pubDate>Wed, 22 Oct 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=223&amp;title=Append-text-with-AS3</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=223&amp;title=Append-text-with-AS3</feedburner:origLink></item><item><title>Disco retro contentbox PSD</title><description>&lt;p&gt;Check out this new web header or content box graphic I made last night, retro style, dance thingy. I just love working with vector shapes, combining them to make funny and cool designs.&lt;/p&gt;
&lt;p&gt;I didnt know what to use this for, so I share it with you guys. You can download the Photoshop file here and use it if you want.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/222/retro_box.jpg" alt="retro party header" width="470" height="376" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Download the photoshop file:&lt;/p&gt;
&lt;p&gt;Size: 314kb&lt;br /&gt;
Format: Photoshop psd file.&lt;/p&gt;
&lt;a class="download_btn" href="http://www.blog.0tutor.com/archive/222/retro_contentbox.zip"&gt;&lt;span class="alt"&gt;Download button&lt;/span&gt;&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=VLBA_Luok1s:YeqhBLhq6kU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=VLBA_Luok1s:YeqhBLhq6kU:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=VLBA_Luok1s:YeqhBLhq6kU:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=VLBA_Luok1s:YeqhBLhq6kU:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=VLBA_Luok1s:YeqhBLhq6kU:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=VLBA_Luok1s:YeqhBLhq6kU:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/VLBA_Luok1s" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/VLBA_Luok1s/post.aspx</link><category>downloads</category><pubDate>Thu, 16 Oct 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=222&amp;title=Disco-retro-contentbox-PSD</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=222&amp;title=Disco-retro-contentbox-PSD</feedburner:origLink></item><item><title>0Tutor Announcing Design Makeover</title><description>&lt;p&gt;So I dicided to make a redesign, not only a redesign, I changed the whole structure of the site, acturlly a great deal of work, but now I hope this will be the final version, with only a few small changes now and then.&lt;/p&gt;
&lt;p&gt;So what do you thing of it?&lt;br&gt;
&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.blog.0tutor.com/archive/221/newdesign.jpg"&gt;&lt;img src="http://www.blog.0tutor.com/archive/221/newdesign_thumb.jpg" alt="" width="450" height="340" border="0"&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;  With a new design comes great responsibility, so we are going to make some changes now. &lt;br /&gt;
&lt;/p&gt;
&lt;p&gt; In the future not only will we provide tutorials to our visitors, but also 
  free graphic, icons, and other interesting download resources for webmasters, designers, and everybody else in need.&lt;br /&gt;
So keep visiting the 0tutor blog and see what the future will bring. &lt;/p&gt;
&lt;p&gt;For now I will use a week or so on implementing my new designs, so keep visiting and see the changes flow.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;em&gt; I would love to get some feedback before I launch my new design (or even after, maybe I will make some changes later on).&lt;/em&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=Cxq7XAxX0Ak:5ifNf29jmGc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=Cxq7XAxX0Ak:5ifNf29jmGc:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=Cxq7XAxX0Ak:5ifNf29jmGc:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=Cxq7XAxX0Ak:5ifNf29jmGc:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=Cxq7XAxX0Ak:5ifNf29jmGc:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=Cxq7XAxX0Ak:5ifNf29jmGc:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/Cxq7XAxX0Ak" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/Cxq7XAxX0Ak/post.aspx</link><category>other</category><pubDate>Sat, 27 Sep 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=221&amp;title=0Tutor-Announcing-Design-Makeover</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=221&amp;title=0Tutor-Announcing-Design-Makeover</feedburner:origLink></item><item><title>Summer sky wallpaper</title><description>&lt;p&gt;Even though its raining and the summer is over, I still feel like making one more summer wallpaper to my collection. next time I will try to make some winter theme wallpapers instead, or some ice to cool me down a bit.&lt;/p&gt;
&lt;p&gt;But for now you may settle for some summer inspired wallpapers and here is the next one in the season.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.blog.0tutor.com/archive/220/sunny_again_wallpaper.jpg"&gt;&lt;img src="http://www.blog.0tutor.com/archive/220/sunny_again_wallpaper.jpg" alt="sunny day wallpaper again" width="470" height="344" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Here is the wallpaper download info.&lt;/p&gt;
&lt;p&gt;Size: 1.5 mb&lt;br /&gt;
  Resolutions: 1280x1024 and 1440x900&lt;br /&gt;
Format: Photoshop psd file.&lt;/p&gt;
&lt;a class="download_btn" href="http://rapidshare.com/files/141997993/summer_time_again.zip.html"&gt;&lt;span class="alt"&gt;Download button&lt;/span&gt;&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=kPVnplVSuQg:0chbPfgFQZg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=kPVnplVSuQg:0chbPfgFQZg:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=kPVnplVSuQg:0chbPfgFQZg:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=kPVnplVSuQg:0chbPfgFQZg:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=kPVnplVSuQg:0chbPfgFQZg:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=kPVnplVSuQg:0chbPfgFQZg:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/kPVnplVSuQg" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/kPVnplVSuQg/post.aspx</link><category>other</category><pubDate>Tue, 2 Sep 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=220&amp;title=Summer-sky-wallpaper</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=220&amp;title=Summer-sky-wallpaper</feedburner:origLink></item><item><title>Sunny day wallpaper</title><description>&lt;p&gt;It has been sunny all day after 7 days of constant rain, damn its nice with some sun, and the temperature has raised quite a bit, so I got inspired to make a wallpaper of a sunny day with some sunrays and green, yellow bright colors. &lt;/p&gt;
&lt;p&gt;Hope you like it.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.blog.0tutor.com/archive/219/sunny_day_wallpaper.jpg"&gt;&lt;img src="http://www.blog.0tutor.com/archive/219/sunny_day_wallpaper.jpg" alt="sunny day wallpaper" width="470" height="288" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Here is the wallpaper download info.&lt;/p&gt;
&lt;p&gt;Size: 1.5 mb&lt;br /&gt;
  Resolutions: 1280x1024 and 1440x900&lt;br /&gt;
Format: Photoshop psd file.&lt;/p&gt;
&lt;a class="download_btn" href="http://rapidshare.com/files/139933081/sunny_wallpaper.zip.html"&gt;&lt;span class="alt"&gt;Download button&lt;/span&gt;&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=gfGmP-GTKj0:0ICzqYPEWK8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=gfGmP-GTKj0:0ICzqYPEWK8:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=gfGmP-GTKj0:0ICzqYPEWK8:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=gfGmP-GTKj0:0ICzqYPEWK8:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=gfGmP-GTKj0:0ICzqYPEWK8:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=gfGmP-GTKj0:0ICzqYPEWK8:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/gfGmP-GTKj0" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/gfGmP-GTKj0/post.aspx</link><category>other</category><pubDate>Tue, 26 Aug 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=219&amp;title=Sunny-day-wallpaper</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=219&amp;title=Sunny-day-wallpaper</feedburner:origLink></item><item><title>Stylish button set giveaway</title><description>&lt;p&gt;I have really been working lately, I had a customer requesting some buttons for some software interface, so I made a couple of different styles. (Of cause I cant give away the one they paid me for) but I did make a couple of others, and here is one I will share with you for free.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.blog.0tutor.com/archive/218/buttons-set.jpg"&gt;&lt;img src="http://www.blog.0tutor.com/archive/218/buttons-set.jpg" alt="stylish web buttons set download" width="470" height="319" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;So click here to download my stylish photoshop buttons set, easily editable to change the buttons text and symbols, or even adjust colors and shapes.&lt;/p&gt;
&lt;p&gt;Im acturlly really annoid that I cant share with you the buttons they actrually choose, because they are really cool, maybe some day they will let me publish them for you.&lt;/p&gt;
&lt;p&gt;But as I said, here are my new buttons set.&lt;/p&gt;
&lt;p&gt;Download the photoshop file:&lt;/p&gt;
&lt;p&gt;Size: 314kb&lt;br /&gt;
Format: Photoshop psd file.&lt;/p&gt;
&lt;a class="download_btn" href="http://rapidshare.com/files/138686638/stylish_button_set.zip.html"&gt;&lt;span class="alt"&gt;Download button&lt;/span&gt;&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=xQev4xJB60U:WgXSULFYJ4w:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=xQev4xJB60U:WgXSULFYJ4w:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=xQev4xJB60U:WgXSULFYJ4w:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=xQev4xJB60U:WgXSULFYJ4w:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=xQev4xJB60U:WgXSULFYJ4w:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=xQev4xJB60U:WgXSULFYJ4w:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/xQev4xJB60U" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/xQev4xJB60U/post.aspx</link><category>other</category><pubDate>Wed, 20 Aug 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=218&amp;title=Stylish-button-set-giveaway</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=218&amp;title=Stylish-button-set-giveaway</feedburner:origLink></item><item><title>Sleek Green Soda Wallpaper</title><description>&lt;p&gt;I made this new wallpaper today when I saw some soda advertising in a magazine, I dont even remember what magazine, but I quite like my new colorful wallpaper.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.blog.0tutor.com/archive/217/retro_soda_wallpaper.jpg"&gt;&lt;img src="http://www.blog.0tutor.com/archive/217/retro_soda_wallpaper.jpg" alt="retro green soda ad wallpaper" width="450" height="320" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;And for the wallpapers specs.&lt;/p&gt;
&lt;p&gt;Size: 1.5 mb&lt;br /&gt;
  Resolutions: 1280x1024 and 1440x900&lt;br /&gt;
Format: Photoshop psd file.&lt;/p&gt;
&lt;a class="download_btn" href="http://rapidshare.com/files/138161596/sleek_soda_wallpaper.zip.html"&gt;&lt;span class="alt"&gt;Download button&lt;/span&gt;&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=Vm7EOs0BVAI:luTQYHOPIKQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=Vm7EOs0BVAI:luTQYHOPIKQ:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=Vm7EOs0BVAI:luTQYHOPIKQ:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=Vm7EOs0BVAI:luTQYHOPIKQ:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=Vm7EOs0BVAI:luTQYHOPIKQ:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=Vm7EOs0BVAI:luTQYHOPIKQ:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/Vm7EOs0BVAI" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/Vm7EOs0BVAI/post.aspx</link><category>other</category><pubDate>Mon, 18 Aug 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=217&amp;title=Sleek-Green-Soda-Wallpaper</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=217&amp;title=Sleek-Green-Soda-Wallpaper</feedburner:origLink></item><item><title>Army text style with Photoshop</title><description>&lt;p&gt;In this Adobe Photoshop tutorial I will show you how to make this great looking army style text effect.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.blog.0tutor.com/archive/216/army_text_effect.jpg"&gt;&lt;img src="http://www.blog.0tutor.com/archive/216/army_text_effect.jpg" alt="army text effect photohop tutorial" width="480" height="183" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;First start by making a green gradient and drag it across the stage, then type in your text, the color does not matter, we will change that later.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/216/img1.jpg" alt="army text effect photohop tutorial" width="444" height="248" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I used a font called &amp;quot;stencil&amp;quot; it has kind of a army style look, and looks quite cool with the effect.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now in the layers panel double click the text layer we just created to get to the layers styles panel, then give it the following settings.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/216/img2.jpg" alt="army text effect photohop tutorial" width="265" height="185" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/216/img3.jpg" alt="army text effect photohop tutorial" width="244" height="234" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/216/img4.jpg" alt="army text effect photohop tutorial" width="251" height="246" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/216/img5.jpg" alt="army text effect photohop tutorial" width="251" height="176" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/216/img6.jpg" alt="army text effect photohop tutorial" width="254" height="194" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/216/img7.jpg" alt="army text effect photohop tutorial" width="271" height="182" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;For the last one, the pattern overlay, you will need to create a pattern first or download a photoshop pattern and import it the your photoshop patterns, just do some google search for photoshop stripe pattern and you will find some good free photoshop patterns.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now we will make the top glossy part of the letters, so hold down ctrl and click the text layer in the layers panel to load the text selection.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Then create a new layer above and name it gloss or something, with a white color use a brush to stroke some glossiness on the letters like I did below.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/216/img8.jpg" alt="army text effect photohop tutorial" width="336" height="156" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now the rest of it is just for show, but I will tell you what I did anyway, just make a copy of all the layers concerning the text, flip it using the edit -&amp;gt; transform -&amp;gt; flip vertical, move it down and bring its opacity down. this will make a mirror reflection of the text.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/216/img9.jpg" alt="army text effect photohop tutorial" width="450" height="153" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=9Gi0v624CLo:v3FPBVO-TmU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=9Gi0v624CLo:v3FPBVO-TmU:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=9Gi0v624CLo:v3FPBVO-TmU:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=9Gi0v624CLo:v3FPBVO-TmU:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=9Gi0v624CLo:v3FPBVO-TmU:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=9Gi0v624CLo:v3FPBVO-TmU:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/9Gi0v624CLo" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/9Gi0v624CLo/post.aspx</link><category>photoshop</category><pubDate>Fri, 15 Aug 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=216&amp;title=Army-text-style-with-Photoshop</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=216&amp;title=Army-text-style-with-Photoshop</feedburner:origLink></item><item><title>Retro contact form with CSS</title><description>&lt;p&gt;As you might have noticed on my blog, I have been doing a lot of css/html designs lately, well its not like I stopped playing with photoshop, but Im taking a break and trying to motivate myself with other sources.&lt;/p&gt;
&lt;p&gt;So what we have been doing today is making a retro styled html contact form like you can see below, you can also download the html source files below.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="./archive/215/final.jpg" alt="css styled contact form tutorial" width="400" height="367" border="0" /&gt;&lt;/p&gt;
&lt;p&gt;Size: 314kb&lt;br /&gt;
Format: Photoshop psd file.&lt;/p&gt;
&lt;a class="download_btn" href="http://rapidshare.com/files/136486692/contact_form.zip.html"&gt;&lt;span class="alt"&gt;Download button&lt;/span&gt;&lt;/a&gt;
&lt;p&gt;Now for all of you who also want to learn something here and not only use what I made (even though thats also okay), but here is a small tutorial on how to make this retro styled contact form with html and css styles.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;First the retro white box is just one big image, you can download it below, just right click and save on your desktop.&lt;/p&gt;
&lt;p&gt;I made it in photoshop, im not going through the steps on how I made it, you can watch some of my photoshop tutorials, and I will promise you, you will learn how to do it.&lt;/p&gt;
&lt;p&gt;&lt;img src="./archive/215/1.jpg" alt="css styled contact form tutorial" width="400" height="367" /&gt;&lt;/p&gt;
&lt;p&gt;Now we need two files, an html file to contain all the html code, and a styles sheet file to control most design and sizes etc.&lt;/p&gt;
&lt;p&gt;So here is the source code for the html file&lt;/p&gt;

&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="html"&gt;
&lt;link href="style.css" media="all" rel="stylesheet" /&gt;
&lt;div class="box_wrapper"&gt;
    &lt;div class="textbox_outer"&gt;
        &lt;table width="200" border="0"&gt;
            &lt;tr&gt;
                &lt;td&gt;&lt;label for="name"&gt;Name:&lt;/label&gt;&lt;/td&gt;
                &lt;td&gt;&lt;input class="textboxes" type="text" name="name" /&gt;&lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;
                &lt;td&gt;&lt;label for="email"&gt;Email:&lt;/label&gt;&lt;/td&gt;
                &lt;td&gt;&lt;input class="textboxes" type="text" name="email" /&gt;&lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;
                &lt;td valign="top"&gt;&lt;label for="message"&gt;Message:&lt;/label&gt;&lt;/td&gt;
                &lt;td&gt;&lt;textarea name="message"&gt;&lt;/textarea&gt;&lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;
            	&lt;td colspan="2" align="right" valign="top"&gt;&lt;input class="send_btn" type="Submit" name="send" value="Send" /&gt;&lt;/td&gt;
            &lt;/tr&gt;
        &lt;/table&gt;
    &lt;/div&gt;
&lt;/div&gt;
&lt;/pre&gt;
&lt;/div&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;And the Css code&lt;/p&gt;

&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="css"&gt;
body {
background-color:#80d7ff;
font-size:120%;
}
.textbox_outer {
padding-top: 230px; padding-left:150px;
}
.box_wrapper {
background-image:url(imgs/bg.jpg); background-position:center; background-repeat:no-repeat;
width:650px; height:597px; margin:auto; margin-top: 70px;
}
textarea {
font-family: "Lucida Grande",Verdana,sans-serif;
font-size:18px;
border: 1px solid #999999;
width:270px; height:100px;
background-color:#80d7ff;
overflow: auto;
}
input {
font-family: "Lucida Grande",Verdana,sans-serif;
font-size:18px;
border: 1px solid #999999;
}
input.textboxes {
width:270px;
background-color:#80d7ff; 
}
input.btn {
color:#ff00c0;
border: 1px solid #999999;
}
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;Save the files, remember to keep the image file in a seperate folder named imgs, and if you can get it to work, try downloading the project file at the top of the post.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=Lf8lcPa1fGE:mhwcMPEJQiA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=Lf8lcPa1fGE:mhwcMPEJQiA:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=Lf8lcPa1fGE:mhwcMPEJQiA:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=Lf8lcPa1fGE:mhwcMPEJQiA:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=Lf8lcPa1fGE:mhwcMPEJQiA:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=Lf8lcPa1fGE:mhwcMPEJQiA:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/Lf8lcPa1fGE" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/Lf8lcPa1fGE/post.aspx</link><category>css</category><pubDate>Mon, 11 Aug 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=215&amp;title=Retro-contact-form-with-CSS</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=215&amp;title=Retro-contact-form-with-CSS</feedburner:origLink></item><item><title>Funny cartoon text style</title><description>&lt;p&gt;In this Adobe Photoshop tutorial we will make a funny cartoon text effect, I hope you like it.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.blog.0tutor.com/archive/214/cartoon-text-style.jpg"&gt;&lt;img src="http://www.blog.0tutor.com/archive/214/cartoon-text-style.jpg" alt="funny cartoon text style with photoshop" width="449" height="166" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;First type in the text you want to apply this effect to, remember to use a very bold text, and with some soft edges will also help.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I used a font called &amp;quot;showcard gothic&amp;quot; which gives me a great effect.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/214/img1.jpg" alt="funny cartoon text style with photoshop" width="412" height="153" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now go to the layers panel and double click the text layer to get to the layers styles panel and give it the following settings.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/214/img2.jpg" alt="funny cartoon text style with photoshop" width="261" height="182" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/214/img3.jpg" alt="funny cartoon text style with photoshop" width="256" height="378" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/214/img4.jpg" alt="funny cartoon text style with photoshop" width="258" height="191" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/214/img5.jpg" alt="funny cartoon text style with photoshop" width="273" height="182" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;For  the pattern overlay, you will need to create a pattern first   or download a photoshop pattern and import it the your photoshop patterns, just   do some google search for photoshop stripe pattern and you will find some good   free photoshop patterns.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now we will make the glossy effect at the top of every letter.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Hold down ctrl and click the letters layer in the layers panel to load the shape selection. Then with the elliptical selection tool make sure to choose the selection mode &amp;quot;intersect with selection&amp;quot; and drag a selection as shown below.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/214/img6.jpg" alt="funny cartoon text style with photoshop" width="434" height="160" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Then you should end up with a selection looking like this.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/214/img7.jpg" alt="funny cartoon text style with photoshop" width="420" height="160" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Make a new layer, fill the selection with a white color and bring down its opacity to about 20 percent (maybe less), and we are done.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The final touch I did was to add this whole effect to each letters separately and rotate them to make them look a bit funny.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=TOJu2flu1Ec:JBSxrwKwg9o:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=TOJu2flu1Ec:JBSxrwKwg9o:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=TOJu2flu1Ec:JBSxrwKwg9o:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=TOJu2flu1Ec:JBSxrwKwg9o:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=TOJu2flu1Ec:JBSxrwKwg9o:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=TOJu2flu1Ec:JBSxrwKwg9o:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/TOJu2flu1Ec" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/TOJu2flu1Ec/post.aspx</link><category>photoshop</category><pubDate>Fri, 8 Aug 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=214&amp;title=Funny-cartoon-text-style</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=214&amp;title=Funny-cartoon-text-style</feedburner:origLink></item><item><title>Green retro wallpaper</title><description>&lt;p&gt;I have been very much into retro style stuff lately, so now I made a new wallpaper using some different vector shapes and playing with some colors.&lt;/p&gt;
&lt;p&gt;You can download it and use it for free here, but if you want to redistribute it, you may give me a linkback or a thanks note.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.blog.0tutor.com/archive/213/retro_wallpaper.jpg"&gt;&lt;img src="http://www.blog.0tutor.com/archive/213/retro_wallpaper.jpg" alt="green retro wallpaper" width="470" height="379" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Almost forgot.&lt;/p&gt;
&lt;p&gt;Size: 1.5 mb&lt;br /&gt;
  Resolutions: 1280x1024 and 1440x900&lt;br /&gt;
Format: Photoshop psd file.&lt;/p&gt;
&lt;a class="download_btn" href="http://rapidshare.com/files/135479390/retro_wallpaper.zip.html"&gt;&lt;span class="alt"&gt;Download button&lt;/span&gt;&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=ysXRCWcapVA:JFBacCGBcC8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=ysXRCWcapVA:JFBacCGBcC8:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=ysXRCWcapVA:JFBacCGBcC8:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=ysXRCWcapVA:JFBacCGBcC8:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=ysXRCWcapVA:JFBacCGBcC8:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=ysXRCWcapVA:JFBacCGBcC8:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/ysXRCWcapVA" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/ysXRCWcapVA/post.aspx</link><category>other</category><pubDate>Thu, 7 Aug 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=213&amp;title=Green-retro-wallpaper</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=213&amp;title=Green-retro-wallpaper</feedburner:origLink></item><item><title>Colurful Price Tags Tutorial</title><description>&lt;p&gt;In this Adobe Photoshop tutorial we will make a simple, sleek price tag with nice colors and gradients.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.blog.0tutor.com/archive/212/price_tag_photoshop.jpg"&gt;&lt;img src="http://www.blog.0tutor.com/archive/212/price_tag_photoshop.jpg" alt="colorful pricetag with photoshop" width="450" height="450" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;First with Photoshop, open the custom shapes panel and locate the &amp;quot;star shape&amp;quot; like I found below, it should be there by default with photoshop when you bought it.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/212/img1.jpg" alt="colorful price tag photoshop tutorial" width="194" height="185" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now in the layers panel, double click on the new layer to get to the layers styles panel and give it the following settings&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/212/img2.jpg" alt="colorful price tag photoshop tutorial" width="265" height="191" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/212/img3.jpg" alt="colorful price tag photoshop tutorial" width="261" height="188" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/212/img4.jpg" alt="colorful price tag photoshop tutorial" width="251" height="196" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now we will make the price tag glossiness, so create a new layer above the price tag layer and name glossy or something.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Hold down ctrl and click the price tag layer in the layers panel to load the shapes selection.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;With the elliptical selection tool, make sure you have the selection mode set to &amp;quot;intersect with selection&amp;quot; and drag as shown below.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/212/img5.jpg" alt="colorful price tag photoshop tutorial" width="221" height="226" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Drag a gradient going from white to transparent, inside the selection, as I did below.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/212/img6.jpg" alt="colorful price tag photoshop tutorial" width="188" height="185" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now you can type in whatever price within the price tag shape, between the shape and glossy layers in the layers panel.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/212/img7.jpg" alt="colorful price tag photoshop tutorial" width="203" height="200" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Download the photoshop file:&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Size: 314kb&lt;br /&gt;
Format: Photoshop psd file.&lt;/p&gt;
&lt;p align="left"&gt;&lt;a href="http://rapidshare.com/files/134972196/Price_tags.zip.html"&gt;&lt;img src="http://blog.0tutor.com/images/download_btn.jpg" alt="Download wallpaper here" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=fq-eV_6vHx0:_GZ3p6SMQZk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=fq-eV_6vHx0:_GZ3p6SMQZk:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=fq-eV_6vHx0:_GZ3p6SMQZk:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=fq-eV_6vHx0:_GZ3p6SMQZk:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=fq-eV_6vHx0:_GZ3p6SMQZk:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=fq-eV_6vHx0:_GZ3p6SMQZk:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/fq-eV_6vHx0" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/fq-eV_6vHx0/post.aspx</link><category>photoshop</category><pubDate>Tue, 5 Aug 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=212&amp;title=Colurful-Price-Tags-Tutorial</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=212&amp;title=Colurful-Price-Tags-Tutorial</feedburner:origLink></item><item><title>Water bubbles wallpaper</title><description>&lt;p&gt;Check out this new wallpaper I just made, as you might already have guessed it some water with bubbles.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/211/waterbubbles_wallpaper.jpg" alt="wallpaper water bubbles" width="450" height="311" /&gt;&lt;/p&gt;
&lt;p&gt;I had my morning shower and felt kind of bubbly so I got inspired and made this water bubble wallpaper for you, I think it looks quite good, if you like it, feel free to download it and use it as you want, but just remember if you redistribute it, give me some credit, as for any other wallpapers on my site, but you can read all the in the readme file if you download the wallpaper.&lt;/p&gt;
&lt;p&gt;And for the wallpapers specs.&lt;/p&gt;
&lt;p&gt;Size: 1.5 mb&lt;br /&gt;
  Resolutions: 1280x1024 and 1440x900&lt;br /&gt;
Format: Photoshop psd file.&lt;/p&gt;
&lt;p align="left"&gt;&lt;a class="download_btn" href="http://rapidshare.com/files/134722401/water_bubbles.zip.html"&gt;&lt;span class="alt"&gt;Download button&lt;/span&gt;&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=XZEK-V9qTeU:pM0uTtYQbcg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=XZEK-V9qTeU:pM0uTtYQbcg:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=XZEK-V9qTeU:pM0uTtYQbcg:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=XZEK-V9qTeU:pM0uTtYQbcg:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=XZEK-V9qTeU:pM0uTtYQbcg:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=XZEK-V9qTeU:pM0uTtYQbcg:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/XZEK-V9qTeU" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/XZEK-V9qTeU/post.aspx</link><category>other</category><pubDate>Mon, 4 Aug 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=211&amp;title=Water-bubbles-wallpaper</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=211&amp;title=Water-bubbles-wallpaper</feedburner:origLink></item><item><title>Poker header Photoshop Tutorial</title><description>&lt;p&gt;Check out this new poker header graphic I made yesterday, I want to share with you.&lt;/p&gt;
&lt;p&gt;You can download the Photoshop file at the bottom, or you can read the tutorial and make one of your own, with your own characteristics.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.blog.0tutor.com/archive/210/poker_header.jpg"&gt;&lt;img src="http://www.blog.0tutor.com/archive/210/poker_header.jpg" alt="poker header photoshop tutorial" width="470" height="249" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p align="left"&gt;&lt;a href="http://rapidshare.com/files/134037733/poker_header.zip.html"&gt;&lt;img src="http://blog.0tutor.com/images/download_btn.jpg" alt="Download wallpaper here" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;
&lt;p align="left"&gt;And here is the tutorial.&lt;/p&gt;
&lt;p&gt;First we will make the background, and here we will make some sunray shapes, you can either search google for some sunray photoshop brush or shapes to save time and work.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Or do it the hard way, with the pen tool click and make a triangle spike, copy it a lot of times, place them like I did in the image below..&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/210/img1.jpg" alt="poker header photoshop tutorial" width="450" height="239" /&gt;&lt;/p&gt;
&lt;p&gt;Now we will change the background color, so select the background layer and make a gradient from light green to dark and with the radial gradient tool drag out from center of the image we are making.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/210/img2.jpg" alt="poker header photoshop tutorial" width="450" height="241" /&gt;&lt;/p&gt;
&lt;p&gt;Set the sunray layers blending mode to multiply and your background should look like this.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/210/img3.jpg" alt="poker header photoshop tutorial" width="450" height="235" /&gt;&lt;/p&gt;
&lt;p&gt;Now we will be making the poker cards, this is quite simple because Photoshop is give us most of the shapes.&lt;/p&gt;
&lt;p&gt;You will repeat these next steps 4 times, one for each card of cause.&lt;/p&gt;
&lt;p&gt;So with the rectangle tool drag out a shape for the cards.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/210/img4.jpg" alt="poker header photoshop tutorial" width="260" height="265" /&gt;&lt;/p&gt;
&lt;p&gt;Go to photoshop custom shape dropdownbox and locate the 4 card symbols, like a heart, diamond, etc and place them inside each card shape.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/210/img5.jpg" alt="poker header photoshop tutorial" width="452" height="273" /&gt;&lt;/p&gt;
&lt;p&gt;In the layers panel select each card separately and with the free transform tool rotate and place them like I did below.&lt;/p&gt;
&lt;p&gt;You might also want to resize them to make them fit the image size.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/210/img6.jpg" alt="poker header photoshop tutorial" width="450" height="237" /&gt;&lt;/p&gt;
&lt;p&gt;This last part if the our text, so with the text tool type in some text on the stage, still having the text selected, click on the small icon at the top of the photoshop window named &amp;quot;wrap text&amp;quot;&lt;/p&gt;
&lt;p&gt;and set it like I did below.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/210/img7.jpg" alt="poker header photoshop tutorial" width="361" height="251" /&gt;&lt;/p&gt;
&lt;p&gt;Now your text should look something like this, (your font might not be the same as mine of cause).&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/210/img8.jpg" alt="poker header photoshop tutorial" width="450" height="155" /&gt;&lt;/p&gt;
&lt;p&gt;The final thing we need to do is to style the text, so in the layers panel, double click on the text layer to get to the layers styles panel and give it settings like below.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/210/img9.jpg" alt="poker header photoshop tutorial" width="244" height="335" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/210/img10.jpg" alt="poker header photoshop tutorial" width="256" height="188" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/210/img11.jpg" alt="poker header photoshop tutorial" width="234" height="194" /&gt;&lt;/p&gt;
&lt;p&gt;Download the photoshop file:&lt;/p&gt;
&lt;p&gt;Size: 314kb&lt;br /&gt;
Format: Photoshop psd file.&lt;/p&gt;
&lt;a class="download_btn" href="http://rapidshare.com/files/134037733/poker_header.zip.html"&gt;&lt;span class="alt"&gt;Download button&lt;/span&gt;&lt;/a&gt;
&lt;p&gt;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=HA9RHoR5F88:EWYiM-UAQVY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=HA9RHoR5F88:EWYiM-UAQVY:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=HA9RHoR5F88:EWYiM-UAQVY:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=HA9RHoR5F88:EWYiM-UAQVY:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=HA9RHoR5F88:EWYiM-UAQVY:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=HA9RHoR5F88:EWYiM-UAQVY:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/HA9RHoR5F88" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/HA9RHoR5F88/post.aspx</link><category>photoshop</category><pubDate>Fri, 1 Aug 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=210&amp;title=Poker-header-Photoshop-Tutorial</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=210&amp;title=Poker-header-Photoshop-Tutorial</feedburner:origLink></item><item><title>Sunshine and flowers Free Wallpaper</title><description>&lt;p&gt;I felt like doing something warm today in this overheated apartment, did I say is just as hot today as it was yesterday.&lt;/p&gt;
&lt;p&gt;So while I was feeling warm and and overheated, I made a sunshine inspired wallpaper with flowers and a cute little butterfly, simple minimalistic colors and shapes to make the wallpaper look clean.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.blog.0tutor.com/archive/209/flowers_wallpaper.jpg"&gt;&lt;img src="http://www.blog.0tutor.com/archive/209/flowers_wallpaper.jpg" alt="sunshine and flowers wallpaper" width="470" height="352" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;So enjoy the wallpaper, and the summer while it last.&lt;/p&gt;
&lt;p&gt;And here is some wallpaper download info:&lt;/p&gt;
&lt;p&gt;Size: 1.5 mb&lt;br /&gt;
  Resolutions: 1280x1024 and 1440x900&lt;br /&gt;
Format: Photoshop psd file.&lt;/p&gt;
&lt;a class="download_btn" href="http://rapidshare.com/files/133533722/flowers_n_sun_wallpaper.zip.html"&gt;&lt;span class="alt"&gt;Download button&lt;/span&gt;&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=17GMGk_tAmI:-HNZCYzj_AM:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=17GMGk_tAmI:-HNZCYzj_AM:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=17GMGk_tAmI:-HNZCYzj_AM:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=17GMGk_tAmI:-HNZCYzj_AM:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=17GMGk_tAmI:-HNZCYzj_AM:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=17GMGk_tAmI:-HNZCYzj_AM:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/17GMGk_tAmI" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/17GMGk_tAmI/post.aspx</link><category>other</category><pubDate>Wed, 30 Jul 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=209&amp;title=Sunshine-and-flowers-Free-Wallpaper</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=209&amp;title=Sunshine-and-flowers-Free-Wallpaper</feedburner:origLink></item><item><title>Pink navbar Photoshop Tutorial</title><description>&lt;p&gt;In this Adobe Photoshop tutorial we will make a sleek and stylish web navigation bar, I hope you enjoy it as much as my classmates did.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/208/sexy-nav-bar.jpg" alt="sexy pink navbar with photoshop" width="500" height="140" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;First we will make the rounded box for the nav bar, so choose the rounded rectangle tool and drag a rectangle on the stage like I did below.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/208/img1.jpg" alt="sexy navigation bar with photoshop" width="450" height="77" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;In the layers panel, double click on the shape layer we just made to get to the layers styles panel and give it settings like below.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/208/img2.jpg" alt="sexy navigation bar with photoshop" width="250" height="196" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/208/img3.jpg" alt="sexy navigation bar with photoshop" width="249" height="246" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/208/img4.jpg" alt="sexy navigation bar with photoshop" width="268" height="187" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now type in some menu text like I did, I typed home, download and links, you can use as many as you want, just change the width of the nav bar to fit how many navigation links you need.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/208/img5.jpg" alt="sexy navigation bar with photoshop" width="450" height="84" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now we will make a small separator to separate the navigations. Now you might want to zoom in a bit.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;These next steps should be done for each space between navigation links so repeat it as many times needed.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;With the line tool draw a line straight through the navigation bar as I did below, (remember to do it in a separate layer) then give it a gradient going from light to dark as I did&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/208/img6.jpg" alt="sexy navigation bar with photoshop" width="450" height="218" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/208/img7.jpg" alt="sexy navigation bar with photoshop" width="350" height="132" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The last thing we will do is to make the small reflection effect, so just make a copy of the navigation bar shape layer, (the first one we made) name it reflection and in the layers panel, place it at the bottom.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Pad it down to the end of the navigation bar, then go to edit -&amp;gt; transform -&amp;gt; flip vertical and bring its opacity down to about 20 percent.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/208/img8.jpg" alt="sleek navigation bar" width="266" height="141" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;And we are done. If this sounds a bit confusing you can download the project file here, it might help you understand what I did.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Download the photoshop file:&lt;/p&gt;
&lt;p&gt;Size: 314kb&lt;br /&gt;
Format: Photoshop psd file.&lt;/p&gt;
&lt;p align="left"&gt;&lt;a href="http://www.blog.0tutor.com/archive/208/sleek_nav_bar.zip"&gt;&lt;img src="http://blog.0tutor.com/images/download_btn.jpg" alt="Download wallpaper here" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=gEoijD0MWzg:Eqo51uvvrNw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=gEoijD0MWzg:Eqo51uvvrNw:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=gEoijD0MWzg:Eqo51uvvrNw:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=gEoijD0MWzg:Eqo51uvvrNw:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=gEoijD0MWzg:Eqo51uvvrNw:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=gEoijD0MWzg:Eqo51uvvrNw:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/gEoijD0MWzg" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/gEoijD0MWzg/post.aspx</link><category>photoshop</category><pubDate>Mon, 28 Jul 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=208&amp;title=Pink-navbar-Photoshop-Tutorial</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=208&amp;title=Pink-navbar-Photoshop-Tutorial</feedburner:origLink></item><item><title>Crazy abstract circles wallpaper</title><description>&lt;p&gt;Take a look at this new cool wallpaper I made this morning, some crazy circles generated on top of each other, colorful green variants, I have used it for some hours now on my desktop, and I am quite happy with the wallpaper result, hope you will be tool&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.blog.0tutor.com/archive/207/abstract_circles.jpg"&gt;&lt;img src="http://www.blog.0tutor.com/archive/207/abstract_circles.jpg" alt="crazy circles green wallpaper" width="470" height="323" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Here is the wallpaper download info.&lt;/p&gt;
&lt;p&gt;Size: 2.25 mb&lt;br /&gt;
  Resolutions: 1280x1024 and 1440x900&lt;br /&gt;
Format: Photoshop psd file.&lt;/p&gt;
&lt;a class="download_btn" href="http://rapidshare.com/files/132310885/abstract_circles_wallpaper.zip.html"&gt;&lt;span class="alt"&gt;Download button&lt;/span&gt;&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=hvyLBpt2Buo:w6tvifH3NZA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=hvyLBpt2Buo:w6tvifH3NZA:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=hvyLBpt2Buo:w6tvifH3NZA:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=hvyLBpt2Buo:w6tvifH3NZA:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=hvyLBpt2Buo:w6tvifH3NZA:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=hvyLBpt2Buo:w6tvifH3NZA:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/hvyLBpt2Buo" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/hvyLBpt2Buo/post.aspx</link><category>other</category><pubDate>Fri, 25 Jul 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=207&amp;title=Crazy-abstract-circles-wallpaper</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=207&amp;title=Crazy-abstract-circles-wallpaper</feedburner:origLink></item><item><title>Cute pink text style</title><description>&lt;p&gt;In this Adobe Photoshop tutorial we will make a cool looking pink text effect.&lt;/p&gt;
&lt;p&gt;I actually came up with this effect by accident when playing around with photoshop (like I do with most stuff these days).&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.blog.0tutor.com/archive/206/pink-cute-text-style.jpg"&gt;&lt;img src="http://www.blog.0tutor.com/archive/206/pink-cute-text-style.jpg" alt="pink sleek text effect with photoshop" width="465" height="224" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;First, like always with text effect we need to type in the text we want to add this effect to.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/206/img1.jpg" alt="pink sleek text effect with photoshop" width="412" height="122" /&gt;&lt;/p&gt;
&lt;p&gt;Then go to the layers panel and double click the text layer to get to the layers styles panel and give it the following settings.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/206/img2.jpg" alt="pink sleek text effect with photoshop" width="237" height="327" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/206/img3.jpg" alt="pink sleek text effect with photoshop" width="241" height="356" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/206/img4.jpg" alt="pink sleek text effect with photoshop" width="257" height="190" /&gt;&lt;/p&gt;
&lt;p&gt;And we are done, its just that simple, but still a cool text effect.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=E4eKeE9sFWs:s3oP_Gx9_cc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=E4eKeE9sFWs:s3oP_Gx9_cc:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=E4eKeE9sFWs:s3oP_Gx9_cc:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=E4eKeE9sFWs:s3oP_Gx9_cc:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=E4eKeE9sFWs:s3oP_Gx9_cc:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=E4eKeE9sFWs:s3oP_Gx9_cc:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/E4eKeE9sFWs" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/E4eKeE9sFWs/post.aspx</link><category>photoshop</category><pubDate>Thu, 24 Jul 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=206&amp;title=Cute-pink-text-style</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=206&amp;title=Cute-pink-text-style</feedburner:origLink></item><item><title>Css hightech styled textboxes</title><description>&lt;p&gt;	Check out this new css/html textbox I designed for you, I made a it in 8 different gradients and best of it all, it free to download, also I made a small tutorial below on how I made one of them.&lt;/p&gt;
&lt;p&gt;&lt;a href="./archive/205/present.jpg"&gt;&lt;img src="./archive/205/present.jpg" alt="stylish css textboxes" width="350" height="350" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;a class="download_btn" href="http://rapidshare.com/files/131563439/css_textboxes.zip.html"&gt;&lt;span class="alt"&gt;Download button&lt;/span&gt;&lt;/a&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;strong&gt;And now for the tutorial, (you can download the whole thing at the bottom of this post).&lt;/strong&gt;
&lt;p&gt;First we will need to open photoshop, this textbox consist of two images, and of cause some css and html coding.&lt;/p&gt;
&lt;p&gt;So first we will make the metallic rounded box behind the textbox.&lt;/p&gt;
&lt;p&gt;With the rounded rectangle tool draw a rectangle like below.&lt;/p&gt;
&lt;p&gt;&lt;img src="./archive/205/1.jpg" alt="stylish css textboxes" width="350" height="100" /&gt;&lt;/p&gt;
&lt;p&gt;Now in the layers panel double click the new shape layer to get to the layers styles panel and give it settings as below.&lt;/p&gt;
&lt;p&gt;&lt;img src="./archive/205/2.jpg" alt="stylish css textboxes" width="239" height="239" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="./archive/205/3.jpg" alt="stylish css textboxes" width="251" height="189" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thats it, now we will make the colorful textbox.&lt;/p&gt;
&lt;p&gt;First we need to figure out the height of the textbox we will make, mine is 35 px, then make a rectangle on the stage at 35 px height, the width does not matter, we will only use part of it and repeat it.&lt;/p&gt;
&lt;p&gt;Now in the layers panel double click the new shape layer to get to the layers styles panel and give it settings as below.&lt;/p&gt;
&lt;p&gt;&lt;img src="./archive/205/4.jpg" alt="stylish css textboxes" width="257" height="183" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="./archive/205/5.jpg" alt="stylish css textboxes" width="257" height="191" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="./archive/205/6.jpg" alt="stylish css textboxes" width="271" height="188" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now the last setting image, where you have to pick a pattern, just do a search on google for photoshop patterns and import one, or make a simple on like I did.&lt;/p&gt;
&lt;p&gt;Save the two images, I called the metallic box &amp;quot;bg.jpg&amp;quot; and the colored box &amp;quot;lime.jpg&amp;quot;.&lt;/p&gt;
&lt;p&gt;Now we are ready to do some simple coding.&lt;/p&gt;
&lt;p&gt;Here is the code for the html fil.&lt;/p&gt;

&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="html"&gt;
	&lt;!-- remember the body, header and html tags -- my code displayer seem not to show them --&gt;
    &lt;link href="style.css" media="all" rel="stylesheet" type="text/css" /&gt;
    &lt;div class="box_wrapper"&gt;
    	&lt;input type="text" class="lime" name="textfield" id="textfield" /&gt;
    &lt;/div&gt;
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;And here is the code for the CSS file.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="css"&gt;
input { 
border: 1px solid #fff;
color: #525252;
font-weight: bold;
font-family: "Lucida Grande",Verdana,sans-serif;
font-size:24px;
height: 30px;
width: 300px;
padding-left: 5px; padding-top:4px;
margin-top: 20px; margin-left: 20px;
text-decoration: none; }

input.lime {
background: url(imgs/lime.jpg) #ffffff repeat-x left center; }

.box_wrapper {
width: 350px; height: 75px;
background: url(imgs/bg.jpg); }
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;And now we are done, I hope you like my new css based textboxes.&lt;/p&gt;
&lt;p&gt;Download my new stylish css designed textboxes here.&lt;/p&gt;
&lt;a class="download_btn" href="http://rapidshare.com/files/131563439/css_textboxes.zip.html"&gt;&lt;span class="alt"&gt;Download button&lt;/span&gt;&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=H5ygWSz9WZE:69zzxZg0GdQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=H5ygWSz9WZE:69zzxZg0GdQ:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=H5ygWSz9WZE:69zzxZg0GdQ:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=H5ygWSz9WZE:69zzxZg0GdQ:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=H5ygWSz9WZE:69zzxZg0GdQ:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=H5ygWSz9WZE:69zzxZg0GdQ:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/H5ygWSz9WZE" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/H5ygWSz9WZE/post.aspx</link><category>css</category><pubDate>Tue, 22 Jul 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=205&amp;title=Css-hightech-styled-textboxes</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=205&amp;title=Css-hightech-styled-textboxes</feedburner:origLink></item><item><title>Make a realistic smoke animation</title><description>&lt;p&gt;In this flash animation tutorial we will try to create some realistic smoke, and make it act like real smoke.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div&gt;
&lt;object width="167" height="421"&gt;
&lt;param name="realistic fire smoke with flash animation" value="http://www.blog.0tutor.com/archive/204/firesmoke.swf"&gt;
&lt;embed src="http://www.blog.0tutor.com/archive/204/firesmoke.swf" width="167" height="421"&gt;
&lt;/embed&gt;
&lt;/object&gt;
&lt;/div&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;First find some image with some fire, a match or a chimney or something that could produce smoke, then add that image as a background on the stage. you could lock the layer so you dont change anything later.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/204/img1.jpg" alt="flash smoke animation effect" width="125" height="179" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now we will create the smoke, so first, select a light gray color, then with the brush tool start drawing a funny cloudy shape like shown below.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/204/img2.jpg" alt="flash smoke animation effect" width="153" height="164" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Right click and choose convert to movie clip, then go to the filters panel and give it a blur filter like I did.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/204/img3.jpg" alt="flash smoke animation effect" width="416" height="144" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;You might also want to bring down its opacity (alpha) a bit to make it a bit see through.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now make yet another smoke movie clip just like we did before. Just because its good to have variation, and all smoke doesnt look the same.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now we are ready to do some animation to the smoke.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Put each smoke movie clip in each own layer in the layers panel, you can even name the layers smoke 1 and 2.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/204/img4.jpg" alt="flash smoke animation effect" width="193" height="121" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now place both smoke effects at its start position (the tip of the fire flame), then create a new keyframe in the timeline at frame 25, drag the smoke up at the top where its going to stop. This should be done for both smoke movie clips.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now select frame 25 and select the smoke movie clip, then set its alpha to 0. in the timeline for both smoke layers, right click between frame 1 and 25, choose motion tween.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/204/img5.jpg" alt="flash smoke animation effect" width="294" height="133" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;In the timeline for smoke 2 layer, select all frames from 1 to 25, drag them out to start at about frame 12, so now the smoke 2 should first begin when smoke 1 is halfway up.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;And we are done, you can make a couple of more smoke movie clips and animate them to make more variations like I did in the example at the top.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp; &lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=5KPmZAZbDnY:cg7w1STyeMA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=5KPmZAZbDnY:cg7w1STyeMA:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=5KPmZAZbDnY:cg7w1STyeMA:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=5KPmZAZbDnY:cg7w1STyeMA:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=5KPmZAZbDnY:cg7w1STyeMA:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=5KPmZAZbDnY:cg7w1STyeMA:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/5KPmZAZbDnY" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/5KPmZAZbDnY/post.aspx</link><category>flash</category><pubDate>Mon, 21 Jul 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=204&amp;title=Make-a-realistic-smoke-animation</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=204&amp;title=Make-a-realistic-smoke-animation</feedburner:origLink></item><item><title>Jumping in blue wallpaper</title><description>&lt;p&gt;Check out this new wallpaper I just made, acturlly this is my first wallpaper, so Im still trying to figure out which sizes I should release it in, for now I made one &amp;quot;normal&amp;quot; and one widescreen version, if you have any request of other resolutions just post a comment or something.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/203/Preview.jpg" alt="jump in blue - free wallpaper" width="450" height="232" /&gt;&lt;/p&gt;
&lt;p&gt;So here is my new wallpaper, I called it jumping in blue, It makes me think of dreaming, jumping in the sky and all that, hope you like my wallpaper.&lt;/p&gt;
&lt;p&gt;Size: &lt;em&gt;1.5 mb&lt;/em&gt;&lt;br /&gt;
  Resolutions: &lt;em&gt;1280x1024 and 1440x900&lt;/em&gt;&lt;br /&gt;
  Format: &lt;em&gt;Photoshop psd file.&lt;/em&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;a class="download_btn" href="http://rapidshare.com/files/130591271/Jump_in_blue.zip.html"&gt;&lt;span class="alt"&gt;Download button&lt;/span&gt;&lt;/a&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=Q2xCLwO_Mvc:TlwVStFxBT8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=Q2xCLwO_Mvc:TlwVStFxBT8:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=Q2xCLwO_Mvc:TlwVStFxBT8:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=Q2xCLwO_Mvc:TlwVStFxBT8:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=Q2xCLwO_Mvc:TlwVStFxBT8:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=Q2xCLwO_Mvc:TlwVStFxBT8:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/Q2xCLwO_Mvc" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/Q2xCLwO_Mvc/post.aspx</link><category>other</category><pubDate>Fri, 18 Jul 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=203&amp;title=Jumping-in-blue-wallpaper</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=203&amp;title=Jumping-in-blue-wallpaper</feedburner:origLink></item><item><title>Mp3 player with volume slider using Actionscript 3</title><description>&lt;p&gt;Hi guys, im back with a new flash actionscript 3.0 tutorial, this time we will be making a mp3 player with a volume slider, I must admit, I tried making one some month ago, it didnt work out that well, but I promis you, this works great so just follow along or download the source code at the bottom.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;div&gt;
&lt;object width="155" height="90"&gt;
&lt;param name="mp3 player with volume slider with flash actionscript" value="http://www.blog.0tutor.com/archive/202/player.swf"&gt;
&lt;embed src="http://www.blog.0tutor.com/archive/202/player.swf" width="155" height="90"&gt;
&lt;/embed&gt;
&lt;/object&gt;
&lt;/div&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Before we get all excited and start working with actionscript, first we need to do some preperations, make a few buttons and graphics to make our mp3 player look good. So try to follow along, you can make your own graphic buttons, so I wont guide you through how I made mine, only the structure.&lt;/p&gt;
&lt;p&gt;So on the visual part, lets make a play, pause and stop button, convert them all into movie clips and give them the following instance names by going to the properties panel. play_btn, pause_btn and stop_btn.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/202/img1.jpg" alt="mp3 player with actionscript" width="182" height="60" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/202/img2.jpg" alt="actionscript mp3 player" width="306" height="147" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now we need to make the volume slider, the volume slider consist of a stroke 100 px wide, (its important that its excacly 100 px). Convert it into a movie clip and name it volume_mc. Inside this volume slider movie clip make a handle graphic, convert it into a movie clip and name it mySlider_mc, and place it at the right end of the stroke like below.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/202/img3.jpg" alt="actionscript mp3 player" width="266" height="126" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now we are ready to do some actionscript, so go to the main stage and hit f9 or what ever you do to open up the actionscript panel.&lt;/p&gt;
&lt;p&gt;To make things easier for both you and me I commented the code inline with the actionscripting, so everything should be explained line by line, and you should be able to copy and past the code directly into your own project.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;h2&gt;And here is the source code:&lt;/h2&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
//attatch/import the music file.
var musicPiece:Sound = new Sound(new URLRequest _ 
("http://blog.0tutor.com/JeffWofford_Trouble.mp3"));

// Make a sound channel to change sound configurations.
var mySoundChannel:SoundChannel;

// This variable is checking if the music is playing
var isPlaying:Boolean = false;

// to remember the position of the music playing when we pause, _ 
to start at the same place


var pos:Number = 0;

// First button we will make is a play button, add an eventlistener.
play_btn.addEventListener(MouseEvent.CLICK, play_);

function play_(event:Event):void {
//Check if the music is NOT playing, then make it start.
if (!isPlaying) {
mySoundChannel = musicPiece.play(pos);
isPlaying = true;
}
}

// The pause button, here we will use the pos variable we made earlier.
pause_btn.addEventListener(MouseEvent.CLICK, pause_);

function pause_(event:Event):void {
// if the music is player, save the current time and stop the playing.
if (isPlaying) {
pos = mySoundChannel.position;
mySoundChannel.stop();
isPlaying = false;
}
}

// Now the final button is the stop button, allmost thet same as pause
stop_btn.addEventListener(MouseEvent.CLICK, stop_);

function stop_(event:Event):void {
// First we check if there is anything to stop then make it stop, and reset the pos variable to 0 (start time)
if (mySoundChannel != null) {
mySoundChannel.stop();
pos = 0;
isPlaying = false;
}
}

// this is a bit complicated, but I will try to explain anyway.
// first we make a rectangle and set its width to 100.
var rectangle:Rectangle = new Rectangle(0,0,100,0);

// then we need a varible to check if the handle is being dragged.
var dragging:Boolean = false;

// the eventlistener for startdragging
volume_mc.mySlider_mc.addEventListener(MouseEvent.MOUSE_DOWN, startDragging);
function startDragging(event:Event):void {

// here we tell flash the margin on where it should be able to drag, (remember 100 pixels back and forth)
volume_mc.mySlider_mc.startDrag(false,rectangle);
dragging = true;

// This is very important, an eventlistener so we can change the volume, not only make it look good.
volume_mc.mySlider_mc.addEventListener(Event.ENTER_FRAME, adjustVolume);
}

// well here is the adjust volume function, its not that complicated
function adjustVolume(event:Event):void {

// we make a variable to calculate the volume from the slider handle position and divide it by 100
var myVol:Number = volume_mc.mySlider_mc.x / 100;
// then we set it with the mySoundTransform
var mySoundTransform:SoundTransform = new SoundTransform(myVol);
if (mySoundChannel != null) {
mySoundChannel.soundTransform = mySoundTransform;
}
}

// and of cause the stop draggin function, I dont feel the need to explain it.
stage.addEventListener(MouseEvent.MOUSE_UP, stopDragging);
function stopDragging(event:Event):void {
if (dragging) {
dragging = false;
volume_mc.mySlider_mc.stopDrag();
}
}
&lt;/pre&gt;
&lt;/div&gt;

&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Yah I know that was a lot of code, and it might look a bit confusing, but I promis you, if you try to put it into your own flash file, maybe event delete the comments I made, you will see kind of a paddern, how and why stuff works and how you made a simple mp3 player with actionscript 3.0 :-)&lt;/p&gt;
&lt;p&gt;Best of luck to you all.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=JwXagrGkhl8:9VlzcpxNeZE:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=JwXagrGkhl8:9VlzcpxNeZE:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=JwXagrGkhl8:9VlzcpxNeZE:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=JwXagrGkhl8:9VlzcpxNeZE:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=JwXagrGkhl8:9VlzcpxNeZE:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=JwXagrGkhl8:9VlzcpxNeZE:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/JwXagrGkhl8" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/JwXagrGkhl8/post.aspx</link><category>flash</category><pubDate>Thu, 17 Jul 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=202&amp;title=Mp3-player-with-volume-slider-using-Actionscript-3</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=202&amp;title=Mp3-player-with-volume-slider-using-Actionscript-3</feedburner:origLink></item><item><title>Pink login form using CSS</title><description>&lt;p&gt;Check out this login html form I made a couple of days ago, I just played around with photoshop and got inspired to make this login from with html/css styles.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://rapidshare.com/files/129828140/login_form.zip"&gt;&lt;img src="http://www.blog.0tutor.com/archive/201/final.jpg" alt="html css login form page tutorial" width="440" height="339" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Download the login project here.&lt;/p&gt;
&lt;p&gt;&lt;a class="download_btn" href="http://rapidshare.com/files/129828140/login_form.zip"&gt;&lt;span class="alt"&gt;Download button&lt;/span&gt;&lt;/a&gt; &lt;/p&gt;
&lt;p&gt;And if you really want to go in dept and do it all your self, here is a small tutorial on how I made this html/css styled login page.&lt;/p&gt;
&lt;p&gt;First the retro white box is just one big image, you can download it below, just right click and save on your desktop.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/201/1.jpg" alt="css styled login page" width="400" height="240" /&gt;&lt;/p&gt;
&lt;p&gt;Now we just need to make two files an html page and a style sheet file, and put in the code from below.&lt;/p&gt;
&lt;p&gt;And remember to put the retro style box inside a folder called imgs.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The source code for the html file: (site.html)&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="html"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;head runat="server"&gt;
    &lt;title&gt;CSS styled Login form --&gt; by 0Tutor.com&lt;/title&gt;
    &lt;link href="style.css" media="all" rel="stylesheet" type="text/css" /&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;div class="wrap"&gt;
        &lt;div class="box_wrapper"&gt;
            &lt;div class="textbox_outer"&gt;
            &lt;h3&gt;Login Form&lt;/h3&gt;
            &lt;div class="labels"&gt;
                &lt;label for="name"&gt;Name:&lt;/label&gt;
            &lt;/div&gt;
            &lt;input class="textboxes" type="text" id="name" /&gt;
            &lt;div class="labels"&gt;
                &lt;label for="e-mail"&gt;Password:&lt;/label&gt;
            &lt;/div&gt;
            &lt;input class="textboxes" type="text" id="e-mail" /&gt;
            &lt;p class="submit"&gt;&lt;input class="btn" type="submit" value="Submit" /&gt;&lt;/p&gt;
            &lt;/div&gt;
        &lt;/div&gt;
    &lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;The source code for the style sheet file. (style.css)&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="css"&gt;
body {
background-color:#ff00c0;
font-size:120%;
}

div.wrap {
height:100%
width:100%
}

h3 {
color:#ff00c0; font-size:22px
}

.textbox_outer {
padding-top: 43px; padding-left:150px;
}

.box_wrapper {
background-image:url(imgs/bg.jpg); background-position:center; background-repeat:no-repeat;
width:600px; height:360px; margin:auto; margin-top: 70px;
}

input {
font-family: "Lucida Grande",Verdana,sans-serif;
font-size:18px;
border: 1px solid #999999;
}

input.textboxes {
width:270px;
background-color:#ff00c0;
}

input.btn {
color:#ff00c0;
border: 1px solid #999999;
}

div.labels {
width:100px;
color:#ff00c0;
}
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;Save your work and you are done..&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=5Bknqk15SIw:rAoT6tQxSyM:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=5Bknqk15SIw:rAoT6tQxSyM:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=5Bknqk15SIw:rAoT6tQxSyM:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=5Bknqk15SIw:rAoT6tQxSyM:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=5Bknqk15SIw:rAoT6tQxSyM:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=5Bknqk15SIw:rAoT6tQxSyM:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/5Bknqk15SIw" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/5Bknqk15SIw/post.aspx</link><category>css</category><pubDate>Tue, 15 Jul 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=201&amp;title=Pink-login-form-using-CSS</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=201&amp;title=Pink-login-form-using-CSS</feedburner:origLink></item><item><title>Growing cloud engine with actionscript 3</title><description>&lt;style type="text/css"&gt;
&lt;!--
.style1 {color: #0000FF}
--&gt;
&lt;/style&gt;
&lt;p&gt;Hi I have been playing a lot with different ways to produce smoke and clouds these days, both on frame by frame animations and like actionscript engines.&lt;/p&gt;
&lt;p&gt;So here I just made a simple growing cloud particle system with flash actionscript 3.0, and Im going to explain to you how you can make your own animated clouds with flash.&lt;/p&gt;
&lt;div&gt;
&lt;object width="300" height="300"&gt;
&lt;param name="growing cloud engine with flash actionscript" value="http://www.blog.0tutor.com/archive/200/cloud.swf"&gt;
&lt;embed src="http://www.blog.0tutor.com/archive/200/cloud.swf" width="300" height="300"&gt;
&lt;/embed&gt;
&lt;/object&gt;
&lt;/div&gt;

&lt;p&gt;First we need to make one movie clip containing a cloud graphic, to work with, its quite simple just use the brush tool and draw a shape like I did below.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/200/img1.jpg" alt="actionscript clouds engine" width="172" height="153" /&gt;&lt;/p&gt;
&lt;p&gt;Right click and convert it into a movie clip, then go to the filters panel and add a blur filter with these settings&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/200/img2.jpg" alt="actionscript clouds engine" width="410" height="152" /&gt;&lt;/p&gt;
&lt;p&gt;Now we need to give this cloud an instance name, I named mine cloud_mc.&lt;/p&gt;
&lt;p&gt;That we all the particle stuff, now we need only need the technical stuff, by that I mean the actionscript coding, so open up your actionscript panel and past this code into it.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The growing speed variable&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
var yspeed:Number = (Math.random() * 0.8);
&lt;/pre&gt;
&lt;/div&gt;




&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Here we set the clouds start properties such as position, rotation start and alpha.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
setCloudProperties();
function setCloudProperties():void {
    cloud_mc.alpha = 100;
    cloud_mc.x = 141;
    cloud_mc.y = 180;
    cloud_mc.rotation = Math.random() *360;
}
// An eventlistener to make the cloud grow. (remember to set this outside the function).
cloud_mc.addEventListener(Event.ENTER_FRAME, doCloud);
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;This is all it take to make the cloud engine work and generate some random shape and growth and rotations.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
function doCloud(event:Event):void {
    cloud_mc.alpha -= 0.3;
    if (cloud_mc.alpha&lt;50) {
    cloud_mc.alpha -= 0.4;
}

if (cloud_mc.alpha&lt;1) {
	setCloudProperties();
}
	cloud_mc.y = cloud_mc.y - yspeed;
}
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;Just think of the endless possibilities with such simple code to generate a random cloud growth.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=1iD6tvsWCEg:qNqGurW2MRM:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=1iD6tvsWCEg:qNqGurW2MRM:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=1iD6tvsWCEg:qNqGurW2MRM:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=1iD6tvsWCEg:qNqGurW2MRM:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=1iD6tvsWCEg:qNqGurW2MRM:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=1iD6tvsWCEg:qNqGurW2MRM:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/1iD6tvsWCEg" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/1iD6tvsWCEg/post.aspx</link><category>flash</category><pubDate>Mon, 14 Jul 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=200&amp;title=Growing-cloud-engine-with-actionscript-3</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=200&amp;title=Growing-cloud-engine-with-actionscript-3</feedburner:origLink></item><item><title>Creating spotlight effect with Photoshop</title><description>&lt;p&gt;In this fairly simple tutorial we will learn how to create spotlight effect with adobe photoshop, and how to apply them to objects and backgrounds.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.blog.0tutor.com/archive/199/img4.jpg"&gt;&lt;img src="http://www.blog.0tutor.com/archive/199/img4.jpg" alt="photoshop spotlight effect with photoshop" width="400" height="342" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Okay first we need some nice background for this effect to work, I just made a simple dark blue gradients, because I like blue.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now you can import an object if you want some spotlights hitting an object, I just found a logo I have made for a website redesign not so long ago.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/199/img1.jpg" alt="photoshop spotlight effect with photoshop" width="370" height="389" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Note: its quite important to use a dark background, as it makes the effect work better.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now to apply a spotlight effect, you have to have a layer to apply it onto, so we need to merge the object and background layer into one layer to apply this spotlight effect.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;So in the layers panel select the object layer and right click, now choose merge down, and you should only have one layer left. &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/199/img2.jpg" alt="photoshop spotlight effect with photoshop" width="263" height="281" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now finally we are ready to apply the spotlight effects, so go to filters -&amp;gt; render -&amp;gt; lights and effects, and give it settings as shown below.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/199/img3.jpg" alt="photoshop spotlight effect with photoshop" width="400" height="295" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;To make more then one spotlights in the lights panel, hold down the ALT key and drag the light source to the other corner.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now we can add some extra bling stars with a custom brush tool.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/199/img4.jpg"  alt="photoshop spotlight effect with photoshop" width="400" height="342" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=JZ0R2Mm6xL0:XRyo7M4oJ0w:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=JZ0R2Mm6xL0:XRyo7M4oJ0w:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=JZ0R2Mm6xL0:XRyo7M4oJ0w:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=JZ0R2Mm6xL0:XRyo7M4oJ0w:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=JZ0R2Mm6xL0:XRyo7M4oJ0w:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=JZ0R2Mm6xL0:XRyo7M4oJ0w:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/JZ0R2Mm6xL0" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/JZ0R2Mm6xL0/post.aspx</link><category>photoshop</category><pubDate>Fri, 11 Jul 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=199&amp;title=Creating-spotlight-effect-with-Photoshop</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=199&amp;title=Creating-spotlight-effect-with-Photoshop</feedburner:origLink></item><item><title>Enemy following me actionscript</title><description>&lt;style type="text/css"&gt;
&lt;!--
.style1 {color: #0000FF}
--&gt;
&lt;/style&gt;
&lt;p&gt;Okay I yesterday I was doing some actionscripting to make a game, (cant reveal it yet though because its not my own, I was just hired to make some parts of it). But I would like to share some of the code with you, like the source code I share today.&lt;/p&gt;
&lt;p&gt;This flash actionscript source code is to make an enemy follow your mouse, and some of the great things to notice is that it not only follows that mouse path, it also rotates so its front view is always facing the mouse, thats pretty cool.&lt;/p&gt;
&lt;div&gt;
&lt;object width="400" height="400"&gt;
&lt;param name="enemy following mouse with flash tutorial" value="http://www.blog.0tutor.com/archive/198/ememy.swf"&gt;
&lt;embed src="http://www.blog.0tutor.com/archive/198/ememy.swf" width="400" height="400"&gt;
&lt;/embed&gt;
&lt;/object&gt;
&lt;/div&gt;

&lt;p&gt;So first we need to do some small preparations like creating our enemy, Im going to let this up to you, do whatever you want. When you are done, right click and convert it to a movieclip and give it an instance name, I named mine &amp;quot;enemy_mc&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/198/img1.jpg" alt="flash actionscript enemy following me" width="338" height="146" /&gt;&lt;/p&gt;
&lt;p&gt;Now we are ready to do some actionscripting, but remember this is for actionscript 3.0, for it to work with previous versions you will need to do some changes and Im not doing it for you. :-)&lt;/p&gt;
&lt;p&gt;You can just copy and past the code into your flash actionscript panel, or you can try reading the comments.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The actionscript source code: &lt;/p&gt;
&lt;p&gt;First an eventlistener to call the function to make the enemy move, this is an enterframe event.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
enemy_mc.addEventListener(Event.ENTER_FRAME, do_stuff);
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The function we call&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
function do_stuff(event:Event):void {
    // here we do some calculations to make the ememy rotate based on the mouse angle, centered to the ememy.
    var myRadians:Number = Math.atan2(mouseY-enemy_mc.y, mouseX-enemy_mc.x);
    var myDegrees:Number = Math.round((myRadians*180/Math.PI));
    
    // this is the stuff making the enmy move towards the mouse.
    var yChange:Number = Math.round(mouseY-enemy_mc.y);
    var xChange:Number = Math.round(mouseX-enemy_mc.x);
    var yMove:Number = Math.round(yChange/20);
    var xMove:Number = Math.round(xChange/20);
    
    // Nothing will work without using all this previous calculations, so we set the x and y axis and the rotation.
    enemy_mc.y += yMove;
    enemy_mc.x += xMove;
    enemy_mc.rotation = myDegrees+90;
}
&lt;/pre&gt;
&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=xVUgXnQNagM:AozWEBfQ4IQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=xVUgXnQNagM:AozWEBfQ4IQ:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=xVUgXnQNagM:AozWEBfQ4IQ:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=xVUgXnQNagM:AozWEBfQ4IQ:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=xVUgXnQNagM:AozWEBfQ4IQ:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=xVUgXnQNagM:AozWEBfQ4IQ:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/xVUgXnQNagM" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/xVUgXnQNagM/post.aspx</link><category>flash</category><pubDate>Thu, 10 Jul 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=198&amp;title=Enemy-following-me-actionscript</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=198&amp;title=Enemy-following-me-actionscript</feedburner:origLink></item><item><title>Cameron Dias blurry glass mask effect</title><description>&lt;p&gt;In this flash tutorial we will make a great masking effect and apply it to an image of Cameron Dias, just have a look at the final result below.&lt;/p&gt;
&lt;p&gt;
  &lt;object width="368" height="400"&gt;
    &lt;param name="cameron dias blurry glass mask effect with flash tutorial" value="http://www.blog.0tutor.com/archive/197/cameron.swf" /&gt;
    &lt;embed src="http://www.blog.0tutor.com/archive/197/cameron.swf" width="368" height="400"&gt; &lt;/embed&gt;
  &lt;/object&gt;
&lt;/p&gt;

&lt;p&gt;So lets get started, first import an image of Cameron Dias to the stage, Now make a new layer on in the layers panel and copy the image of Cameron Dias so now we have to layers.&lt;/p&gt;
&lt;p&gt;With the top layer selected, select and convert the image of Cameron Dias to a movie clip, then go to the filters panel and give it a blur filter as shown below.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/197/img1.jpg" alt="Cameron Dias flash mouse mask effect" width="202" height="202" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/197/img2.jpg" alt="Cameron Dias flash mouse mask effect" width="410" height="151" /&gt;&lt;/p&gt;
&lt;p&gt;Now make one last layer above the two other layers we have made, in this layer draw a big black circle, convert it into a movie clip and give it an instance name, I named mine &amp;quot;mouse_mask&amp;quot;.&lt;/p&gt;
&lt;p&gt;Now we just need to type in a few actionscript lines, so just copy and past these lines into the actionscript panel on the main stage.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
Mouse.hide();
addEventListener(Event.ENTER_FRAME, enterFrameHandler);

// function to make the circle follow the mouse
function enterFrameHandler(event:Event):void {
    mouse_mask.x = mouseX;
    mouse_mask.y = mouseY;
}
&lt;/pre&gt;
&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=IzzC9EDhKMI:0DIUXSvjcLc:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=IzzC9EDhKMI:0DIUXSvjcLc:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=IzzC9EDhKMI:0DIUXSvjcLc:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=IzzC9EDhKMI:0DIUXSvjcLc:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=IzzC9EDhKMI:0DIUXSvjcLc:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=IzzC9EDhKMI:0DIUXSvjcLc:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/IzzC9EDhKMI" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/IzzC9EDhKMI/post.aspx</link><category>flash</category><pubDate>Tue, 8 Jul 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=197&amp;title=Cameron-Dias-blurry-glass-mask-effect</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=197&amp;title=Cameron-Dias-blurry-glass-mask-effect</feedburner:origLink></item><item><title>Flash components the ComboBox</title><description>&lt;style type="text/css"&gt;
&lt;!--
.style1 {color: #0000FF}
.style2 {color: #00CC33}
--&gt;
&lt;/style&gt;
&lt;p&gt;In this next tutorial series we will learn to make use of all the flash components such as simple buttons and combo boxes, checkboxes and data grid, so this is going to be a quite large tutorial, and I will break it up into sections, as we go through all the components.&lt;/p&gt;
&lt;p&gt;In this lesson we will learn to use buttons component to raise click events, and I will introduce the combo box, or the drooped as some calls it, and all is of cause done with flash actionscript 3.0. &lt;/p&gt;
&lt;p&gt;And here is what we will be making.&lt;/p&gt;
&lt;div&gt;
&lt;object width="300" height="200"&gt;
&lt;param name="bouncing soccer ball flash tutorial" value="http://www.blog.0tutor.com/archive/196/combobox.swf"&gt;
&lt;embed src="http://www.blog.0tutor.com/archive/196/combobox.swf" width="300" height="200"&gt;
&lt;/embed&gt;
&lt;/object&gt;
&lt;/div&gt;

&lt;p&gt;First we will make the combo box switch the box color from blue to green when we select a combo box item. Meaning that we will raise an event on the combo box event change.&lt;/p&gt;
&lt;p&gt;Next we will learn to add a new item to the combo box, so you can write something into the textbox and with the button you can raise an event to add an item to the combo box.&lt;/p&gt;
&lt;p&gt;Before we to down and dirty with the actionscript coding, we need to do some preparations, like setting up some movieclip graphics, buttons etc.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;So as you can see by the final result at the top, locate the component panel in flash, (you can find it by going to the top menu -&amp;gt; view -&amp;gt; components) and drag out a button, a textbox and a combobox.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/196/img1.jpg" alt="actionscript 3.0 how to use combobox component" width="212" height="194" /&gt;&lt;/p&gt;
&lt;p&gt;Select each component and go to the properties panel and give them instance names, I named the button &amp;quot;my_btn&amp;quot;, the textbox &amp;quot;my_input&amp;quot; and the combobox &amp;quot;my_ComboBox&amp;quot;.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/196/img2.jpg" alt="actionscript 3.0 how to use combobox component" width="302" height="148" /&gt;&lt;/p&gt;
&lt;p&gt;Now we will add two items to the combo box, two data elements containing a label name, blue and green.&lt;/p&gt;
&lt;p&gt;So select the combo box and locate the parameters panel (by default its docked next to the properties panel).&lt;/p&gt;
&lt;p&gt;Click on the dataprovider and add in the information as I did in the image below.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/196/img3.jpg" alt="actionscript 3.0 how to use combobox component" width="246" height="298" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The last thing we need is the colored box, with the rectangle tool draw a square on the stage with the blue color.&lt;/p&gt;
&lt;p&gt;Select it and convert the graphic into a movieclip, give the movieclip an instance name, I named mine &amp;quot;box_mc&amp;quot;.&lt;/p&gt;
&lt;p&gt;In that movie clip create a new keyframe at frame 2 and change the box color to green.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/196/img4.jpg" alt="actionscript 3.0 how to use combobox component" width="367" height="234" /&gt;&lt;/p&gt;
&lt;p&gt;Stay inside the colored box movieclip, now we are ready to do our first actionscripting, even though its just one short line.&lt;/p&gt;
&lt;p&gt;Select frame one (the one with a blue box).&lt;/p&gt;
&lt;p&gt;In the actionscript panel write:&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
stop(); 
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;Now go back to the main stage and select the first (and only) frame on the stage, then bring up the actionscript panel, now we will do some coding, I have broken the code up into small pieces for better understanding, and wrote some comments inside the code so you can follow along.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
//This line is just to style the textbox so it has a border.
my_input.border = true;
//Here we add an eventlistener to the combobox, to call a function if the combo box item changes.
my_ComboBox.addEventListener(Event.CHANGE, changeColor);
function changeColor(event:Event):void {
    //just a couple of traces to show you a couple of information on the current combo box items.
    trace(my_ComboBox.selectedIndex);
    trace(my_ComboBox.selectedItem.label);
    //an if statement telling flash if the combo box label blue is selected then the box movieclip should change the frame to 1.
    if (my_ComboBox.selectedItem.label == "Blue") {
        trace("is blue");
        box_mc.gotoAndStop(1)
        //an if statement telling flash if the combobox label green is selected then the box movieclip should change the frame to 2
    } else if (my_ComboBox.selectedItem.label == "Green") {
        trace("is green");
        box_mc.gotoAndStop(2)
    }
}
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;Now that we how we worked with the combo box, how to call a function when we select another item from the dropdown list, and used it to make some changes on the stage.&lt;/p&gt;
&lt;p&gt;Now just for fun I added a small function where you can add your own items to the combo box.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
// first and eventlistener to listen to when someone click the button, then it calls a function.
my_btn.addEventListener(MouseEvent.CLICK, addToCombo);

// this is the function, the function basically adds an item to the combo box, containing the my_input text from the textbox.
function addToCombo(event:Event):void {
my_ComboBox.addItem({label:my_input.text});
}
&lt;/pre&gt;
&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=cgXDVqXXWt8:SZF8oNDZrQA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=cgXDVqXXWt8:SZF8oNDZrQA:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=cgXDVqXXWt8:SZF8oNDZrQA:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=cgXDVqXXWt8:SZF8oNDZrQA:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=cgXDVqXXWt8:SZF8oNDZrQA:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=cgXDVqXXWt8:SZF8oNDZrQA:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/cgXDVqXXWt8" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/cgXDVqXXWt8/post.aspx</link><category>flash</category><pubDate>Mon, 7 Jul 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=196&amp;title=Flash-components-the-ComboBox</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=196&amp;title=Flash-components-the-ComboBox</feedburner:origLink></item><item><title>Bouncing soccer ball with actionscript</title><description>&lt;p&gt;Hi all, well im not really sure what you can use this effect to, I just played around with flash for a while, and found a very easy way to make it look like a ball is bouncing back in space as a ball would on a floor.&lt;/p&gt;
&lt;p&gt;So using actionscript we will do some simple transition tweens to make this effect, remember its made with actionscript 3.0, and will not work with previous versions of flash.&lt;/p&gt;
&lt;p&gt;Hover the mouse cursor over the soccer ball to see the bouncing effect.&lt;/p&gt;
&lt;div&gt;
&lt;object width="400" height="400"&gt;
&lt;param name="bouncing soccer ball flash tutorial" value="http://www.blog.0tutor.com/archive/195/bounceball.swf"&gt;
&lt;embed src="http://www.blog.0tutor.com/archive/195/bounceball.swf" width="400" height="400"&gt;
&lt;/embed&gt;
&lt;/object&gt;
&lt;/div&gt;

&lt;p&gt;So before we do any coding we just need to do some simple preparations.&lt;/p&gt;
&lt;p&gt;So we need to make a ball, I did it quite easy, just found an image of a ball. Now you need to convert it into a movieclip and give it an instance name, I named mine ball_mc.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/195/img1.jpg" alt="actionscript 3.0 ball bouncing in 3d space" width="305" height="146" /&gt;&lt;/p&gt;
&lt;p&gt;Now we are ready to do some actionscripting, I will try to explain line by line what Im doing with the actionscript code, some might seem a bit confusing, but its actually quite simple, and contains few lines of code.&lt;/p&gt;

&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
// We will need to import some transition class to handle the tween effects.
import fl.transitions.*;
import fl.transitions.easing.*;

// Now we add some event listeners, to listen if the mouse is hovering the ball, if it is, then we call the function doMouseOver
ball_mc.addEventListener(MouseEvent.MOUSE_OVER, doMouseOver);
ball_mc.addEventListener(MouseEvent.MOUSE_OUT, doMouseOut);

// This is the actual function to scale out the ball and make it look like it getting closer to you.
function doMouseOver(event:MouseEvent):void {
    // we define a tween to scale on the x and y axis, make it bounce.easeOut, which actually makes it act like a ball.
    // also the number 1 is the size its scaled to, and 2 is the number of seconds the tween will happen in.
    var xT:Tween = new Tween(ball_mc, "scaleX", Bounce.easeOut, ball_mc.scaleX, 1, 2, true);
    var yT:Tween = new Tween(ball_mc, "scaleY", Bounce.easeOut, ball_mc.scaleY, 1, 2, true);
}

// this function do exactly the same as the one above, just scales it down, to make it look like its going away from you.
// and this event accrues when the mouse is no over the ball.
function doMouseOut(event:MouseEvent):void {
    var xT:Tween = new Tween(ball_mc, "scaleX", Bounce.easeOut, ball_mc.scaleX, .5, 2, true);
    var yT:Tween = new Tween(ball_mc, "scaleY", Bounce.easeOut, ball_mc.scaleY, .5, 2, true);
}
&lt;/pre&gt;
&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=WxdxP05fUfs:9iBK3DLQ0go:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=WxdxP05fUfs:9iBK3DLQ0go:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=WxdxP05fUfs:9iBK3DLQ0go:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=WxdxP05fUfs:9iBK3DLQ0go:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=WxdxP05fUfs:9iBK3DLQ0go:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=WxdxP05fUfs:9iBK3DLQ0go:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/WxdxP05fUfs" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/WxdxP05fUfs/post.aspx</link><category>flash</category><pubDate>Fri, 4 Jul 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=195&amp;title=Bouncing-soccer-ball-with-actionscript</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=195&amp;title=Bouncing-soccer-ball-with-actionscript</feedburner:origLink></item><item><title>Drawing crazy lines with actionscript</title><description>&lt;p&gt;In this flash actionscript tutorial we will play a bit more with the drawing api, this time we will apply some randomness to the drawing, so we will draw a line then will continue drawing by it self, using some random calculations.&lt;/p&gt;
&lt;p&gt;You can see here what I came up with, and yes this is not really a graph for anything, its not my heart rhythm or anything, I just used the random math class and made up my own small math formula.&lt;/p&gt;
&lt;div&gt;
&lt;object width="300" height="300"&gt;
&lt;param name="drawing random lines flash tutorial" value="http://www.blog.0tutor.com/archive/194/randomlines.swf"&gt;
&lt;embed src="http://www.blog.0tutor.com/archive/194/randomlines.swf" width="300" height="300"&gt;
&lt;/embed&gt;
&lt;/object&gt;
&lt;/div&gt;

&lt;p&gt;Now this is only a coding tutorial, so you will have no need to do anything with drawing, and making movie clips or anything, just jump right into the actionscript panel and start programming.&lt;/p&gt;
&lt;p&gt;To make it easier to understand I have tried line by line to explain the code, you can see the code description inside the code, or you can just copy and paste the code into your own flash project and play around with it.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;First we set a few variables, first two defines the start position of the line.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
var oldX:Number = 30;
var oldY:Number = 150;
var randomX:Number;
var randomY:Number;
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now we define the line style we will draw with. 2 px thick and black color.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
this.graphics.lineStyle(3,0x00BB00);
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;The start position&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
this.graphics.moveTo(oldX,oldY);
// now we add an eventlistener to draw the line, its an enterframe event, so it keeps repeating 12 frames per sec.
this.addEventListener(Event.ENTER_FRAME, drawRandom);
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;And here is the actural function.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
function drawRandom(event:Event):void {
    // this is the small calculations to tell flash what the line should draw, you can change it a round do more simple or more complicated calculations.
    randomX = oldX + Math.random() * 3;
    randomY = 50 + Math.tan(oldY + Math.random() * 3);
    
    // and here we set it to draw the line, (finally).
    this.graphics.lineTo(randomX,randomY);
    oldX = randomX;
    oldY = randomY;
}
&lt;/pre&gt;
&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=WEfYk75NYg4:AF8in3HW7eM:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=WEfYk75NYg4:AF8in3HW7eM:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=WEfYk75NYg4:AF8in3HW7eM:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=WEfYk75NYg4:AF8in3HW7eM:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=WEfYk75NYg4:AF8in3HW7eM:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=WEfYk75NYg4:AF8in3HW7eM:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/WEfYk75NYg4" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/WEfYk75NYg4/post.aspx</link><category>flash</category><pubDate>Thu, 3 Jul 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=194&amp;title=Drawing-crazy-lines-with-actionscript</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=194&amp;title=Drawing-crazy-lines-with-actionscript</feedburner:origLink></item><item><title>Draw a smiley face shape with actionscript 3.0</title><description>&lt;style type="text/css"&gt;
&lt;!--
.style1 {color: #0000FF}
--&gt;
&lt;/style&gt;
&lt;p&gt;In this actionscript 3.0 tutorial we will be playing with the drawing api, so you can learn to draw by coding strokes and fills to make a simple but cute smiley graphic, just have a look at the final result below.&lt;/p&gt;
&lt;div&gt;
&lt;object width="380" height="380"&gt;
&lt;param name="cellphone vibrator flash tutorial" value="http://www.blog.0tutor.com/archive/193/smiley.swf"&gt;
&lt;embed src="http://www.blog.0tutor.com/archive/193/smiley.swf" width="380" height="380"&gt;
&lt;/embed&gt;
&lt;/object&gt;
&lt;/div&gt;

&lt;p&gt;In this tutorial we dont need to do anything on the stage, so just jump right into the actionscript panel.&lt;/p&gt;
&lt;p&gt;Now you need to remember in which order we type in the code to draw lines and fills, so we dont need to change the depth of the graphics, just to make things easier.&lt;/p&gt;
&lt;p&gt;So here comes the actionscript source code.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;First we refer to this, as in the stage, so we will draw graphics on the stage and set the line style&lt;br /&gt;
a black with a 2 px thick line.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
this.graphics.lineStyle(2,0x000000);
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Draw circle, this is the outer of the head shape, and we give it a yellow fill, because it is a smiley.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
this.graphics.beginFill(0xf0ff00);
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;We specify a x and y position for the circle and a radius to tell how big it should be.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
this.graphics.drawCircle(200,180,140);
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now we tell flash to stop drawing and find a starting point to draw a line.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
this.graphics.moveTo(100,200);
this.graphics.lineTo(150,250);
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Create a curve and then another line for the mouth part of the smiley.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
this.graphics.curveTo(200,300,250,250);
this.graphics.lineTo(300,200);
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Draw two filled (black) circles for the eyes to finish up our smiley face.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
this.graphics.beginFill(0x000000);
this.graphics.drawCircle(250,100,20);
this.graphics.drawCircle(150,100,20);
this.graphics.endFill();
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I hope this was easy to understand, I broke it up into small pieces to make it more simple for you.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=aD4l58ueXX4:aW-SgwkAsLU:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=aD4l58ueXX4:aW-SgwkAsLU:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=aD4l58ueXX4:aW-SgwkAsLU:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=aD4l58ueXX4:aW-SgwkAsLU:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=aD4l58ueXX4:aW-SgwkAsLU:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=aD4l58ueXX4:aW-SgwkAsLU:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/aD4l58ueXX4" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/aD4l58ueXX4/post.aspx</link><category>flash</category><pubDate>Tue, 1 Jul 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=193&amp;title=Draw-a-smiley-face-shape-with-actionscript-3.0</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=193&amp;title=Draw-a-smiley-face-shape-with-actionscript-3.0</feedburner:origLink></item><item><title>Cellphone vibrator with actionscript 3</title><description>&lt;style type="text/css"&gt;
&lt;!--
.style1 {color: #0000FF}
.style2 {font-style: italic}
--&gt;
&lt;/style&gt;
&lt;p&gt;In this flash actionscript and animation tutorial we will make a cellphone vibrate using actionscript and some simple calculations and random values.&lt;/p&gt;
&lt;p&gt;And this is how the vibrating phone will look.&lt;/p&gt;
&lt;div&gt;
&lt;object width="300" height="300"&gt;
&lt;param name="cellphone vibrator flash tutorial" value="http://www.blog.0tutor.com/archive/192/cellphone_vibrator.swf"&gt;
&lt;embed src="http://www.blog.0tutor.com/archive/192/cellphone_vibrator.swf" width="300" height="300"&gt;
&lt;/embed&gt;
&lt;/object&gt;
&lt;/div&gt;

&lt;p&gt;First we need to import an image of a cellphone, it can just be a jpg or any other supported image files, you can use photoshop or your favorite image manipulations software to cut away background as I did.&lt;/p&gt;
&lt;p&gt;Now when you have imported the phone image to the stage, right click it, and convert it to a movie clip.&lt;/p&gt;
&lt;p&gt;In the properties panel give it an instance name, I named mine &amp;quot;phone_mc&amp;quot;.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/192/img1.jpg" alt="cellphone vibrate animation with flash actionscript" width="293" height="143" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now we are ready to do the simple actionscript code for this animation effect, I have made some inline code descriptions for you to better understand the code.&lt;/p&gt;
&lt;p&gt;You can just copy and paste the code into your own flash project and it should work.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
// first we define the current positions of the phone, both x and y axis.
var posx:Number = phone_mc.x;
var posy:Number = phone_mc.y;

// here we make an eventlistenser to call the shake function with an enter frame event.
phone_mc.addEventListener(Event.ENTER_FRAME, shakeIt);

// here is the shake function
function shakeIt(event:Event):void {
// quite simple just changes the current phone position and takes a random number (7/8) to add to it.
phone_mc.x = posx+(Math.floor(Math.random()*7));
phone_mc.y = posy+(Math.floor(Math.random()*8));
// also a random rotation to make it more interesting.
phone_mc.rotation = Math.random()*10;
}
&lt;/pre&gt;
&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=zdtBSYSifrE:H-xBNscUqF8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=zdtBSYSifrE:H-xBNscUqF8:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=zdtBSYSifrE:H-xBNscUqF8:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=zdtBSYSifrE:H-xBNscUqF8:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=zdtBSYSifrE:H-xBNscUqF8:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=zdtBSYSifrE:H-xBNscUqF8:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/zdtBSYSifrE" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/zdtBSYSifrE/post.aspx</link><category>flash</category><pubDate>Mon, 30 Jun 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=192&amp;title=Cellphone-vibrator-with-actionscript-3</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=192&amp;title=Cellphone-vibrator-with-actionscript-3</feedburner:origLink></item><item><title>Particle snow weather with actionscript</title><description>&lt;style type="text/css"&gt;
&lt;!--
.style1 {color: #0000FF}
--&gt;
&lt;/style&gt;
&lt;p&gt;I did it again, yet another simple particle system, this time I will show you how simple it is to make snow fall from the sky and look nice.&lt;/p&gt;
&lt;div&gt;
&lt;object width="400" height="400"&gt;
&lt;param name="falling snow partical system flash tutorial" value="http://www.blog.0tutor.com/archive/191/particlesnow.swf"&gt;
&lt;embed src="http://www.blog.0tutor.com/archive/191/particlesnow.swf" width="400" height="400"&gt;
&lt;/embed&gt;
&lt;/object&gt;
&lt;/div&gt;

&lt;p&gt;First we need to create the snow ball movie clip, so create a new movie clip, and within it, draw a small white circle, right click and convert it into a movie clip.&lt;/p&gt;
&lt;p&gt;Now go to the filters panel and add these two filters as shown below.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/191/img1.jpg" alt="falling snow particle system with actionscript" width="321" height="242" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/191/img2.jpg" alt="falling snow particle system with actionscript" width="330" height="240" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now go back to the main frame, you can add a background of a city or something to make this effect look even more nice.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/191/img3.jpg" alt="falling snow particle system with actionscript" width="300" height="209" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Now this part may seem a bit odd if you havent worked much with actionscript and movieclips before, so just follow along.&lt;/p&gt;
&lt;p&gt;In the library locate the snow ball movie clip we just made, right click and choose linkage, then type in Show and check the export to actionscript checkbox like I did below.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/191/img4.jpg" alt="falling snow particle system with actionscript" width="304" height="228" /&gt;&lt;/p&gt;
&lt;p&gt;Hit ok, and flash might give you something that looks like an error, but its not, it just tells you that it will create a class for the movie clip, and thats okay.&lt;/p&gt;
&lt;p&gt;Now we are ready to do some actionscript coding to make this falling snow particle effect work. &lt;/p&gt;
&lt;p&gt;I tried to explain the code as detailed as possible, without making it look to overfilled.&lt;/p&gt;
&lt;p&gt;You can see the code description inside the code, or you can just copy  and paste the code into your own flash project and play around with it.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Just some variables we define for later use.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
var snow_mcsArray:Array = new Array();
var speedX:Number;
var speedY:Number;
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Loops through and makes 20 snow balls that we position and add properties randomly to.&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
for (var i=0; i &lt; 20; i++) {
    var snow_mc:Snow = new Snow();
    
    //Give random x and y speed to the snow_mc.
    snow_mc.speedX = Math.random();
    snow_mc.speedY = 4 + Math.random();
    snow_mc.alpha = 0.3 + Math.random() * 0.8;
    
    // just making the snow balls smaller, I thought I made them too big.
    snow_mc.scaleX = .4;
    snow_mc.scaleY = .4;
    //Set the starting position
    snow_mc.y = Math.random() * stage.stageHeight;
    snow_mc.x = Math.random() * stage.stageWidth;
    
    //Add the snow_mc to the stage and add it the the array
    addChild(snow_mc);
    snow_mcsArray.push(snow_mc);
}
&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Add an eventlistener to the enterframe event, to make the snow fall repeatly&lt;/p&gt;
&lt;div class="code_wrap"&gt;
&lt;pre name="code" class="as"&gt;
stage.addEventListener(Event.ENTER_FRAME, makeSnow);

function makeSnow(event:Event):void {
    //Loop through the snow_mcs
    for (var i = 0; i &lt; snow_mcsArray.length; i++) {
        var snow_mc = snow_mcsArray[i];
        snow_mc.x += snow_mc.speedX;
        snow_mc.y += snow_mc.speedY;
        // makes the snow start over from the top, when it hits the bottom.
        if (snow_mc.y &gt; stage.stageHeight) {
        	snow_mc.y = 0;
        }
    }
}
&lt;/pre&gt;
&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=dF29gTkhX3w:z2xDTnzktZ8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=dF29gTkhX3w:z2xDTnzktZ8:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=dF29gTkhX3w:z2xDTnzktZ8:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=dF29gTkhX3w:z2xDTnzktZ8:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=dF29gTkhX3w:z2xDTnzktZ8:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=dF29gTkhX3w:z2xDTnzktZ8:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/dF29gTkhX3w" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/dF29gTkhX3w/post.aspx</link><category>flash</category><pubDate>Fri, 27 Jun 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=191&amp;title=Particle-snow-weather-with-actionscript</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=191&amp;title=Particle-snow-weather-with-actionscript</feedburner:origLink></item><item><title>Make a blood stain wallpaper</title><description>&lt;p&gt;Okay this tutorial is going to be much about freehand, you might not be able to do exactly what I do, maybe you cant find the exact same brushes as I do, maybe you just want to do it a bit different, but I will try to guide you through how to make a great look blood stain wallpaper with adobe photoshop.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.blog.0tutor.com/archive/190/bloodstain_final.jpg"&gt;&lt;img src="http://www.blog.0tutor.com/archive/190/bloodstain_final.jpg" alt="blood stain wallpaper photoshop tutorial" width="400" height="300" border="0" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;First we will need to make a gradient to lay as a background on the stage, I just made a simple light blue metallic looking gradient and dragged it across the stage.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/190/bloodstain_1.jpg" alt="blood stain wallpaper photoshop tutorial" width="300" height="226" /&gt;&lt;/p&gt;
&lt;p&gt;Now go to &lt;a href="http://brushes.deviantart.com/" target="_blank"&gt;brushes.deviantart.com&lt;/a&gt; and find some cool looking blood stain photoshop brushes, (could also be called splatter brushes). When you have collected a small bunch of them, just open them in photoshop to add them to the brush panel.&lt;/p&gt;
&lt;p&gt;Now we are ready to draw, select a dark red color and with the different blood stain brushes draw some stains.&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/190/bloodstain_2.jpg" alt="blood stain wallpaper photoshop tutorial" width="300" height="167" /&gt;&lt;/p&gt;
&lt;p&gt;not too main with the same brush size and color, change the color to a different red and then change brush size and brush style, its all about variation.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/190/bloodstain_3.jpg" alt="blood stain wallpaper photoshop tutorial" width="300" height="150" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/190/bloodstain_4.jpg" alt="blood stain wallpaper photoshop tutorial" width="300" height="198" /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="http://www.blog.0tutor.com/archive/190/bloodstain_5.jpg" alt="blood stain wallpaper photoshop tutorial" width="300" height="180" /&gt;&lt;/p&gt;
&lt;p&gt;And we are done, remember the keywords, variation, variation, and variation, and maybe even some simplicity, dont overdue it so it looks to filled.&lt;/p&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=2LMm2LY3Q4k:b3dtH6H1iJg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=2LMm2LY3Q4k:b3dtH6H1iJg:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=2LMm2LY3Q4k:b3dtH6H1iJg:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=2LMm2LY3Q4k:b3dtH6H1iJg:F7zBnMyn0Lo"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?i=2LMm2LY3Q4k:b3dtH6H1iJg:F7zBnMyn0Lo" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?a=2LMm2LY3Q4k:b3dtH6H1iJg:dnMXMwOfBR0"&gt;&lt;img src="http://feeds.feedburner.com/~ff/0tutor-tutorials-blog?d=dnMXMwOfBR0" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;&lt;img src="http://feeds.feedburner.com/~r/0tutor-tutorials-blog/~4/2LMm2LY3Q4k" height="1" width="1"/&gt;</description><link>http://feedproxy.google.com/~r/0tutor-tutorials-blog/~3/2LMm2LY3Q4k/post.aspx</link><category>photoshop</category><pubDate>Thu, 26 Jun 2008 08:23:00 EST</pubDate><guid isPermaLink="false">http://www.blog.0tutor.com/post.aspx?id=190&amp;title=Make-a-blood-stain-wallpaper</guid><feedburner:origLink>http://www.blog.0tutor.com/post.aspx?id=190&amp;title=Make-a-blood-stain-wallpaper</feedburner:origLink></item></channel></rss>
