rss feed blog search engine
 
Search rss blog search engine
 
ilike2Flash  
Released:  11/10/2008 7:30:53 PM
RSS Link:  http://feeds.feedburner.com/blogspot/YLDd
Last View 3/17/2010 8:05:20 AM
Last Refresh 3/17/2010 8:05:20 AM
Page Views 423
Comments:  Read user comments (0)
Share



Description:



Flash tutorials


Contents:

Combo Box component in AS3 part 2


This is part 2 of the Combo Box component tutorial where you will learn how to use XML to load text and images by selecting the different labels in the Combo box. For this tutorial you will need four...

Copyright © 2010 ilike2flash. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. No unauthorized copying allowed.


Unsmiley face in Actionscript 3


I found an interesting tutorial here that draws a smiley face using the Actionscript 3 drawing API. The face shape is created using only Actionscript code to draw the eyes, mouth and face using the...

Copyright © 2010 ilike2flash. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. No unauthorized copying allowed.


Rain effect in Actionscript 3


I previously created a rain effect in Actionscript 2 where rain drops fell vertically from the top of the stage area. In this tutorial I will provide code for the Actionscript 3 version. The steps in...

Copyright © 2010 ilike2flash. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. No unauthorized copying allowed.


Limit drag and drop in AS3


I previously created a drag and drop tutorial in Actionscript 3 where you could freely drag the object around the stage area. However, this means the object can also get dragged beyond the stage...

Copyright © 2010 ilike2flash. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. No unauthorized copying allowed.


Custom cursor in AS3 part 2


I previously created the custom cursor in AS3 tutorial where the cursor object was initially placed on the stage. In this tutorial I will be dynamically adding the cursor object onto the stage from...

Copyright © 2010 ilike2flash. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. No unauthorized copying allowed.


Banner resizer effect in Actionscript 3


In this Flash tutorial you will learn how to create a banner resizer effect in Actionscript 3. This effect will increase the size of the image when your mouse is over the image and restore to the...

Copyright © 2010 ilike2flash. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. No unauthorized copying allowed.


Banner selector in Actionscript 3 part 3


This is part 3 of the Banner selector in Actionscript 3 tutorial where I will add a fade transition effect between the images using code. The fade effect is created using the tweelite plugin which...

Copyright © 2010 ilike2flash. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. No unauthorized copying allowed.


Detect key press in Actionscript 3


I have previously created a tutorial called Keyboard controls in AS3 where you learn how to move an object around the stage using the keyboard arrow keys. In this tutorial you will learn how to...

Copyright © 2010 ilike2flash. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. No unauthorized copying allowed.


Banner selector in Actionscript 3 part 2


This is part 2 of the banner selector in Actionscript 3 tutorial where the images will transition to the next image. Make sure you have completed the previous tutorial before attempting this one as...

Copyright © 2010 ilike2flash. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. No unauthorized copying allowed.


Flash CS4 – Timeline icon size


This is a quick Flash CS4 tip where you will learn how to increase the size of the timeline icons. By default the size of the icons are set to normal which looks like below. The size of the icons...

Copyright © 2010 ilike2flash. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. No unauthorized copying allowed.


Banner selector in Actionscript 3


In this tutorial you will learn how to create a simple banner selector in Actionscript 3.0. A banner selector is commonly seen on many websites used as advertising. You can select the different...

Copyright © 2010 ilike2flash. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. No unauthorized copying allowed.


Magic 8 ball tutorial in AS3 part 2


This is part 2 of the Magic 8 ball tutorial where I will be using XML to display the responses of the magic 8 ball. XML is a mark up language used to structure external content. This tutorial assumes...

Copyright © 2010 ilike2flash. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. No unauthorized copying allowed.


Hiding movie clips in AS3


In Actionscript 3 there are two ways of hiding movie clips using inherited properties from the movie clip class. The two properties are visible and alpha. If you were using Actionscript 2 you would...

Copyright © 2010 ilike2flash. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. No unauthorized copying allowed.


Screen wrapping in AS3


I previously created a post called limit stage boundaries in AS3 where the object was limited to the edges of the stage boundaries. In this tutorial I will provide code for screen wrapping which is...

Copyright © 2010 ilike2flash. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. No unauthorized copying allowed.


First person tetris


I found an interesting twist on the classic Tetris game at: firstpersontetris.com. In firstpersontetris the game mechanics of Tetris are exactly the same as all forms of the game. However, the main...

Copyright © 2010 ilike2flash. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. No unauthorized copying allowed.


Colour line Graphics in AS3


I found an old post over at theflashblog.com which demonstrates the capabilities of the Actionscript 3 graphic API. The example shows a single line that displays random colours when the mouse moves...

Copyright © 2010 ilike2flash. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. No unauthorized copying allowed.


Change movie clip colour randomly in AS3 – part 2


This is part 2 of the Change movie clip colour randomly in AS3 where the movie clip will change colour without a button. I will be using the Timer class to change the colour every two seconds. Make...

Copyright © 2010 ilike2flash. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. No unauthorized copying allowed.


Change movie clip colour randomly in AS3


I previously wrote a post called change movie clip colour in Actionscript 3 where the movie clip changed colour by using the colourPicker component. In this tutorial the colour of the movie clip will...

Copyright © 2010 ilike2flash. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. No unauthorized copying allowed.


Tweenlite and TweenMax V11 released


Versions 11 of the Tweenlite and TweenMax tweening platforms from blog.greensock.com have been recently released. This update is the most significant and biggest upgrade with new capabilities and...

Copyright © 2010 ilike2flash. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. No unauthorized copying allowed.


Flash CS4 Easter eggs


In Flash CS4 there are some Easter eggs which I will reveal you. Easter eggs are basically hidden messages or features purposefully left by the developers as some kind of funny prank. To find the...

Copyright © 2010 ilike2flash. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. No unauthorized copying allowed.


Customise the Tools panel in Flash CS4


I previously wrote a post on the tools panel in Flash CS4. In this post I will show you how to customise the tools panel in Flash CS4. Customising the tools panel can involve rearranging the tools to...

Copyright © 2010 ilike2flash. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. No unauthorized copying allowed.


The tools panel in Flash CS4


This is an update from the tools panel in detail post. The tools panel is Flash CS4 has been updated with six new tools since I’ve written the previous post. Most of the twenty three tools should be...

Copyright © 2010 ilike2flash. This Feed is for personal non-commercial use only. If you are not reading this material in your news aggregator, the site you are looking at is guilty of copyright infringement. No unauthorized copying allowed.


Free Flash page flip effect


A Flash page flip effect gives the illusion of a realistic page turn of a book. This effect mimics the real way of browsing an actual document, so you would have to drag the mouse to turn over a...



Home  
 



Link to us




RSS Feed of new blogs                                                   Home        Feed Map        Submit Feed      Link to Us       Contact