basic.html revision b5ea9923e255f649110ea11465ba8db74a5eb395
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith<html>
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith<head>
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith <title>SWF Tests</title>
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith <link type="text/css" rel="stylesheet" href="/build/logreader/assets/skins/sam/logreader.css" />
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith <script type="text/javascript" src="/build/yui/yui.js"></script>
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith</head>
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith<body>
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith<h1>SWF Tests</h1>
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith<div id="testdiv" style="height:400px;width:550px">
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn SmithThis content will be replaced by an instance of a Flash player.
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith</div>
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith<script>
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn SmithYUI({
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith base: '/build/',
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith filter: "raw",
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith modules: {
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith swfdetect: {
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith path: "swfdetect/swfdetect.js"
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith },
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith swf: {
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith path: "swf/swf.js"
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith }
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith }
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith}).use('node', 'event-custom', 'swfdetect', 'swf', function (Y) {
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smithvar params = {version: "9.0.115",
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith useExpressInstall: false,
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith fixedAttributes:
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith {allowScriptAccess:"always", allowNetworking:"all", width:50},
eb4caa8f4cdc2955b58dcd2de06fe770533414c8Jon A. Cruz flashVars:
eb4caa8f4cdc2955b58dcd2de06fe770533414c8Jon A. Cruz {flashvar1: "One word", flashvar2: "A word & another", flashvar3: "Three words - 100% done & done"}
3fad3df12ae2d320c12871d471eb0faf5f187cbdAlex Valavanis };
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smithvar newswf = new Y.SWF("#testdiv", "assets/Simple.swf?x=" + Math.floor(Math.random()*100000), params);
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smithnewswf.on("swfReady", talkToFlash);
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smithfunction talkToFlash (e) {
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith newswf.callSWF("addText", ["\nExternalInterface bridge is working.\n"]);
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith newswf.createInstance("mystr", "String", ["Hello world"]);
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith newswf.exposeMethod("mystr", "charAt", "mystr_charAt");
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith alert(newswf.callSWF("mystr_charAt", [3]));
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith}
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith});
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith</script>
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith</body>
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith</html>
2f5f997e354e7f4a02b6818bdc68fbece5cb237dJohn Smith