Rollover color?

I have a flash menu that isn’t made with buttons, but with one tween and it has a glow effect on rollover, it also expands. Is there any way to change the color of the text when it’s rolled over (like it expands and glows). Here’s the code for the rollover:


import flash.filters.GlowFilter;
import mx.transitions.Tween;
import mx.transitions.easing.*;

// Creates a variable with info about the Filter settings
var myGlowFilter = new GlowFilter (0xFFFFFF, 2, 15, 15, 6, 100, false, false);

this.onRollOver = function()
{
    
    this.filters = [myGlowFilter];

    this.gotoAndPlay(2)
    
}

this.onRollOut = function()
{
    this.filters = null
    this.gotoAndPlay(11)
}

this.onRelease = function()
{
    //Action code
}

Thanks