Button down - initial down state

hi

I’ve set-up a menu using the actionscript below tracking bt up / down states (credit - thanx Barn: http://www.canfieldstudios.com/flashmx/).

But I’d like to adapt the script to have the home button (mvcBtn0) initially set by default to the down state - and then revert to the up state as soon as another button is pressed.

I’ve tried various adaptions sending the clip to down state on load and then the up state once another button is clicked - but none are working.

Any ideas?

Thanx

Dirk

fncBtnBuild = function () {
for (var icrBtn = 0; icrBtn<7; icrBtn++) {
var rfcClip = this[“mvcBtn”+icrBtn];
rfcClip.nbrID = rfcClip.stgBtnID=icrBtn;
rfcClip.onRelease = function() {
this.enabled = false;
this.gotoAndStop("_off");

    var rfcLast = this._parent["mvcBtn"+this._parent.nbrBtnLast];
        rfcLast.enabled = true;
        rfcLast.gotoAndStop("_up");
        this._parent.nbrBtnLast = this.nbrID;
    };
}

};
fncBtnBuild();