Показать сообщение отдельно
Старый 29.04.2008, 16:03
etc вне форума Посмотреть профиль Найти все сообщения от etc
  № 4  
Ответить с цитированием
etc
Et cetera
 
Аватар для etc

Регистрация: Sep 2002
Сообщений: 30,787
Код:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" applicationComplete="this.init();">
	<mx:Label id="testLabel">
	</mx:Label>
	<mx:Script>
		<![CDATA[
			import mx.core.mx_internal;
			use namespace mx_internal;
			
			private function init():void {
				var styleSheet:StyleSheet = new StyleSheet();
				styleSheet.setStyle("a:link", { textDecoration: "none", color: "#813F98" });
				styleSheet.setStyle("a:hover", { textDecoration: "underline" });
				styleSheet.setStyle("a:active", { textDecoration: "underline" });
				this.testLabel.htmlText = '<a href="http://ya.ru">ya.ru</a>';
				this.testLabel.mx_internal::styleSheet = styleSheet;
			}
		]]>
	</mx:Script>
</mx:Application>