blob: b6c0368212349bd1be6e5409ab134059ef874c0d (
plain)
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
43
44
|
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>qooxdoo » Demo</title>
<link type="text/css" rel="stylesheet" href="../../resource/css/layout.css"/>
<!--[if IE]>
<link type="text/css" rel="stylesheet" href="../../resource/css/layout_ie.css"/>
<![endif]-->
<script type="text/javascript" src="../../script/qx.js"></script>
</head>
<body>
<script type="text/javascript" src="../../script/layout.js"></script>
<div id="demoDescription">
<p>Testing the new flash support for QxButtons (inherited from qx.ui.basic.Atom).</p>
</div>
<script type="text/javascript">
qx.core.Init.getInstance().defineMain(function()
{
var d = qx.ui.core.ClientDocument.getInstance();
var a;
for (var i=1; i<11; i++)
{
var b = new qx.ui.form.Button("Flash Button #" + i, "icon/16/reload.png", 16, 16, "./image/flash/color/file" + i + ".swf");
b.setTop(48 + ((i-1)*30));
b.setLeft(20);
d.add(b);
};
var b = new qx.ui.form.Button("Big Rotated", "icon/48/reload.png", 48, 48, "./image/flash/color/file3.swf");
b.setTop(48);
b.setLeft(200);
b.setIconPosition("top");
d.add(b);
});
</script>
</body>
</html>
|