Action Script Flash Script

Any help regarding any computer based programming language (non serverside) can be requested and recieved here.
Locked
anish
Posts: 353
Joined: Fri Apr 27, 2007 12:34 pm
Contact:

Action Script Flash Script

Post by anish »

Flash menus NOT EDIBLE.
Here you’ll learn to make a menu for your website using Macromedia Flash
1)First Way – get URL Method.
2)Create a new movie.
3)Insert a couple of buttons from the common libraries or make your own buttons.
4)Select this button get in to actions for this by pressing F9.


Select this button get in to actions for this by pressing F9
Insert this script as it is :

Code: Select all

on (press, release) {
   getURL("sample.htm");
}
Do the same for the other buttons and what you have is a MENU for your website. Remember the name of your page takes place of SAMPLE and as flash is very sensitive be sure with .htm and .html endings.


Locked