Not signed in (Sign In)

Categories

Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorroncherese
    • CommentTimeMay 10th 2008
     permalink
    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?
    •  
      CommentAuthorMonokai
    • CommentTimeMay 12th 2008
     permalink
    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.