PDA

View Full Version : Infinite menu problems [renamed]



zianne
November 4th, 2004, 08:52 PM
Big confusion here:
I did create an infinite menu, the one from this site, a movie clip in scene 1 that reacts to the location of the mouse. No problem till here.

When I assign an external url to my buttons, the menu works, and I jump to another url BUT
when I assign (and it's what I need) :
go to scene 2, frame 1 for example, it refuses to go.
I tried many combinations but I cannot make that **** menu WORK.

Also when I assign, loadMonienum in level 1, it does work but when I assign load into TARGET it does not load anything...


If you answer me, please be very clear: I am totally new...and very confused.

Zianne

You can email me at info@designer-quality.com

zianne
November 4th, 2004, 09:25 PM
Thanks Adam,

This is working:

on (release) {
loadMovieNum("http://www.sabevadistribution.com/shade.swf", 1);
}

but, this is not working:

on (release) {
_root.createEmptyMovieClip("container", 1);
loadMovie("http://www.sabevadistribution.com/padri4.swf", "container");
container._x = 5;
container._y = 55;
}
on (release) {
gotoAndStop(20);
}

or this is not working either:

on (release) {
gotoAndStop("padrino");
}

or (not working):

on (release) {
gotoAndStop("Scene 1", "padrino");
}

I need to go to another frame because I have a total complete layout, I mean it is complicate and I woudl like to go to a frame where a total different movie is loaded....

HELP!!!!

zianne
November 4th, 2004, 10:37 PM
Or does someone knows how to assign x and y to a level?
That could solve one of my pbs

scotty
November 5th, 2004, 03:45 AM
_root.gotoAndStop("framelabel")
and I think the same for the container:

on (release) {
_root.createEmptyMovieClip("container", 1);
_root.container.loadMovie("http://www.sabevadistribution.com/padri4.swf");
_root.container._x = 5;
_root.container._y = 55;
}

scotty(-:

ps In future use better titles, you'll get a lot more help;)

zianne
November 5th, 2004, 09:20 PM
oh my God Scott thank you soooooo much, I just used _rootgotoAndStop


Thanks
yes the title I was wondering why mobody was helping!!:alien2:

scotty
November 7th, 2004, 03:00 AM
welcome:thumb: