Una vez que el objeto HTMLLoader ha distribuido el evento
complete
, puede examinar y manipular los estilos CSS en una página.
Por ejemplo, observe el siguiente documento HTML simple:
<html>
<style>
.style1A { font-family:Arial; font-size:12px }
.style1B { font-family:Arial; font-size:24px }
</style>
<style>
.style2 { font-family:Arial; font-size:12px }
</style>
<body>
<p class="style1A">
Style 1A
</p>
<p class="style1B">
Style 1B
</p>
<p class="style2">
Style 2
</p>
</body>
</html>
Una vez que un objeto HTMLLoader cargue este contenido, puede manipular los estilos CSS en la página a través del conjunto
cssRules
del conjunto
window.document.styleSheets
, tal y como se muestra a continuación:
var html:HTMLLoader = new HTMLLoader( );
var urlReq:URLRequest = new URLRequest("test.html");
html.load(urlReq);
html.addEventListener(Event.COMPLETE, completeHandler);
function completeHandler(event:Event):void {
var styleSheet0:Object = html.window.document.styleSheets[0];
styleSheet0.cssRules[0].style.fontSize = "32px";
styleSheet0.cssRules[1].style.color = "#FF0000";
var styleSheet1:Object = html.window.document.styleSheets[1];
styleSheet1.cssRules[0].style.color = "blue";
styleSheet1.cssRules[0].style.font-family = "Monaco";
}
Este código ajusta los estilos CSS para que el documento HTML resultante se asemeje al siguiente:
Tenga en cuenta que el código puede añadir estilos a la página después de que el objeto HTMLLoader distribuye el evento
complete
.