Board index » Original Member Tutorials: Why not write one Today » General Tutorials

 


Post new topic Reply to topic
Author Message
 Post subject: Tutorial - Create an Old Style Movie in Flash
PostPosted: Thu Mar 30, 2006 12:46 am
  

User avatar
Site Admin

Joined: Sat Feb 11, 2006 10:44 pm
Posts: 6601
Location: UK :-)
Code:
This tutorial is written by Valhallen who has kindly allowed us to host it on the TAZ in the hope it may benifit members of our community!
You can find the original here:
http://www.antionline.com/showthread.php?s=&threadid=232328



I haven't written anything for a while so I thought i'd do YET ANOTHER Flash Tutorial
In this tutorial I'll describe how to make an old movie style effect like the one seen here in my web-site intro...am afraid however that due to a hosting problem the rest of the site is down atm but I hope to get it back up very soon
Anyways on with the tutorial


Create your flash movie

Insert a new layer above the rest used in your movie

Create a new movie clip and name it speckles

Create another new movie clip and call it dots


Ok now in the speckles movie clip draw well your speckles obviously - not too many as you don't want your movie to look too crowded.....

Do the same for the dots movieclip


Now place both movieclips in your new layer outside of the movie....

Click on speckles and give it an instance name - I'll just call it speckles again

Open the actions panel and insert this actionscript....



Code:
onClipEvent(load){
if (this._name<>"speckles"){
this._x=random(600);
this._y=random(400);
deedee=random(100);
this._xscale=deedee;
this._yscale=deedee;
}
}


don't forget to change the instance name in bold to whatever you have called it and the numbers in blue to the dimensions of your movie clip

now you need to create another new movieclip name it actions
this movieclip does not need anythign inside it as it will simply control our speckles action.

Place a copy of actions in the layer outside of the movie same as you have done for speckles and open the actions panel
insert this actionscript


code:--------------------------------------------------------------------------------
Code:
onClipEvent(enterFrame){
for (l=0; l<=2; l++)
{
_root.speckles.duplicateMovieClip( "speckles"+l, l+1);
}
if (l=2){
l=0;
}
}


remember once again to change the name in bold


Now just do the same for the dots movie clip

You will need a new action movieclip as well tho


!! Remember to change the instance letter in the actionscript !!

the instance letter is in blue and needs to be different for each movieclip!

Also by changing the number in green you can alter the number of copies of the movieclip that appear on screen at any one time.

well hope somebody found this of use =^_^=

v_Ln

_________________
Drugs have taught an entire generation of kids the metric system..

TAZ's better half: http://www.theadminzone.com/


          Top  
 
 
Post new topic Reply to topic



Who is online

Users browsing this forum: No registered users and 0 guests


Display posts from previous:  Sort by  
Jump to:  

You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum


Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group