forked from MegaTeam89/GoAnimate-Studio-Version-24-Decompile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
_anifire_components_containers_HyperLinkWindowWatcherSetupUtil.as
42 lines (37 loc) · 1.79 KB
/
_anifire_components_containers_HyperLinkWindowWatcherSetupUtil.as
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
36
37
38
39
40
41
42
package
{
import anifire.components.containers.HyperLinkWindow;
import mx.binding.IWatcherSetupUtil2;
import mx.binding.PropertyWatcher;
import mx.core.IFlexModuleFactory;
public class _anifire_components_containers_HyperLinkWindowWatcherSetupUtil implements IWatcherSetupUtil2
{
public function _anifire_components_containers_HyperLinkWindowWatcherSetupUtil()
{
super();
}
public static function init(param1:IFlexModuleFactory) : void
{
HyperLinkWindow.watcherSetupUtil = new _anifire_components_containers_HyperLinkWindowWatcherSetupUtil();
}
public function setup(param1:Object, param2:Function, param3:Function, param4:Array, param5:Array) : void
{
param5[8] = new PropertyWatcher("_btnRemove",{"propertyChange":true},[param4[3]],param2);
param5[9] = new PropertyWatcher("width",{"widthChanged":true},[param4[3]],null);
param5[5] = new PropertyWatcher("txtURLReal",{"propertyChange":true},[param4[3]],param2);
param5[7] = new PropertyWatcher("width",{"widthChanged":true},[param4[3]],null);
param5[6] = new PropertyWatcher("x",{"xChanged":true},[param4[3]],null);
param5[2] = new PropertyWatcher("hostURL",{"propertyChange":true},[param4[2]],param2);
param5[4] = new PropertyWatcher("width",{"widthChanged":true},[param4[2]],null);
param5[3] = new PropertyWatcher("x",{"xChanged":true},[param4[2]],null);
param5[8].updateParent(param1);
param5[8].addChild(param5[9]);
param5[5].updateParent(param1);
param5[5].addChild(param5[7]);
param5[5].addChild(param5[6]);
param5[2].updateParent(param1);
param5[2].addChild(param5[4]);
param5[2].addChild(param5[3]);
}
}
}