Hi, i have a problem with integration monoslideshow+flash. Using flash I made 2 layer, the bottom layer empty with script code:
function loadingFinished(target){ var monoslideshow = new Monoslideshow(target, "monoslideshow.xml"); monoslideshow.start(Stage.width, Stage.height, true); } var listener = new Object(); var movieClipLoader = new MovieClipLoader(); listener.onLoadInit = loadingFinished; movieClipLoader.addListener(listener); this.createEmptyMovieClip("holder", this.getNextHighestDepth()); movieClipLoader.loadClip("monoslideshow.swf", this.holder);
and the top layer with a simple graphic symbol with alpha 50%. When the movie clip start, the top layer is visible for only 1 second, after disappear! How can i resolve this?
the "holder" clip is created dynamically on top of your top layer, so you either have to change the depth via code, or place Monoslideshow inside another empty movieClip.