Using this thoroughly explained, detailed flash lesson, I will explain to you how to create black and white flash banner. This banner can be used for any web site or for some presentation. You don’t have to use action script code to make this lesson. Let’s start!
In this Flash 8 lesson explained in extreme detail, I will teach you how to make a powerful flash menu with sound. You can use this sound menu for any web site. To make this lesson, you also have to use action script code. Using this lesson, you will also learn:
1. How to design flash menu,
2. How to animate it,
3. How to apply action script code on it,
4. How to create movie clip,
5. How to create invisible button,
5. how to use action script panel and much more! (more…)
This will be your final result
A radio button or option button is a type of graphical user interface element that allows the user to choose only one of a predefined set of options.
In this tutorial, we will create a custom Radio Button from scratch using Flash and ActionScript 3. Read on!
Launch Flash and create a new document. Set the stage size to 320x190px, #181818 for the color, and the frame rate to 24fps.

(You can see some examples of Flash radio buttons in the “Match” box, above.)
One of the premium members suggested this tutorial. If you’d like to suggest a tutorial be sure to contact me
First off create a new document to house the search box (or add it to one of your existing designs). I’ve filled the background of mine with the colour #2e3033.

Optimize images of website is really helpful for save bandwidth and website make more faster. Big website is really need to that. Because they huge user and serve their site to them is really challenging. To optimize the images for your existing website, the following code might be useful:
$dir = '/home/some_directory/'; // the directory with your files
$compr = 80; // the quality precentage
if ($handle = opendir($dir)) {
while (false !== ($file = readdir($handle))) {
$path = $dir.$file;
if (is_file($path)) {
$ext = pathinfo($path, PATHINFO_EXTENSION);
if (preg_match('/^(jpg|jpeg)$/i', $ext)) {
exec(sprintf('convert %s -quality %d %s', $path, $compr, $path));
}
}
}
closedir($handle);
}
Just enter the path to the the directory you like to optimize safe the code as a PHP script and execute the file from the command line of browser. Note only the JPEG files are getting compressed.
Optimize your images top make them load faster, but be careful don’t compress them too much.
Source: webwhiz.info