Search code examples
apache-flexstylesflex2

How to remove rollover color in Link Button in flex 2


How do I remove the rollover background,selection color from link button in flex 2.Please help.


Solution

  • This can be done by setting upSkin, downSkin and overSkin to null using setStyle method.

     linkButton.setStyle('upSkin', null);
     linkButton.setStyle('overSkin', null);
     linkButton.setStyle('downSkin', null);
    

    The above disables the selectionColor,rollOverColor from Link button.