PDA

View Full Version : Frames and Flash, I NEED HELP



jetcitykid
06-25-2004, 12:33 AM
Top Frame: Flash header with buttons
Bottum frame: my mainframe

the problem is that i cant establish the targets for the buttons. everytime i click on the buttons for the page to change it opens the correct page but it opens it in a new window and i need it in the mainframe.

script: on(release){getURL("frameset_index.htm",mainframe);
}

pleasehelp :!:

jeet
06-25-2004, 06:22 AM
Hi jetcitykid,

In your script you are using mainframe it's not a variable but you are treated it as variable in you script, please use below code


on(release){
getURL("frameset_index.htm","mainframe");
}


Regards
Jeet