ࡱ> GR+-oContentsWIPage 1KUSymbol 2 : IJHLMNOPQRSTUVXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{Rc-o@Contents (HPage 1Symbol 2  !"#$%&'()*+,-./0123456789<=>?@ABCDEFSymbol 1CPicPage CPicLayer CPicFrameWXV333{ N'8{Gaq 8a8~G|Ga8q a8~G8q 8q ?kD bgOOwt6wCPicPage CPicLayer CPicFrame   8 8 8 88  8 8 <? bgOO CPicSprite&w~&uwedge<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='1.1'> </component> affka"f"f*k;?8 ^GBBG^dx?<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='1.2'> </component> ?C  message3;?M? =stop(); scriptOPPPPPPPPPPPPPPPPPPPPPCPicPage CPicLayer CPicFrame3G vv8!!!O">8zo-&Q!! 8/O|8!!O5 8J( "V V C6ox)x)xx2## "3xxxxV<<0:P P PPz26666&PPPP^z#ssssHFF7??I triOO?6 Layer 3OCPicText  O _root.message  Gotham-Mediumf3(It could be 1|2|3|4|5?H msg3PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPCPicPage CPicLayer CPicFrameWXV333{ N'8{Gaq 8a8~G|Ga8q a8~G8q 8q ?vK bgOOwt6w"""2II 8 <m 8bI8 m8wcm88Iv m8< ? rim3 CPicSprited(content<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='1'> </component> ?_z contentO CPicShape{1  8 8 8 88  8 8 ?3 maskO ?o// A function to fix the message so it fits in the triangle function fixMessage(message) { var words = message.split(" "); var outMsg = ""; var lineLength = 0; var nLines = 0; var maxLines = 4; var maxLength = [10,8,5,2]; for (var i=0; i < words.length; ++i) { if (i > 0) { if (lineLength > 0 && lineLength + words[i].length > maxLength[nLines] && ++nLines < maxLines) { outMsg += "\n"; lineLength = 0; } else { outMsg += " "; lineLength++; } } outMsg += words[i]; lineLength += words[i].length; } return outMsg; } import flash.external.*; if (!msg) { msg = "please ask again !!"; ExternalInterface.call("mylog", "message not passed to flash"); } else ExternalInterface.call("mylog", "message passed in externally to flash"); message = fixMessage(msg); if (!autoplay) content.stop(); content.onPress = function() { this.play(); }  scriptOPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP"""2II 8 <m 8bI8 m8wcm88Iv m8< ?Ky rim3 CPicSpritedYcontent<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='1'> </component> ? contentO CPicShape{1  8 8 8 88  8 8 ?R maskO ?1b // A function to fix the message so it fits in the triangle function fixMessage(message) { var words = message.split(" "); var outMsg = ""; var lineLength = 0; var nLines = 0; var maxLines = 4; var maxLength = [10,8,5,2]; for (var i=0; i < words.length; ++i) { if (i > 0) { if (lineLength > 0 && lineLength + words[i].length > maxLength[nLines] && ++nLines < maxLines) { outMsg += "\n"; lineLength = 0; } else { outMsg += " "; lineLength++; } } outMsg += words[i]; lineLength += words[i].length; } return outMsg; } import flash.external.*; mytrace = function(str) { trace(str); ExternalInterface.call("mylog", str); } if (!msg) { msg = "please ask again !!"; mytrace("message not passed to flash"); } else mytrace("message passed in externally to flash"); message = fixMessage(msg); content.stop(); content.onPress = function() { this.play(); } myxml = new XML(); myxml.onLoad = function() { mytrace("got xml"); predictions = []; // dumpXML(this); parseXML(this); message = fixMessage(predictions[Math.floor(Math.random()*predictions.length)]); mytrace("set prediction to: " + message); if (autoplay) content.play(); } myxml.load("predictions.xml"); /* dumpXML = function(myxml) { trace("XML Keys:"); for (var key in myxml) { trace(key + ": " + myxml[key]); } trace("To String: " + myxml.toString()); } */ parseXML = function(myxml) { // mytrace("node name=" + myxml.nodeName + ", value=" + myxml.nodeValue); if (myxml.nodeName == 'pred') { mytrace("got pred: " + myxml.firstChild.nodeValue); predictions.push(myxml.firstChild.nodeValue); } else { // descend deeper into tree if (myxml.firstChild) parseXML(myxml.firstChild); } if (myxml.nextSibling) parseXML(myxml.nextSibling); }  scriptOPP? CDocumentPagePage 1Scene 1-F$iFSymbol 2message˶FSymbol 1*FSymbol 1contentF Symbol 10-F''hhhhh3legacyLineSpacing0PropSheet::ActiveTab1075%PublishFormatProperties::htmlFileName8_ball_readxml.html"PublishHtmlProperties::StartPaused0Vector::AS3 Package Paths PublishRNWKProperties::speed256K0!PublishGifProperties::PaletteNamePublishFormatProperties::jpeg0PublishHtmlProperties::Loop1PublishProfileProperties::nameDefaultVector::Debugging Permitted0Vector::UseNetwork0"PublishQTProperties::MatchMovieDim1 PublishQTProperties::AlphaOption PublishQTProperties::LayerOption4PublishHtmlProperties::UsingDefaultAlternateFilename1PublishHtmlProperties::Units0%PublishHtmlProperties::showTagWarnMsg1Vector::External Player&PublishRNWKProperties::singleRateAudio0&PublishRNWKProperties::speedSingleISDN0$PublishPNGProperties::OptimizeColors1PublishQTProperties::Width500%PublishFormatProperties::projectorMac0'PublishFormatProperties::gifDefaultName1&PublishFormatProperties::flashFileName8_ball_readxml.swfVector::Package PathsVector::Compress Movie1#PublishRNWKProperties::flashBitRate1200%PublishRNWKProperties::mediaCopyright(c) 2000PublishGifProperties::Smooth1PublishFormatProperties::html0$PublishFormatProperties::pngFileName8_ball_readxml.png(PublishHtmlProperties::VerticalAlignment1PublishHtmlProperties::Quality4Vector::FireFox0"PublishRNWKProperties::exportAudio1 PublishRNWKProperties::speed384K0!PublishRNWKProperties::exportSMIL1"PublishGifProperties::DitherOption-PublishFormatProperties::generatorDefaultName1!PublishHtmlProperties::DeviceFont0Vector::Override Sounds0'PublishRNWKProperties::mediaDescription"PublishPNGProperties::FilterOptionPublishFormatProperties::gif0(PublishFormatProperties::jpegDefaultName1(PublishFormatProperties::rnwkDefaultName1*PublishFormatProperties::generatorFileName8_ball_readxml.swtVector::Template02PublishHtmlProperties::VersionDetectionIfAvailable0*PublishHtmlProperties::HorizontalAlignment1"PublishHtmlProperties::DisplayMenu1Vector::Protect0Vector::Quality80PublishJpegProperties::DPI4718592PublishGifProperties::Interlace0"PublishGifProperties::DitherSolids0PublishPNGProperties::Smooth1PublishPNGProperties::BitDepth24-bit with AlphaPublishQTProperties::Flatten1#PublishFormatProperties::qtFileName8_ball_readxml.movPublishRNWKProperties::speed28K1!PublishRNWKProperties::mediaTitle$PublishRNWKProperties::mediaKeywordsPublishGifProperties::Width500PublishGifProperties::Loop1PublishFormatProperties::flash1PublishJpegProperties::Quality80$PublishRNWKProperties::realVideoRate100000$PublishRNWKProperties::speedDualISDN0#PublishGifProperties::MatchMovieDim1#PublishGifProperties::PaletteOption"PublishPNGProperties::DitherOption0PublishFormatProperties::projectorMacDefaultName1'PublishFormatProperties::pngDefaultName1-PublishFormatProperties::projectorWinFileName8_ball_readxml.exePublishHtmlProperties::Align0!PublishProfileProperties::version1Vector::Package Export Frame1$PublishJpegProperties::MatchMovieDim1#PublishPNGProperties::MatchMovieDim1#PublishPNGProperties::PaletteOption)PublishFormatProperties::flashDefaultName1%PublishFormatProperties::jpegFileName8_ball_readxml.jpgPublishHtmlProperties::Width500PublishHtmlProperties::Height500Vector::Omit Trace Actions0Vector::Debugging Password"PublishJpegProperties::Progressive0"PublishPNGProperties::DitherSolids0#PublishQTProperties::PlayEveryFrame0PublishFormatProperties::png0PublishFormatProperties::rnwk0(PublishFormatProperties::htmlDefaultName1-PublishFormatProperties::projectorMacFileName8_ball_readxml Projector2PublishHtmlProperties::UsingDefaultContentFilename1!PublishHtmlProperties::WindowMode0'PublishHtmlProperties::TemplateFileName]/Users/jbum/Library/Application Support/Macromedia/Flash 8/en/Configuration/Html/Default.htmlVector::TopDown0Vector::DeviceSound0PublishJpegProperties::Size0PublishGifProperties::Height500PublishPNGProperties::Interlace0"PublishFormatProperties::generator0&PublishHtmlProperties::ContentFilename8_ball_readxml_content.html(PublishHtmlProperties::AlternateFilename8_ball_readxml_alternate.html+PublishHtmlProperties::OwnAlternateFilenameVector::Report0PublishRNWKProperties::speed56K1PublishGifProperties::LoopCount'PublishGifProperties::TransparentOptionPublishGifProperties::MaxColors255%PublishPNGProperties::RemoveGradients0PublishQTProperties::Height500PublishFormatProperties::qt0Vector::Stream Compress7Vector::Event Format0Vector::Version8"PublishRNWKProperties::audioFormat0$PublishGifProperties::OptimizeColors10PublishFormatProperties::projectorWinDefaultName1PublishHtmlProperties::Scale0Vector::Event Compress7Vector::ActionScriptVersion2Vector::StreamUse8kSampleRate0Vector::EventUse8kSampleRate0PublishJpegProperties::Height500 PublishRNWKProperties::speed512K0%PublishGifProperties::RemoveGradients0PublishPNGProperties::Width500PublishPNGProperties::Height500&PublishFormatProperties::qtDefaultName1$PublishFormatProperties::gifFileName8_ball_readxml.gif"PublishHtmlProperties::VersionInfo@8,0,0,0;7,0,0,0;6,0,0,0;5,0,0,0;4,0,0,0;3,0,0,0;2,0,0,0;1,0,0,0;Vector::Stream Format0PublishJpegProperties::Width500"PublishRNWKProperties::exportFlash1&PublishRNWKProperties::showBitrateDlog1(PublishRNWKProperties::speedCorporateLAN0"PublishRNWKProperties::mediaAuthorPublishGifProperties::Animated0&PublishGifProperties::TransparentAlpha128!PublishPNGProperties::Transparent0!PublishPNGProperties::PaletteName*PublishQTProperties::UseQTSoundCompression0PublishQTProperties::Looping0%PublishFormatProperties::defaultNames1%PublishFormatProperties::projectorWin0%PublishFormatProperties::rnwkFileName8_ball_readxml.smil,PublishHtmlProperties::UsingOwnAlternateFileSymbol 1Symbol 3=h !"#$%&'()*+,-./0123456789:;<0PublishPNGProperties::MaxColors255%PublishQTProperties::ControllerOption0"PublishQTProperties::PausedAtStart0 CColorDef3PfP0PHP`Px333(3f<03CH3F`3Hxf0f30ff(0f5Hf<`f@x3330333xf3d03]H3Z`3Xx3333303f3PPH33Px`33Px33Pf30f33PHff3(PHf3<x`f3Cxf3Ffff`f03f0ffx0fkHfd`f`x3f033fPH3ffxPH3fdx`3f]x3fZff0f3fPHfff`ffP0xffPxffPH3HfHxH̙n`hx3H33x`3fx`3xx`3̙kx3dfHf3x`ff0xfx0xf̙dxf]`3`f``x`px3`33x3fx3x3xx3nf`f3xffxfxfxxfkx3xfxxxxx3x333f333xfxf3fffffxxH3 HfH(H2`8x`3 `f`̙`(`0xx3xfxx x(xPx3H33x`f3x`3(x`35x3<3`33xf3 x̙3x3(x323x33f3 333(xfH3fx`ff0xf(0xf<xfCf`3fxffx̙fxf(xf5fx3ffff ff((xH3x`f0x̙PPP`3xfx̙P̙(P<x3f̙(xx`3xfxPxPd`3xfx̙PPx3f(xx3fxx3f̙xx3ff`zf*]"PublishQTProperties::QTSndSettingsCQTAudioSettingsh<?xml version="1.0" encoding="UTF-16" standalone="no" ?> <mobileSettings> <contentType id="standalonePlayer" name="Standalone Player"/> <testDevices/> </mobileSettings> PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP !"#$%&'()*+,-./0123456789:;<>?@ABCDEFGHIJ?# Layer 1OOPPPPPPPPPPPPPPPPPPPPPPPPcontent<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='1'> </component> ld be 1|2|3|4|5?H msg3PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPCPicPage CPicLayer CPicFrame CPicShapexwd WXE! N'8{Gaq 8a8~G|Ga8q a8~G8q 8q xwd OO  N Oa"&z4/uJu68/54ou8IZ49d 4\n4r:Q4F4,<  lH" </component>  CPicShapewt6wQQQ^{2II 8 <m 8bI8 m8wcm88Iv m8< ?kD bgOOdYcontent<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='1'> </component> ? contentO {1  8 8 8 88  8 8 ?R maskO?1b // A function to fix the message so it fits in the triangle function fixMessage(message) { var words = message.split(" "); var outMsg = ""; var lineLength = 0; var nLines = 0; var maxLines = 4; var maxLength = [10,8,5,2]; for (var i=0; i < words.length; ++i) { if (i > 0) { if (lineLength > 0 && lineLength + words[i].length > maxLength[nLines] && ++nLines < maxLines) { outMsg += "\n"; lineLength = 0; } else { outMsg += " "; lineLength++; } } outMsg += words[i]; lineLength += words[i].length; } return outMsg; } import flash.external.*; mytrace = function(str) { trace(str); ExternalInterface.call("mylog", str); } if (!msg) { msg = "please ask again !!"; mytrace("message not passed to flash"); } else mytrace("message passed in externally to flash"); message = fixMessage(msg); content.stop(); content.onPress = function() { this.play(); } myxml = new XML(); myxml.onLoad = function() { mytrace("got xml"); predictions = []; // dumpXML(this); parseXML(this); message = fixMessage(predictions[Math.floor(Math.random()*predictions.length)]); mytrace("set prediction to: " + message); if (autoplay) content.play(); } myxml.load("predictions.xml"); /* dumpXML = function(myxml) { trace("XML Keys:"); for (var key in myxml) { trace(key + ": " + myxml[key]); } trace("To String: " + myxml.toString()); } */ parseXML = function(myxml) { // mytrace("node name=" + myxml.nodeName + ", value=" + myxml.nodeValue); if (myxml.nodeName == 'pred') { mytrace("got pred: " + myxml.firstChild.nodeValue); predictions.push(myxml.firstChild.nodeValue); } else { // descend deeper into tree if (myxml.firstChild) parseXML(myxml.firstChild); } if (myxml.nextSibling) parseXML(myxml.nextSibling); }  scriptOPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP? CDocumentPagePage 1Scene 1-FiFSymbol 2message˶FSymbol 1*FSymbol 1contentF Symbol 10-FSymbol 3bgF.:8_ball_ajax.flabgFFF''hhhhh3legacyLineSpacing0PropSheet::ActiveTab1075%PublishFormatProperties::htmlFileName8_ball_readxml.html"PublishHtmlProperties::StartPaused0Vector::AS3 Package Paths PublishRNWKProperties::speed256K0!PublishGifProperties::PaletteNamePublishFormatProperties::jpeg0PublishHtmlProperties::Loop1PublishProfileProperties::nameDefaultVector::Debugging Permitted0Vector::UseNetwork0"PublishQTProperties::MatchMovieDim1 PublishQTProperties::AlphaOption PublishQTProperties::LayerOption4PublishHtmlProperties::UsingDefaultAlternateFilename1PublishHtmlProperties::Units0%PublishHtmlProperties::showTagWarnMsg1Vector::External Player&PublishRNWKProperties::singleRateAudio0&PublishRNWKProperties::speedSingleISDN0$PublishPNGProperties::OptimizeColors1PublishQTProperties::Width500%PublishFormatProperties::projectorMac0'PublishFormatProperties::gifDefaultName1&PublishFormatProperties::flashFileName8_ball_readxml.swfVector::Package PathsVector::Compress Movie1#PublishRNWKProperties::flashBitRate1200%PublishRNWKProperties::mediaCopyright(c) 2000PublishGifProperties::Smooth1PublishFormatProperties::html0$PublishFormatProperties::pngFileName8_ball_readxml.png(PublishHtmlProperties::VerticalAlignment1PublishHtmlProperties::Quality4Vector::FireFox0"PublishRNWKProperties::exportAudio1 PublishRNWKProperties::speed384K0!PublishRNWKProperties::exportSMIL1"PublishGifProperties::DitherOption-PublishFormatProperties::generatorDefaultName1!PublishHtmlProperties::DeviceFont0Vector::Override Sounds0'PublishRNWKProperties::mediaDescription"PublishPNGProperties::FilterOptionPublishFormatProperties::gif0(PublishFormatProperties::jpegDefaultName1(PublishFormatProperties::rnwkDefaultName1*PublishFormatProperties::generatorFileName8_ball_readxml.swtVector::Template02PublishHtmlProperties::VersionDetectionIfAvailable0*PublishHtmlProperties::HorizontalAlignment1"PublishHtmlProperties::DisplayMenu1Vector::Protect0Vector::Quality80PublishJpegProperties::DPI4718592PublishGifProperties::Interlace0"PublishGifProperties::DitherSolids0PublishPNGProperties::Smooth1PublishPNGProperties::BitDepth24-bit with AlphaPublishQTProperties::Flatten1#PublishFormatProperties::qtFileName8_ball_readxml.movPublishRNWKProperties::speed28K1!PublishRNWKProperties::mediaTitle$PublishRNWKProperties::mediaKeywordsPublishGifProperties::Width500PublishGifProperties::Loop1PublishFormatProperties::flash1PublishJpegProperties::Quality80$PublishRNWKProperties::realVideoRate100000$PublishRNWKProperties::speedDualISDN0#PublishGifProperties::MatchMovieDim1#PublishGifProperties::PaletteOption"PublishPNGProperties::DitherOption0PublishFormatProperties::projectorMacDefaultName1'PublishFormatProperties::pngDefaultName1-PublishFormatProperties::projectorWinFileName8_ball_readxml.exePublishHtmlProperties::Align0!PublishProfileProperties::version1Vector::Package Export Frame1$PublishJpegProperties::MatchMovieDim1#PublishPNGProperties::MatchMovieDim1#PublishPNGProperties::PaletteOption)PublishFormatProperties::flashDefaultName1%PublishFormatProperties::jpegFileName8_ball_readxml.jpgPublishHtmlProperties::Width500PublishHtmlProperties::Height500Vector::Omit Trace Actions0Vector::Debugging Password"PublishJpegProperties::Progressive0"PublishPNGProperties::DitherSolids0#PublishQTProperties::PlayEveryFrame0PublishFormatProperties::png0PublishFormatProperties::rnwk0(PublishFormatProperties::htmlDefaultName1-PublishFormatProperties::projectorMacFileName8_ball_readxml Projector2PublishHtmlProperties::UsingDefaultContentFilename1!PublishHtmlProperties::WindowMode0'PublishHtmlProperties::TemplateFileName]/Users/jbum/Library/Application Support/Macromedia/Flash 8/en/Configuration/Html/Default.htmlVector::TopDown0Vector::DeviceSound0PublishJpegProperties::Size0PublishGifProperties::Height500PublishPNGProperties::Interlace0"PublishFormatProperties::generator0&PublishHtmlProperties::ContentFilename8_ball_readxml_content.html(PublishHtmlProperties::AlternateFilename8_ball_readxml_alternate.html+PublishHtmlProperties::OwnAlternateFilenameVector::Report0PublishRNWKProperties::speed56K1PublishGifProperties::LoopCount'PublishGifProperties::TransparentOptionPublishGifProperties::MaxColors255%PublishPNGProperties::RemoveGradients0PublishQTProperties::Height500PublishFormatProperties::qt0Vector::Stream Compress7Vector::Event Format0Vector::Version8"PublishRNWKProperties::audioFormat0$PublishGifProperties::OptimizeColors10PublishFormatProperties::projectorWinDefaultName1PublishHtmlProperties::Scale0Vector::Event Compress7Vector::ActionScriptVersion2Vector::StreamUse8kSampleRate0Vector::EventUse8kSampleRate0PublishJpegProperties::Height500 PublishRNWKProperties::speed512K0%PublishGifProperties::RemoveGradients0PublishPNGProperties::Width500PublishPNGProperties::Height500&PublishFormatProperties::qtDefaultName1$PublishFormatProperties::gifFileName8_ball_readxml.gif"PublishHtmlProperties::VersionInfo@8,0,0,0;7,0,0,0;6,0,0,0;5,0,0,0;4,0,0,0;3,0,0,0;2,0,0,0;1,0,0,0;Vector::Stream Format0PublishJpegProperties::Width500"PublishRNWKProperties::exportFlash1&PublishRNWKProperties::showBitrateDlog1(PublishRNWKProperties::speedCorporateLAN0"PublishRNWKProperties::mediaAuthorPublishGifProperties::Animated0&PublishGifProperties::TransparentAlpha128!PublishPNGProperties::Transparent0!PublishPNGProperties::PaletteName*PublishQTProperties::UseQTSoundCompression0PublishQTProperties::Looping0%PublishFormatProperties::defaultNames1%PublishFormatProperties::projectorWin0%PublishFormatProperties::rnwkFileName8_ball_readxml.smil,PublishHtmlProperties::UsingOwnAlternateFile0PublishPNGProperties::MaxColors255%PublishQTProperties::ControllerOption0"PublishQTProperties::PausedAtStart0 CColorDef3PfP0PHP`Px333(3f<03CH3F`3Hxf0f30ff(0f5Hf<`f@x3330333xf3d03]H3Z`3Xx3333303f3PPH33Px`33Px33Pf30f33PHff3(PHf3<x`f3Cxf3Ffff`f03f0ffx0fkHfd`f`x3f033fPH3ffxPH3fdx`3f]x3fZff0f3fPHfff`ffP0xffPxffPH3HfHxH̙n`hx3H33x`3fx`3xx`3̙kx3dfHf3x`ff0xfx0xf̙dxf]`3`f``x`px3`33x3fx3x3xx3nf`f3xffxfxfxxfkx3xfxxxxx3x333f333xfxf3fffffxxH3 HfH(H2`8x`3 `f`̙`(`0xx3xfxx x(xPx3H33x`f3x`3(x`35x3<3`33xf3 x̙3x3(x323x33f3 333(xfH3fx`ff0xf(0xf<xfCf`3fxffx̙fxf(xf5fx3ffff ff((xH3x`f0x̙PPP`3xfx̙P̙(P<x3f̙(xx`3xfxPxPd`3xfx̙PPx3f(xx3fxx3f̙xx3ff`zf*]"PublishQTProperties::QTSndSettingsCQTAudioSettingsh<?xml version="1.0" encoding="UTF-16" standalone="no" ?> <mobileSettings> <contentType id="standalonePlayer" name="Standalone Player"/> <testDevices/> </mobileSettings> PPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPPP