Flash Menu

Has anyone created a Flash Menu? I tried using the tutorial to create it and I found it confusing :( I was able to create the files, however, when I tried to insert it into the table (in Dreamweaver), it didn't work. Help? Anyone?

Thanks :)

Comments

  • miguelpmiguelp Beginner Link Clerk
    hi there,

    just make the bottons and add this action to the botton to open the link in the same window:
    on (release) {
    getURL("index.html");
    }
    

    if you want that to open in a pop up window just tipe it like this
    on (release) {
    	getURL("3.html",_blank);
    
    }
    
    
Sign In or Register to comment.