December 9th, 2009
This easy to follow tutorial saved me a lot of time today in creating a banner ad that needed to show the date. The difference is I didn’t want to show the day as 12/07/09 or another variation in number format. I wanted it to say Wednesday December 9, 2009. This is exactly what I needed.
http://www.godsafe.net/showflash.asp?id=1
Get the FLA below or on godsafe.net if needed.
datetime
Posted in Uncategorized | No Comments »
November 24th, 2009
Asimple resource for creating tiled backgrounds, choose your pattern, color, etc and download the image. The selection could be better but this site might save you some time. bgpatterns.com
Posted in backgrounds, design, tools | No Comments »
October 13th, 2009
Posted in inspiration | No Comments »
September 22nd, 2009
Posted in css | No Comments »
September 22nd, 2009
Posted in typography | No Comments »
September 22nd, 2009
flash components for sale
http://www.flashden.net
free flash movies and tutorials
http://www.flashkit.com
lots of free templates
http://www.flashmo.com
Useful Flash Blog – Lots of good advice and tips
http://www.flashguru.co.uk/blog/
free flash templates
http://www.flashvillage.com
loop a flash movie (AS2)
Create a new layer in your flash file, name it Actionscript. On the first frame of the movie on the actionscript layer, insert this :
_global.z = 0;
Now, move the rest of your movie layers (not actionscript layer) so that there is nothing else on frame 1 besides the actionscript layer.
Now, make a new keyframe one frame after the last frame of your movie on the actionscript layer. Insert this code :
if (_global.z == 3)
{
stop();
}
else
{
_global.z = _global.z + 1;
gotoAndPlay(2);
}
You can change 3 to be however many times you want the movie to loop. That’s all.
setTimeout Function – you don’t always have to use setInterval
http://www.flashguru.co.uk/blog/flash-8-settimeout
Posted in flash | 1 Comment »