| Constant | Defined By | ||
|---|---|---|---|
| anchor : Function
Creates an HTML anchor that is used as a hypertext target. | core.html | ||
| big : Function
Use the big method to format and display a string in a document. | core.html | ||
| blink : Function
Use the blink method to format and display a string in a document. | core.html | ||
| bold : Function
Use the bold method to format and display a string in a document. | core.html | ||
| fixed : Function
Use the fixed method to format and display a string in a document (tt tag). | core.html | ||
| fontColor : Function
Use the fontColor method to format and display a string in a document. | core.html | ||
| fontSize : Function
Use the fontSize method to format and display a string in a document. | core.html | ||
| italics : Function
Use the italics method to format and display a string in a document. | core.html | ||
| link : Function
Creates an HTML paragraph string in a document. | core.html | ||
| paragraph : Function
Creates an HTML paragraph string in a document. | core.html | ||
| small : Function
Use the small method to format and display a string in a document. | core.html | ||
| span : Function
Creates an HTML span string in a document. | core.html | ||
| strike : Function
Use the strike method to format and display a string in a document. | core.html | ||
| sub : Function
Use the sub method to format and display a string in a document. | core.html | ||
| sup : Function
Use the sup method to format and display a string in a document. | core.html | ||
| underline : Function
Use the underline method to format and display a string in a document. | core.html | ||
| anchor | Constant |
public const anchor:FunctionCreates an HTML anchor that is used as a hypertext target.
| big | Constant |
public const big:FunctionUse the big method to format and display a string in a document.
| blink | Constant |
public const blink:FunctionUse the blink method to format and display a string in a document.
| bold | Constant |
public const bold:FunctionUse the bold method to format and display a string in a document.
import core.html.bold ;
var s:String = bold("hello world") ;
trace("bold : " + s) ; // bold : <b>hello world</b>
| fixed | Constant |
public const fixed:FunctionUse the fixed method to format and display a string in a document (tt tag).
| fontColor | Constant |
public const fontColor:FunctionUse the fontColor method to format and display a string in a document.
| fontSize | Constant |
public const fontSize:FunctionUse the fontSize method to format and display a string in a document.
| italics | Constant |
public const italics:FunctionUse the italics method to format and display a string in a document.
import core.html.italics ;
var s:String = italics("hello world") ;
trace("italics : " + s) ; // italics : <i>hello world</i>
| link | Constant |
public const link:FunctionCreates an HTML paragraph string in a document.
import core.html.link ;
var s:String = link("framework", "http://code.google.com/p/maashaack", "_blank") ;
trace("link : " + s) ; // link : <a href="http://code.google.com/p/maashaack" target="_blank">framework</a>
| paragraph | Constant |
public const paragraph:FunctionCreates an HTML paragraph string in a document.
import core.html.paragraph ;
var result:String ;
result = paragraph("hello world") ;
trace("paragraph : " + result) ; // paragraph : <p>hello world</p>
result = paragraph( "hello world" , "myStyle" ) ;
trace("paragraph : " + result) ; // paragraph : <p class="myStyle">hello world</p>
| small | Constant |
public const small:FunctionUse the small method to format and display a string in a document.
| span | Constant |
public const span:FunctionCreates an HTML span string in a document.
import core.html.span ;
var result:String ;
result = span("hello world") ;
trace("span : " + result) ; // span : <span>hello world</span>
result = span( "hello world" , "myStyle" ) ;
trace("span : " + result) ; // span : <span class="myStyle">hello world</span>
| strike | Constant |
public const strike:FunctionUse the strike method to format and display a string in a document.
| sub | Constant |
public const sub:FunctionUse the sub method to format and display a string in a document.
| sup | Constant |
public const sup:FunctionUse the sup method to format and display a string in a document.
| underline | Constant |
public const underline:FunctionUse the underline method to format and display a string in a document.
import core.html.underline ;
var s:String = underline( "hello world" ) ;
trace("underline : " + s) ; // underline : <u>hello world</u>