I’m having a problem in controlling an external swf loaded into my main movie. On the main timeline I have a mc (instance name SlideWindow) which loads an external swf containing a mc (instance name content) which in turn loads another external swf containing my controllable animation. The problem is I can’t control it with my slider button.
I think the problem lies here on the slider mc:
[AS]
on( press ){
_level0.slideWindow.content.this.VolumeStatus = _level0.slideWindow.content.this.VolumeStatus * -1
}
[/AS]
Button inside slider mc:
[AS]
on (press) {
startDrag("", false, left, top, right, bottom);
}
on (release) {
stopDrag();
}
[/AS]