Hey everybody! i’m using this code and it works perfect:
stop();
this.onEnterFrame = function() {
if (rewind == true) {
prevFrame();
}
};
this.onRollOver = function() {
rewind = false;
play();
};
this.onRollOut = function() {
rewind = true;
};
this.onRelease = function() {
getURL(“http://www.whatever.com/base.html”, “_blank”);
};
so far so good… but if i want instead of getURL, i put:
loadMovie(“products.swf”, “container”);
so that the “products.swf” would load into a emptymovieclip named “container” that is in my maintimeline, nothing happens…it just dont work??
any suggestions?
thanks a million