• User

    problema news

    Stage.scaleMode = "noScale";
    var testoScrorrevole:String;
    var scrollMc:MovieClip;
    var myroot:MovieClip = this;
    var margine:Number = 30;
    var xStage:Number = Stage.width;
    var yStage:Number = Stage.height;
    // recupero il testo tramite l'oggetto LoadVars
    var objLoad:LoadVars = new LoadVars();
    objLoad.onLoad = function(ok) {
        if (ok) {
            testoScrorrevole = this.miotesto;
            creaScroll();
        } else {
            trace("testo non caricato");
        }
    };
    objLoad.load("testo.txt");
    function creaScroll() {
        scrollMc = myroot.attachMovie("scrollclip", "scrollMc", 1);
        scrollMc.testo.text = testoScrorrevole;
        scrollMc.testo.autoSize = "left";
        scrollMc._x = (xStage-scrollMc._width);
        scrollMc._y = yStage+margine;
        scrollMc.onEnterFrame = moveScroll;
        moveScroll();
    }
    function moveScroll() {
        this._y -= 2;
        if (this._y<-(this._height+margine)) {
            this._y = 350;
        }
    }
    
    

    ⭕o⭕o:o

    ho questo codice
    per delle news...

    ma mi partono dalla base all'alto di tutto lo stage
    ma io voglio che mi stia solo dentro un piccolo box....
    come faccio? :S

    help me....


  • Super User

    Provato a cambiare le valore per x e y???

    scrollMc._x = (xStage-scrollMc._width);
    scrollMc._y = yStage+margine;

    con xStage e yStage = ```
    var xStage:Number = Stage.width;
    var yStage:Number = Stage.height;