forked from TheUltDev/TibiaFlashClient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_activeButtonStyleStyle.as
More file actions
35 lines (31 loc) · 915 Bytes
/
_activeButtonStyleStyle.as
File metadata and controls
35 lines (31 loc) · 915 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
package
{
import mx.core.*;
import mx.styles.*;
public class _activeButtonStyleStyle extends Object
{
public function _activeButtonStyleStyle()
{
return;
}// end function
public static function init(param1:IFlexModuleFactory) : void
{
var fbs:* = param1;
var style:* = StyleManager.getStyleDeclaration(".activeButtonStyle");
if (!style)
{
style = new CSSStyleDeclaration();
StyleManager.setStyleDeclaration(".activeButtonStyle", style, false);
}
if (style.defaultFactory == null)
{
style.defaultFactory = function () : void
{
return;
}// end function
;
}
return;
}// end function
}
}