Lagging Flash

Is there anyway to make this scroller less laggy? The swf has a framerate of 61 and here’s the exemple:

http://www.riksknas.com/Fabian/fabian_b_R4.html

and the scroller code:

panel.onRollOver = panelOver;
function panelOver() {
    this.onEnterFrame = scrollPanel;
    delete this.onRollOver;
}

function scrollPanel() {
    if (_xmouse<b.xMin || _xmouse>b.xMax || _ymouse<b.yMin || _ymouse>b.yMax) {
        this.onRollOver = panelOver;
        delete this.onEnterFrame;
    }
    if (panel._x>=+985) {
        panel._x = +985;
    }
    if (panel._x<=-12840) {
        panel._x = -12840;
    }
    var xdist = _xmouse-1500;
    panel._x += Math.round(-xdist/60);
}

would appriciate any kind of help. Thanks on forehand!
Regards -Chris

Theres no lag even on my schools crappy computers… if it doesnt lag on these things i think your good lol.

Although if your Residence tab is down you may want to stop it from scrolling.

//edit, you do have it cached right?

[quote=Templarian;1983621]Theres no lag even on my schools crappy computers… if it doesnt lag on these things i think your good lol.

Although if your Residence tab is down you may want to stop it from scrolling.

//edit, you do have it cached right?[/quote]

thanks bro! yeah I do. Well I guess maby its the uploads of torrents or I dont know - but I’ll trust you :wink: Spanks for your time!