duplicateMovieClip

  • hallo, also ich bin gerade dabei in flash etwas zu basteln.
    ich habe ein bild und 4 flächen wo man das bild draufschieben muss. allerdings sollte nicht das bild verschiebar sein sondern desen "clone" dich ich per *duplicateMovieClip* erstelle.
    das gane funktioniert aber nur 1 mal...also das duplizieren.
    hoffe man versteht mich.. :)

    unten ist der code,bitte um hilfe :)


    onClipEvent(load){
    var x=1;

    }

    on(press) {
    startDrag(this);
    _root.answer1="";
    x++;
    this.duplicateMovieClip ("mauer"+"x");

    }

    on(release) {
    stopDrag();
    if (this._droptarget == "/blue") {
    _root.answer1="correct";
    }
    else{
    _root.answer1 = "wrong";
    }
    }