I installed the mxp for this component. Supposed to let you stream mp3s off on your site…but I can’t figure out how to make the xml for it. Any help will be most appreciated. (and yes, I went to the site that it told me, I just need some explanations). Thanks in advance -Stone6
DL the fs mp3 player 1.3 at http://www.flashcomponents.net/
Hello I am trying to build a transition just like this I kinda got working but I need some pros to help me out :thumb: I had it working with these actions: I load the first swf:
- container1.loadMovie(“section1.swf”);
Then my button actions should be:
on (release) {
container1.loadMovie(“section1.swf”);
container1.swapDepths(1);
}
on (release) {
container2.loadMovie(“section2.swf”);
container2.swapDepths(1);
}
on (release) {
container3.loadMovie(“section3.swf”);
container3.swapDepths(1);
}
and so on…
The strange things happen because when I set a mc to a new Depth, the previous mc goes back to its original stacking order which may be under another mc, so it works only in one direction
so now I am trying this:
which=1
on (release) {
this[“container”+which].loadMovie(“section1.swf”);
this[“container”+which].swapDepths(1);
if (which == 1) {
which = 2;
} else {
which = 1;
}
}
I hope this make sense. Here is my new file sorry about the sloppy file