Public Constants
 ConstantDefined 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
Constant Detail
anchorConstant
public const anchor:Function

Creates an HTML anchor that is used as a hypertext target.

bigConstant 
public const big:Function

Use the big method to format and display a string in a document.

blinkConstant 
public const blink:Function

Use the blink method to format and display a string in a document.

boldConstant 
public const bold:Function

Use 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>
     

fixedConstant 
public const fixed:Function

Use the fixed method to format and display a string in a document (tt tag).

fontColorConstant 
public const fontColor:Function

Use the fontColor method to format and display a string in a document.

fontSizeConstant 
public const fontSize:Function

Use the fontSize method to format and display a string in a document.

italicsConstant 
public const italics:Function

Use 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>
     

linkConstant 
public const link:Function

Creates 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>
     

paragraphConstant 
public const paragraph:Function

Creates 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>
     

smallConstant 
public const small:Function

Use the small method to format and display a string in a document.

spanConstant 
public const span:Function

Creates 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>
     

strikeConstant 
public const strike:Function

Use the strike method to format and display a string in a document.

subConstant 
public const sub:Function

Use the sub method to format and display a string in a document.

supConstant 
public const sup:Function

Use the sup method to format and display a string in a document.

underlineConstant 
public const underline:Function

Use 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>