[SIZE=1]I am trying to create an Empty movieClip that holds two movies. (To eventually hold a 3rd Clip) The ‘Scrolling Background’ (created in 1 frame) being the lowest level & ‘Scroll Around’ (created in 3 frames) at the next highest level. Both work if each is attached to the empty frame on their own.
Neither work with the following coding:
this.createEmptyMovieClip(“myComboSWFLoader”,this.getNextHighestDepth());// Create empty MovieClip[/SIZE]
[SIZE=1]var mySWFLoader:MovieClipLoader = new MovieClipLoader();//Create Movie Clip Loader[/SIZE]
[SIZE=1]//Load lowest MovieClip (Note spaces after ‘’ )[/SIZE]
[SIZE=1]mySWFLoader.loadClip(“c:\ users\ Public\ Documents\ Flash 8\ Scrolling Background.swf”,myComboSWFLoader);[/SIZE]
[SIZE=1]mySWFLoader.loadClip(“c:\ users\ Public\ Documents\ Flash 8\ Scroll Around.swf”,myComboSWFLoader);[/SIZE]
[SIZE=1]onEnterFrame = function() {[/SIZE]
[SIZE=1]mySWFLoader.loadClip(“c:\ users\ Public\ Documents\ Flash 8\ Scroll Around.swf”,myComboSWFLoader);[/SIZE]
[SIZE=1]}
As a secondary question, how to I set the levels using a loader, Please[/SIZE]