flash on 2013-1-29

by marcsali
♥0 | Line 26 | Modified 2013-02-11 18:28:52 | MIT License
play

ActionScript3 source code

/**
 * Copyright marcsali ( http://wonderfl.net/user/marcsali )
 * MIT License ( http://www.opensource.org/licenses/mit-license.php )
 * Downloaded from: http://wonderfl.net/c/6gSA
 */

<?xml version="1.0" encoding="utf-8"?>
<s:Application 
    xmlns:fx="http://ns.adobe.com/mxml/2009" 
    xmlns:s="library://ns.adobe.com/flex/spark"
    xmlns:mx="library://ns.adobe.com/flex/mx" > 
    <s:layout> 
        <s:BasicLayout/> 
    </s:layout> 
    <fx:Style> 
        @namespace s "library://ns.adobe.com/flex/spark"; 
        s|RichText { 
            width: 200;
           
            color: blue;
            fontSize: 14; 
            lineHeight: 11; 
         
        } 
    </fx:Style> 
    <s:RichText id="myRET"  > 
     
        This is my text. There are many others like it, <s:br/>
        but this one is mine.
        My text is my best friend. 
        It is my life. I <s:span fontWeight="bold" color="red">must master
        </s:span> it as I must master my life.
        Without me, my text is useless.  
      
    </s:RichText>
</s:Application>