forked from theflashbum/BitmapScroller
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathBitmapScrollerAppTestApp.mxml
More file actions
30 lines (27 loc) · 1.04 KB
/
BitmapScrollerAppTestApp.mxml
File metadata and controls
30 lines (27 loc) · 1.04 KB
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
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
xmlns:fu="http://www.adobe.com/2009/flexUnitUIRunner"
xmlns:flexunit="org.flexunit.flexui.*"
creationComplete="onCreationComplete()"
width="148" height="148" paddingTop="0"
backgroundColor="#320401" horizontalScrollPolicy="off" verticalScrollPolicy="off">
<mx:Script>
<![CDATA[
import org.flexunit.internals.TraceListener;
import org.flexunit.listeners.CIListener;
import org.flexunit.runner.FlexUnitCore;
private var core:FlexUnitCore;
[Bindable]
[Embed(source="../build/assets/logo.png")]
private var Logo:Class;
private function onCreationComplete():void
{
core = new FlexUnitCore();
core.addListener(new CIListener());
core.addListener(new TraceListener());
core.run(BitmapScrollerTestSuite);
}
]]>
</mx:Script>
<mx:Image source="{Logo}" horizontalCenter="0" verticalCenter="0"/>
</mx:Application>