Need Urgent Help Mates!

hi all, i badly need ur help. i am currently building a website for a photographer (trying). what i wanted to know is that how to load the gallery ( which is an external swf ) automatically when the frame is called by the specific button? i have one border which i named movief and i want the gallery to load it in whenever the button is pressed.

i put a test page at www.criminal-system.com/test

i got it from a template and i cant find where to edit the settings. the buttons ‘actions’ are as follows :-


on (rollOver) {
tellTarget (“but culture”) {
gotoAndPlay(2);
}
}
on (release, rollOut) {
tellTarget (“but culture”) {
gotoAndStop(1);
}
}
on (release) {
gotoAndStop(24);
}
on (release) {
tellTarget ("_root.movie site") {
gotoAndPlay(55);
}
}
on (release) {
tellTarget ("_root.movie site.movie ecran") {
gotoAndPlay(1);
}
}


its the button for contact us under about us section. please can anyone help me. i need your help guys. thanks again in advance!

For whcih eveer button you want to load it, add the following to the on (release) action


loadMovie("movief.swf", 100);

the 100 is the depth you want to load the movie in at.

to load into a level you need:

loadMovieNum(“movief.swf”, 100);

loadMovie is used when you are loading into a movie clip:

_root.containerMC.loadMovie(“movief.swf”);

Adam

thank you very much mates for your help. it works. i do appreciate it a lot. :slight_smile: btw do u have any idea abt the site? cheers

and thanks again.
kamal

yo all, the problem now is that it loads on the homepage. but not in the movie frame. can anyone tell me how to make it load in a specific place? thanks.