flash旋钮点击后变色且颜色保持不变

flash按钮点击后变色且颜色保持不变
flash按钮点击后变色且颜色保持不变。不点击时默认白色,点击后为红色,再次点击返回白色,请问如何解决?
------解决方案--------------------
这种情况不能使用SimpleButton了,可以使用MovieClip作为按钮,你的情况,按钮MovieClip两帧就可以了,默认停止在第一帧,点击后进行帧切换。

btn_mc.addeventListener(MouseEvent.CLICK,onClick);
function onClick(e:MouseEvent):void{
    btn_mc.gotoAndStop(3-btn_mc.currentFrame);
}