Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从 flex 2 中的链接按钮中删除翻转背景、选择颜色。请帮助。
这可以通过使用 setStyle 方法将 upSkin、downSkin 和 overSkin 设置为 null 来完成。
linkButton.setStyle('upSkin', null); linkButton.setStyle('overSkin', null); linkButton.setStyle('downSkin', null);
以上禁用了来自链接按钮的 selectionColor、rollOverColor。