ࡱ>  Rp|YrRASHpUU @Contents5CPage 1`&Symbol 1h  "%&()./012346789:;<=>?\]^_`abcdefghijklmnoprtRp|YrRASH0U @Contents*CPage 1 b&Symbol 1h !#$'+,-@ABCDEFGHIJKLMNOPQRSTUVWXYZ[qsSymbol 2CPicPage CPicLayer CPicFrame CPicSpriteXXd}vcarre_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Squence 1' oldCopiedComponentPath='1'> </component> 11d8texte_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Squence 1' oldCopiedComponentPath='2'> </component> ?Zz sceneO?//je stoppe le timeine pur eviter des reinitialisations intempestive de variable... _root.stop(); //je m'assure que meme en plein ecran les coordones x=0 et y=0 //sont en Symbol 2 CPicPage CPicLayer CPicFrame CPicShapeHsFR0R00?2 Calque 1OCPicPage CPicLayer CPicFrameCPicText 0@texte ,_sans(?q Layer 1O.x), Math.random ajoute une legere vibration MovieClip.prototype.vibre = function() { this._x = (Math.random()*2)-1+10*Math.cos(t+this.level)+this.x; this._y = (Math.random()*2)-1+10*Math.sin(t+this.level)+this.y; }; //compoCPicPage CPicLayer CPicFrame CPicSpriteXXd}vcarre_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Squence 1' oldCopiedComponentPath='1'> </component> 11d8texte_mc<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Squence 1' oldCopiedComponentPath='2'> </component> ?Zz sceneO?//je stoppe le timeine pur eviter des reinitialisations intempestive de variable... _root.stop(); //je m'assure que meme en plein ecran les coordones x=0 et y=0 //sont en haut a gauche de l'ecran Stage.align = "tl"; Stage.scaleMode = "NoScale"; //je cree une liste comportant toutes les valeurs que peut prendre //chacune des trois couleurs en RGB palette = new Array("00", "11", "22", "33", "44", "55", "66", "77", "88", "99", "aa", "bb", "cc", "dd", "ee", "ff"); //comportement carre: MovieClip.prototype.carre = function(final) { //initilisation des varibles propre a chaque occurence: //position final en x, que l'on recupere du comportement carre this.x = final; //profondeur (aussi equivalent au numero d'occurence du movieclip) this.level = this.getDepth(); //position final en y this.y = Stage.height/2; //position de depart en x et en y this._x = Math.random()*Stage.width; this._y = Math.random()*Stage.height; //largeur et longueur de depart, que l'on stocke egalement dans this.initt // cette taille et comprise entre 25 et 50 pixel this._width = this._height=this.initt=Math.random()*25+25; //transparence initial this._alpha = 0; //flag focus this.focus = false; //flag retour this.retour = false; //attribution d'une couleur maCouleur = new Color(this); maCouleur.setRGB("0x"+palette[Math.round(Math.random()*15)]+palette[Math.round(Math.random()*15)]+palette[Math.round(Math.random()*15)]); //comportement parcour: //pour amener les movieclip a leur position final (this.x) MovieClip.prototype.parcour = function() { this._x += (this.x-this._x)/10; this._y += (this.y-this._y)/10; this._alpha++; }; //comportement vibre: //comportement par defaut,tourne (avec Math.cos et Math.sin) autour //de leur position final (this.x), Math.random ajoute une legere vibration MovieClip.prototype.vibre = function() { this._x = (Math.random()*2)-1+10*Math.cos(t+this.level)+this.x; this._y = (Math.random()*2)-1+10*Math.sin(t+this.level)+this.y; }; //comportement centreetzoom: //ce deplace vers le centre en s'obscurcissant et en croissant MovieClip.prototype.centreetzoom = function() { this._alpha += 2; this._x += ((stage.width/2)-this._x)/10; this._y += ((stage.height/2)-this._y)/10; this._width += (200-this._width)/10; this._height += (200-this._height)/10; if (this._alpha>99) { _root.texte_mc.texte = "carre"+this.level+"_mc"; } }; //comportement retouretdezoom: //ce deplace vers sa position initial (this.x) en s'eclaircissant et en decroissant MovieClip.prototype.retouretdezoom = function() { this._alpha--; this._x += (this.x-this._x)/10; this._y += (this.y-this._y)/10; this._width += (this.initt-this._width)/10; this._height += (this.initt-this._height)/10; if (this._alpha<50) { _root.texte_mc.texte = ""; this.retour = false; } }; //enterframe this.onEnterFrame = function() { if (this._alpha<50) { this.parcour(); } else { if (this.focus) { this.centreetzoom(); } else if (this.retour) { this.retouretdezoom(); } else { this.vibre(); } } }; this.onPress = function() { if (this.focus == true) { this.focus = false; this.retour = true; this.swapDepths(this.level); } else { this.focus = true; this.swapDepths(1000); } }; }; //creation de nouvelles occurences: level = 0; t = 0; _root.onEnterFrame = function() { t += 0.1; if (posihaut a gauche de l'ecran Stage.align = "tl"; Stage.scaleMode = "NoScale"; //je cree une liste comportant toutes les valeurs que peut prendre //chacune des trois couleurs en RGB palette = new Array("00", "11", "22", "33", "44", "55", "66", "77", "88", "99", "aa", "bb", "cc", "dd", "ee", "ff"); //comportement carre: MovieClip.prototype.carre = function(final) { //initilisation des varibles propre a chaque occurence: //position final en x, que l'on recupere du comportement carre this.x = final; //profondeur (aussi equivalent au numero d'occurence du movieclip) this.level = this.getDepth(); //position final en y this.y = Stage.height/2; //position de depart en x et en y this._x = Math.random()*Stage.width; this._y = Math.random()*Stage.height; //largeur et longueur de depart, que l'on stocke egalement dans this.initt // cette taille et comprise entre 25 et 50 pixel this._width = this._height=this.initt=Math.random()*25+25; //transparence initial this._alpha = 0; //flag focus this.focus = false; //flag retour this.retour = false; //attribution d'une couleur maCouleur = new Color(this); maCouleur.setRGB("0x"+palette[Math.round(Math.random()*15)]+palette[Math.round(Math.random()*15)]+palette[Math.round(Math.random()*tionfinal<=Stage.width) { duplicateMovieClip(_root.carre_mc, "carre"+level+"_mc", level); _root["carre"+level+"_mc"].carre(positionfinal); level++; positionfinal = 30*level; } }; // nettoyage des carres deja present sur la scene nettoyage 15)]); //comportement parcour: //pour amener les movieclip a leur position final (this.x) MovieClip.prototype.parcour = function() { this._x += (this.x-this._x)/10; this._y += (this.y-this._y)/10; this._alpha++; }; //comportement vibre: = function () { if (level != 0) { for (i=0; i<level; i++) { if (_root["carre"+i+"_mc"]) { _root["carre"+i+"_mc"].removeMovieClip(); } } } }; //verification qut tout est a sa place texte_mc.swapDepths(1500); raporteur = new Object(); resize = function () { texte_mc._x = Stage.width/2; texte_mc._y = Stage.height/2; nettoyage(); level = 0; positionfinal = 30*level; }; raporteur.onResize = resize; Stage.addListener(raporteur); //replay carre_mc.onPress = resize; //comportement par defaut,tourne (avec Math.cos et Math.sin) autour //de leur position final (this.x), Math.random ajoute une legere vibration MovieClip.prototype.vibre = function() { this._x = (Math.random()*2)-1+10*Math.cos(t+this.level)+this.x; this._y = (Math.random()*2)-1+10*Math.sin(t+this.level)+this.y; }; //comportement centreetzoom: //ce deplace vers le centre en s'obscurcissant et en croissant MovieClip.prototype.centreetzoom = function() { this._alpha += 2; this._x += (( actionsOOOOpAڃeASymbol 2textec @Symbol 2Id @stage.width/2)-this._x)/10; this._y += ((stage.height/2)-this._y)/10; this._width += (200-this._width)/10; this._height += (200-this._height)/10; if (this._alpha>99) { _root.texte_mc.texte = "carre"+this.level+"_mc"; } }; //comportement retouretdezoom: //ce deplace vers sa position initial (this.x) en s'eclaircissant et en decroissant MovieClip.prototype.retouretdezoom = function() { this._alpha--; this._x += (this.x-this._x)/10; this._y += (this.y-this._y)/10; this._w8 CDocumentPagePage 1 Squence 1Ʒ@pAڃeASymbol 2textec @Symbol 2Id @Symbol 1carre@ Symbole 1pAڃ@>.hhhhh Vector::Template0PropSheet::ActiveTab7641 PublishRNWKProperties::speed256K0!PublishGifProperties::PaletteName"PublishHtmlProperties::StartPaused0%PublishFormatProperties::htmlFileName carre.html PublishQTProperties::LayerOption PublishQTProperties::AlphaOption"PublishQTProperties::MatchMovieDim1PublishHtmlProperties::Loop1Vector::Debugging Permitted0PublishFormatProperties::jpeg0PublishProfileProperties::nameParamtres Flashidth += (this.initt-this._width)/10; this._height += (this.initt-this._height)/10; if (this._alpha<50) { _root.texte_mc.texte = ""; this.retour = false; } }; //enterframe this.onEnterFrame = function() { if (this._alpha<50) { this.parcour(); } else { if (this.focus) { this.centreetzoom(); } else if (this.retour) { this.retouretdezoom(); } else { this.vibre(); } } }; this.onPress = function() { if (this.focus == true) { this.focus = false; this.retour = true; this.swapDepths(this.level); } else { this.focus = true; this.swapDepths(1000); } }; }; //creation de nouvelles occurences: level = 0; t = 0; _root.onEnterFrame = function() { t += 0.1; if (positionfinal<=Stage.width) { duplicateMovieClip(_root.carre_mc, "carre"+level+"_mc", level); _root["carre"+level+"_mc"].carre(positionfinal); level++; positionfinal = 30*level; } }; // nettoyage des carresdeja present sur la scene nettoyage = function () { if (level != 0) { for (i=0; i<level; i++) { if (_root["carre"+i+"_mc"]) { _root["carre"+i+"_mc"].removeMovieClip(); } } } }; //verification qut tout est a sa place texte_mc.swapDepths(1500); raporteur = new Object(); resize = function () { texte_mc._x = Stage.width/2; texte_mc._y = Stage.height/2; nettoyage(); level = 0; positionfinal = 30*level; }; raporteur.onResize = resize; Stage.addListener(raporteur); //replay carre_mc.onPress = resize;  actionsOOOpAڃ)eASymbol 2textec @Symbol 2Id @8 CDocumentPagePage 1 Squence 1Ʒ@pAڃeASymbol 2textec @Symbol 2Id @Symbol 1carre@ Symbole 1pAڃ@>.hhhhh Vector::Template0PropSheet::ActiveTab7641 PublishRNWKProperties::speed256K0!PublishGifProperties::PaletteName"PublishHtmlProperties::StartPaused0%PublishFormatProperties::htmlFileName carre.html PublishQTProperties::LayerOption PublishQTProperties::AlphaOption"PublishQTProperties::MatchMovieDim1PublishHtmlProperties::Loop1Vector::Debugging Permitted0PublishFormatProperties::jpeg0PublishProfileProperties::nameParamtres Flash MX&PublishRNWKProperties::speedSingleISDN0&PublishRNWKProperties::singleRateAudio0PublishQTProperties::Width800$PublishPNGProperties::OptimizeColors1PublishHtmlProperties::Units0Vector::External Player4PublishHtmlProperties::UsingDefaultAlternateFilename1%PublishHtmlProperties::showTagWarnMsg1%PublishRNWKProperties::mediaCopyright(c) 2000#PublishRNWKProperties::flashBitRate1200PublishGifProperties::Smooth1Vector::Compress Movie1&PublishFormatProperties::flashFileName carre.swf%PublishFormatProperties::projectorMac0'PublishFormatProperties::gifDefaultName1Vector::Package Paths!PublishRNWKProperties::exportSMIL1 PublishRNWKProperties::speed384K0"PublishRNWKProperties::exportAudio1"PublishGifProperties::DitherOptionPublishHtmlProperties::Quality4(PublishHtmlProperties::VerticalAlignment0$PublishFormatProperties::pngFileName carre.pngPublishFormatProperties::html1Vector::FireFox0'PublishRNWKProperties::mediaDescription"PublishPNGProperties::FilterOption!PublishHtmlProperties::DeviceFont0Vector::Override Sounds0-PublishFormatProperties::generatorDefaultName1PublishQTProperties::Flatten1PublishJpegProperties::DPI4718592PublishPNGProperties::BitDepth24 bits avec AlphaPublishPNGProperties::Smooth1"PublishGifProperties::DitherSolids0PublishGifProperties::Interlace0"PublishHtmlProperties::DisplayMenu1*PublishHtmlProperties::HorizontalAlignment0Vector::Quality80Vector::Protect0*PublishFormatProperties::generatorFileName carre.swtPublishFormatProperties::gif0(PublishFormatProperties::jpegDefaultName1(PublishFormatProperties::rnwkDefaultName1Vector::Template02PublishHtmlProperties::VersionDetectionIfAvailable0$PublishRNWK MX&PublishRNWKProperties::speedSingleISDN0&PublishRNWKProperties::singleRateAudio0PublishQTProperties::Width800$PublishPNGProperties::OptimizeColors1PublishHtmlProperties::Units0Vector::External Player4PublishHtmlProperties::UsingDefaultAlternateFilename1%PublishHtmlProperties::showTagWarnMsg1%PublishRNWKProperties::mediaCopyright(c) 2000#PublishRNWKProperties::flashBitRate1200PublishGifProperties::Smooth1Vector::Compress Movie1&PublishFormatProperties::flashFileName carre.swf%PublishFormatProperties::projectorMac0'PublishFormatProperties::gifDefaultName1Vector::Package Paths!PublishRNWKProperties::exportSMIL1 PublishRNWKProperties::speed384K0"PublishRNWKProperties::exportAudio1"PublishGifProperties::DitherOptionPublishHtmlProperties::Quality4(PublishHtmlProperties::VerticalAlignment0$PublishFormatProperties::pngFileName carre.pngPublishFormatProperties::html1Vector::FireFox0'PublishRNWKProperties::mediaDescription"PublishPNGProperties::FilterOption!PublishHtmlProperties::DeviceFont0Vector::Override Sounds0-PublishFormatProperties::generatorDefaultName1PublishQTProperties::Flatten1PublishJpegProperties::DPI4718592PublishPNGProperties::BitDepth24 bits avec AlphaPublishPNGProperties::Smooth1"PublishGifProperties::DitherSolids0PublishGifProperties::Interlace0"PublishHtmlProperties::DisplayMenu1*PublishHtmlProperties::HorizontalAlignment0Vector::Quality80Vector::Protect0*PublishFormatProperties::generatorFileName carre.swtPublishFormatProperties::gif0(PublishFormatProperties::jpegDefaultName1(PublishFormatProperties::rnwkDefaultName1Vector::Template02PublishHtmlProperties::VersionDetectionIfAvailable0$PublishRNWKProperties::mediaKeywords!PublishRNWKProperties::mediaTitlePublishRNWKProperties::speed28K1PublishGifProperties::Loop1PublishGifProperties::Width800#PublishFormatProperties::qtFileName carre.mov$PublishRNWKProperties::speedDualISDN0$PublishRNWKProperties::realVideoRate100000PublishJpegProperties::Quality80"PublishPNGProperties::DitherOption#PublishGifProperties::PaletteOption#PublishGifProperties::MatchMovieDim1PublishFormatProperties::flash1$PublishJpegProperties::MatchMovieDim1#PublishPNGProperties::PaletteOption#PublishPNGProperties::MatchMovieDim1PublishHtmlProperties::Align0-PublishFormatProperties::projectorWinFileName carre.exe!PublishProfileProperties::version10PublishFormatProperties::projectorMacDefaultName1'PublishFormatProperties::pngDefaultName1Vector::Package Export Frame1#PublishQTProperties::PlayEveryFrame0"PublishJpegProperties::Progressive0"PublishPNGProperties::DitherSolids0PublishHtmlProperties::Height600PublishHtmlProperties::Width800Vector::Debugging PasswordVector::Omit Trace Actions0%PublishFormatProperties::jpegFileName carre.jpg)PublishFormatProperties::flashDefaultName1PublishJpegProperties::Size0PublishPNGProperties::Interlace0PublishGifProperties::Height600'PublishHtmlProperties::TemplateFileName~C:\Documents and Settings\mechkurt\Local Settings\Application Data\Macromedia\Flash MX 2004\fr\Configuration\Html\Default.html!PublishHtmlProperties::WindowMode0Vector::TopDown0-PublishFormatProperties::projectorMacFileName carre.hqxPublishFormatProperties::rnwk0PublishFormatProperties::png0(PublishFormatProperties::htmlDefaultName1Vector::DeviceSound02PublishHtmlProperties::UsingDefaultContentFilename1PublishRNWKProperties::speed56K1PublishQTProperties::Height600%PublishPNGProperties::RemoveGradients0PublishGifProperties::MaxColors255'PublishGifProperties::TransparentOptionPublishGifProperties::LoopCountVector::Report0"PublishFormatProperties::generator0&PublishHtmlProperties::ContentFilename(PublishHtmlProperties::AlternateFilename+PublishHtmlProperties::OwnAlternateFilename"PublishRNWKProperties::audioFormat0$PublishGifProperties::OptimizeColors1Vector::Version7Vector::Event Format0Vector::Stream Compress7PublishFormatProperties::qt0 PublishRNWKProperties::speed512K0PublishJpegProperties::Height600PublishPNGProperties::Height600PublishPNGProperties::Width800%PublishGifProperties::RemoveGradients0PublishHtmlProperties::Scale0Vector::Event Compress70PublishFormatProperties::projectorWinDefaultName1Vector::ActionScriptVersion2"PublishRNWKProperties::mediaAuthor(PublishRNWKProperties::speedCorporateLAN0&PublishRNWKProperties::showBitrateDlog1"PublishRNWKProperties::exportFlash1PublishQTProperties::Looping0*PublishQTProperties::UseQTSoundCompression0PublishJpegProperties::Width800!PublishPNGProperties::PaletteName!PublishPNGProperties::Transparent0&PublishGifProperties::TransparentAlpha128PublishGifProperties::Animated0Vector::Stream Format0$PublishFormatProperties::gifFileName carre.gif&PublishFormatProperties::qtDefaultName1"PublishHtmlProperties::VersionInfo"PublishQTProperties::PausedAtStart0%PublishQTProperties::ControllerOption0PublishPNGProperties::MaxColors255%PublishFormatProperties::rnwkFileName carre.smil%PublishFormatProperties::projectorWin0%PublishFormatProperties::defaultNames1,PublishHtmlProperties::UsingOwnAlternateFile0 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(xProperties::mediaKeywords!PublishRNWKProperties::mediaTitlePublishRNWKProperties::speed28K1PublishGifProperties::Loop1PublishGifProperties::Width800#PublishFormatProperties::qtFileName carre.mov$PublishRNWKProperties::speedDualISDN0$PublishRNWKProperties::realVideoRate100000PublishJpegProperties::Quality80"PublishPNGProperties::DitherOption#PublishGifProperties::PaletteOption#PublishGifProperties::MatchMovieDim1PublishFormatProperties::flash1$PublishJpegProperties::MatchMovieDim1#PublishPNGProperties::PaletteOption#PublishPNGProperties::MatchMovieDim1PublishHtmlProperties::Align0-PublishFormatProperties::projectorWinFileName carre.exe!PublishProfileProperties::version10PublishFormatProperties::projectorMacDefaultName1'PublishFormatProperties::pngDefaultName1Vector::Package Export Frame1#PublishQTProperties::PlayEveryFrame0"PublishJpegProperties::Progressive0"PublishPNGProperties::DitherSolids0PublishHtmlProperties::Height600PublishHtmlProperties::Width800Vector::Debugging PasswordVector::Omit Trace Actions0%PublishFormatProperties::jpegFileName carre.jpg)PublishFormatProperties::flashDefaultName1PublishJpegProperties::Size0PublishPNGProperties::Interlace0PublishGifProperties::Height600'PublishHtmlProperties::TemplateFileName~C:\Documents and Settings\mechkurt\Local Settings\Application Data\Macromedia\Flash MX 2004\fr\Configuration\Html\Default.html!PublishHtmlProperties::WindowMode0Vector::TopDown0-PublishFormatProperties::projectorMacFileName carre.hqxPublishFormatProperties::rnwk0PublishFormatProperties::png0(PublishFormatProperties::htmlDefaultName1Vector::DeviceSound02PublishHtmlProperties::UsingDefaultContentFilename1PublishRNWKProperties::speed56K1PublishQTProperties::Height600%PublishPNGProperties::RemoveGradients0PublishGifProperties::MaxColors255'PublishGifProperties::TransparentOptionPublishGifProperties::LoopCountVector::Report0"PublishFormatProperties::generator0&PublishHtmlProperties::ContentFilename(PublishHtmlProperties::AlternateFilename+PublishHtmlProperties::OwnAlternateFilename"PublishRNWKProperties::audioFormat0$PublishGifProperties::OptimizeColors1Vector::Version7Vector::Event Format0Vector::Stream Compress7PublishFormatProperties::qt0 PublishRNWKProperties::speed512K0PublishJpegProperties::Height600PublishPNGProperties::Height600PublishPNGProperties::Width800%PublishGifProperties::RemoveGradients0PublishHtmlProperties::Scale0Vector::Event Compress70PublishFormatProperties::projectorWinDefaultName1Vector::ActionScriptVersion2"PublishRNWKProperties::mediaAuthor(PublishRNWKProperties::speedCorporateLAN0&PublishRNWKProperties::showBitrateDlog1"PublishRNWKProperties::exportFlash1PublishQTProperties::Looping0*PublishQTProperties::UseQTSoundCompression0PublishJpegProperties::Width800!PublishPNGProperties::PaletteName!PublishPNGProperties::Transparent0&PublishGifProperties::TransparentAlpha128PublishGifProperties::Animated0Vector::Stream Format0$PublishFormatProperties::gifFileName carre.gif&PublishFormatProperties::qtDefaultName1"PublishHtmlProperties::VersionInfo"PublishQTProperties::PausedAtStart0%PublishQTProperties::ControllerOption0PublishPNGProperties::MaxColors255%PublishFormatProperties::rnwkFileName carre.smil%PublishFormatProperties::projectorWin0%PublishFormatProperties::defaultNames1,PublishHtmlProperties::UsingOwnAlternateFile0 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̙xx3fx3fxx3f̙xx3ff`zf*]"PublishQTProperties::QTSndSettingsCQTAudioSettingsh