22 lines
524 B
ActionScript
22 lines
524 B
ActionScript
package com.common
|
|
{
|
|
import flash.text.StyleSheet;
|
|
|
|
public class CommonAPI
|
|
{
|
|
|
|
public function CommonAPI()
|
|
{
|
|
super();
|
|
}
|
|
|
|
public static function getLinkStyle() : StyleSheet
|
|
{
|
|
var _loc1_:* = new StyleSheet();
|
|
_loc1_.parseCSS("a {color: #FFFFFF;text-decoration: underline;} a:hover {color: #0080FF;text-decoration: underline;} a:active {text-decoration: underline; color: #FFFF00; }");
|
|
return _loc1_;
|
|
}
|
|
}
|
|
}
|
|
|