summaryrefslogtreecommitdiff
path: root/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/example/Flash_1.html
diff options
context:
space:
mode:
authorDerrell Lipman <derrell@samba.org>2007-01-03 19:57:40 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:36:06 -0500
commit2e7c59c24470766e37309c7a8bfa4c7b81c57614 (patch)
treec44c89911868c52f25ca66bdefa68e13248db8e6 /webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/example/Flash_1.html
parent57f5bf78fa9fc9d190c3cb25251e686a1488f790 (diff)
downloadsamba-2e7c59c24470766e37309c7a8bfa4c7b81c57614.tar.gz
samba-2e7c59c24470766e37309c7a8bfa4c7b81c57614.tar.bz2
samba-2e7c59c24470766e37309c7a8bfa4c7b81c57614.zip
r20515: Continued work on the Web Application Framework. Until we get all of the
functionality of the old scripts incorporated into the new framework, the old scripts need to still be available. I've reverted to having the old scripts be the default pages, and added an option to access the preview of the new SWAT. (This used to be commit b43620d4b8eff815f4a6dc02522a8dfc9fdcaef4)
Diffstat (limited to 'webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/example/Flash_1.html')
-rw-r--r--webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/example/Flash_1.html53
1 files changed, 0 insertions, 53 deletions
diff --git a/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/example/Flash_1.html b/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/example/Flash_1.html
deleted file mode 100644
index 3e2f0ceca8..0000000000
--- a/webapps/qooxdoo-0.6.3-sdk/frontend/demo/source/html/example/Flash_1.html
+++ /dev/null
@@ -1,53 +0,0 @@
-<html>
-<head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>qooxdoo &raquo; 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>Simple test for qx.ui.embed.Flash.</p>
- </div>
-
- <script type="text/javascript">
- qx.core.Init.getInstance().defineMain(function()
- {
- var d = qx.ui.core.ClientDocument.getInstance();
-
- // Try no version required
- var fo1 = new qx.ui.embed.Flash("./image/flash/fo_tester.swf");
-
- // Try version 7 required
- // var fo1 = new qx.ui.embed.Flash("image/flash/fo_tester.swf", "7");
-
- // Try version 9 required
- // var fo1 = new qx.ui.embed.Flash("image/flash/fo_tester.swf", "9");
-
- // Error handling methods:
- // #1: Enable Express Install: Available in Flash Players >= 6.0.65
- // fo1.setEnableExpressInstall(true);
- // #2: Enable Redirect URL: Jump to an installer page
- // fo1.setRedirectUrl("http://www.google.de");
-
- fo1.setVariable("flashVarText", "this is passed in via FlashVars");
- fo1.setScale("noscale");
-
- fo1.setLeft(20);
- fo1.setRight(335);
- fo1.setTop(48);
- fo1.setBottom(48);
-
- fo1.setBorder(qx.renderer.border.BorderPresets.getInstance().inset);
- fo1.setBackgroundColor("#FF6600");
-
- d.add(fo1);
- });
- </script>
-</body>
-</html>