Buttons problem

hey

i have made some buttons and put them into my dreamweaver pages but i cant seem to get them to link to other pages. i have looked at the tutorial on adding actions to buttons but it doesnt work !!!

can anyone help me ?

thanx

what code are you using on your buttons?? are you linking them i flash or in DW?? please specify more input

more than likely, you’re not putting the proper reference in your button links.

im goin gto put the butoons into dreamweaver but im assigning the links in flash thru action script

i want the buttons to link to other pages that i have made in DW. do i put the name of the page i want to link to after get URL(); ?

need help!!!

i think u have to add the script in MX to each button, then import them into DW.

in MX, select the button, press F9 and enter the code in the action script field. it should be something like this:

on(release) {
getURL(“page.html”, “_self”);
}

… also this is for a popup page:

on (release) {
//customize the window that gets opened
// 0 equals NO.
// 1 equals YES.
address = “page.html”;
target_winName = “kirupa”;
width = 300;
height = 263;
toolbar = 0;
location = 0;
directories = 0;
status = 0;
menubar = 0;
scrollbars = 0;
resizable = 0;
openWinCentre(address, target_winName, width, height, toolbar, location, directories, status, menubar, scrollbars, resizable);
}