╨╧рб▒с>■  ■                                                                                                                                                                                                                                                                                                                                                                                                                                               Root Entry        ■5Є┤ж▄H╖▓┬ZE<ГkpQМHz·╩Contents            N┘fP 1 1274619549    B>S 2 1274619630            U¤           ¤   ■    ■   ■                                                                                                                                                                                                               CDEFGHIJKLM■   OPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuВ                                        Root Entry        ■5Є┤ж▄H╖▓┬ZE<ГkРї<╔z·╩Contents            ┘fP 1 1274619549    МS 2 1274619630            U        ¤            ■   ■   ¤   ■   ■    !"#$%&'()*+,-./0123456789:;<=>?@Av                                                                                                                                                                                                                wxyz{|}~А        ГДЕЖЗИЙКЛМН■                                                                                                                                                                                                                                                                                                                                                                                                                                                                           S 1 1274619560        U                                      CPicPage   CPicLayer   CPicFrameААоооЧ  sАА ╨°▀00щ0 0╨&   ?   ■ p ■  ■ АА  ■ Layer 1    O O АА  CPicPage   CPicLayer   CPicFrameААВ█┐Ч  sАА╕H■0и0╕0X¤&   ?   ■ Ц ■  ■ АА  ■ Layer 1    O O АА  CPicPage   CPicLayer   CPicFrame   CPicSprite.>ОД ░     ■ А?А?А?А?. E ■  ■  resize_mc ■ Д<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='1'> </component> А^╓┤h     ■ А?А?А?А?^╓" ■  ■  newtext01_txt ■ Д<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='2'> </component> АА&   ?   ■ ╗f ■  Yresize_mc.x=newtext01_txt.x+newtext01_txt.width+10; resize_mc.y=newtext01_txt.y+newtext01_txt.height+10; var startX:int=resize_mc.x; var startY:int=resize_mc.y; var stopX:int; var stopY:int; resize_mc.addEventListener(MouseEvent.MOUSE_DOWN, MouseDownResize); resize_mc.addEventListener(MouseEvent.MOUSE_UP, MouseUpResize); function MouseDownResize(e:MouseEvent):void { startX=resize_mc.x; startY=resize_mc.y; resize_mc.startDrag(); } function MouseUpResize(e:MouseEvent):void { resize_mc.stopDrag(); stopX=resize_mc.x; stopY=resize_mc.y; var changeX:int=stopX-startX; var changeY:int=stopY-startY; newtext01_txt.width=newtext01_txt.width+changeX; newtext01_txt.height=newtext01_txt.height+changeY; resize_mc.x=newtext01_txt.x+newtext01_txt.width+10; resize_mc.y=newtext01_txt.y+newtext01_txt.height+10; } ■ АА  ■ Layer 1    O O АА■    ■                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   БО                                                ПРС■                                                                                                                                                                                                                                                                                                                                                                                                                                                           S 1 1274619560        U                                      CPicPage   CPicLayer   CPicFrame   CPicSprite^╓┤h     ■ А?А?А?А?^╓" ■  ■  newtext01_txt ■ Д<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='2'> </component> АА&   ?   ■ ╗f ■  Rresize_mc.x = newtext01_txt.x + newtext01_txt.width + 10; resize_mc.y = newtext01_txt.y + newtext01_txt.height + 10; var startX:int = resize_mc.x; var startY:int = resize_mc.y; var stopX:int; var stopY:int; var beginningWidth:int; var beginningHeight:int; resize_mc.addEventListener(MouseEvent.MOUSE_DOWN, MouseDownResize) resize_mc.addEventListener(MouseEvent.MOUSE_UP, MouseUpResize) function MouseDownResize (e:MouseEvent):void { startX = resize_mc.x; startY = resize_mc.y; beginningWidth = newtext01_txt.width; beginningHeight = newtext01_txt.height; resize_mc.addEventListener(MouseEvent.MOUSE_MOVE, MouseMoveResize); resize_mc.startDrag(); } function MouseMoveResize (e:MouseEvent):void { stopX = resize_mc.x; stopY = resize_mc.y; var changeX:int = stopX - startX; var changeY:int = stopY - startY; trace(changeX, changeY); newtext01_txt.width = beginningWidth + changeX; newtext01_txt.height = beginningHeight + changeY; } function MouseUpResize (e:MouseEvent):void { resize_mc.stopDrag(); resize_mc.removeEventListener(MouseEvent.MOUSE_MOVE, MouseMoveResize); //MouseMoveResize(null); resize_mc.x = newtext01_txt.x + newtext01_txt.width + 10; resize_mc.y = newtext01_txt.y + newtext01_txt.height + 10; } ■ АА  ■ image    O O ААА м>Оd H     ■ А?А?А?А? мЮ: ■  ■  resize_mc ■ Д<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3'> </component> АА&   ?   ■ Ў; ■  ■ АА  ■  resizebtn    Щ3╠ АААА&   ?   ■ O1 ■  ■ АА  ■ script     А  АААА&   ?   ■ ^ ■  var imageLoader:Loader; function loadImage(url:String):void { // Set properties on my Loader object imageLoader = new Loader(); imageLoader.load(new URLRequest(url)); imageLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, imageLoading); imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, imageLoaded); } loadImage("http://copper.msu.ac.th/ulibdev/_tmp/logo/_weblogo.png"); function imageLoaded(e:Event):void { // Load Image this.newtext01_txt.addChild(imageLoader); resize_mc.x = newtext01_txt.x + newtext01_txt.width + 10; resize_mc.y = newtext01_txt.y + newtext01_txt.height + 10; } function imageLoading(e:ProgressEvent):void { // Use it to get current download progress // Hint: You could tie the values to a preloader :) } ■ АА  ■  scriptloadimg     O  АА %PublishFormatProperties::htmlFileName ■ Untitled-1.html ■  PublishQTProperties::LayerOption ■  ■  PublishQTProperties::AlphaOption ■  ■ "PublishQTProperties::MatchMovieDim ■ 1 ■ Vector::UseNetworkG   CDocumentPageP 1 1274619549 ■ Scene 1 ■ Э&∙K ■  ■  ■  ■  ■      ■ B+∙K ■  ■  ■  ■  ■  ■  ■      ■  ■  ■  ■  ■  ■  ■  ■  ■  ■  ■  ■ АААААS 2 1274619630 ■ Symbol 2 ■ ю&∙K# ■  ■  ■  ■  ■ Symbol 2     ■ ю&∙K ■  ■  ■  ■  ■  ■  ■      ■  ■  ■  ■  ■  ■  ■  ■  ■  ■  ■  ■ АААААS 1 1274619560 ■ Symbol 1 ■ и&∙K ■  ■  ■  ■  ■ Symbol 1     ■ и&∙K ■  ■  ■  ■  ■  ■  ■      ■  ■  ■  ■  ■  ■  ■  ■  ■  ■  ■  ■ АААА°*@╚Нhhhh    ФФФ ┤ ■ legacyLineSpacing ■ 0ж ■ !PublishGifProperties::PaletteName ■  ■  PublishRNWKProperties::speed256K ■ 0 ■ Vector::AS3 Package Paths ■ . ■ "PublishHtmlProperties::StartPaused ■ 0 ■ %PublishFormatProperties::htmlFileName ■ Untitled-1.html ■  PublishQTProperties::LayerOption ■  ■  PublishQTProperties::AlphaOption ■  ■ "PublishQTProperties::MatchMovieDim ■ 1 ■ Vector::UseNetwork ■ 0 ■ Vector::Debugging Permitted ■ 0 ■ Vector::AS3 Library Paths ■ "$(AppConfig)/ActionScript 3.0/libs ■ PublishProfileProperties::name ■ Default ■ PublishHtmlProperties::Loop ■ 1 ■ PublishFormatProperties::jpeg ■ 0 ■ PublishQTProperties::Width ■ 550 ■ $PublishPNGProperties::OptimizeColors ■ 1 ■ &PublishRNWKProperties::speedSingleISDN ■ 0 ■ &PublishRNWKProperties::singleRateAudio ■ 0 ■ Vector::DocumentClass ■  ■ Vector::External Player ■  FlashPlayer10 ■ %PublishHtmlProperties::showTagWarnMsg ■ 1 ■ 'PublishHtmlProperties::DeblockingFilter ■ 0 ■ PublishHtmlProperties::Units ■ 0 ■ 4PublishHtmlProperties::UsingDefaultAlternateFilename ■ 1 ■ PublishGifProperties::Smooth ■ 1 ■ %PublishRNWKProperties::mediaCopyright ■ (c) 2000 ■ #PublishRNWKProperties::flashBitRate ■ 1200 ■ Vector::ScriptStuckDelay ■ 15 ■ Vector::Compress Movie ■ 1 ■ Vector::Package Paths ■  ■ &PublishFormatProperties::flashFileName ■ Untitled-1.swf ■ 'PublishFormatProperties::gifDefaultName ■ 1 ■ %PublishFormatProperties::projectorMac ■ 0 ■ "PublishGifProperties::DitherOption ■  ■ !PublishRNWKProperties::exportSMIL ■ 1 ■  PublishRNWKProperties::speed384K ■ 0 ■ "PublishRNWKProperties::exportAudio ■ 1 ■ Vector::AS3ExportFrame ■ 1 ■ Vector::Invisible Layer ■ 1 ■ PublishHtmlProperties::Quality ■ 4 ■ (PublishHtmlProperties::VerticalAlignment ■ 1 ■ $PublishFormatProperties::pngFileName ■ Untitled-1.png ■ PublishFormatProperties::html ■ 1 ■ "PublishPNGProperties::FilterOption ■  ■ 'PublishRNWKProperties::mediaDescription ■  ■ Vector::Override Sounds ■ 0 ■ !PublishHtmlProperties::DeviceFont ■ 0 ■ -PublishFormatProperties::generatorDefaultName ■ 1 ■ PublishQTProperties::Flatten ■ 1 ■ PublishPNGProperties::BitDepth ■ 24-bit with Alpha ■ PublishPNGProperties::Smooth ■ 1 ■ "PublishGifProperties::DitherSolids ■ 0 ■ PublishGifProperties::Interlace ■ 0 ■ PublishJpegProperties::DPI ■ 4718592 ■ Vector::Quality ■ 80 ■ Vector::Protect ■ 0 ■ "PublishHtmlProperties::DisplayMenu ■ 1 ■ *PublishHtmlProperties::HorizontalAlignment ■ 1 ■ 2PublishHtmlProperties::VersionDetectionIfAvailable ■ 0 ■ Vector::Template ■ 0 ■ *PublishFormatProperties::generatorFileName ■ Untitled-1.swt ■ (PublishFormatProperties::rnwkDefaultName ■ 1 ■ (PublishFormatProperties::jpegDefaultName ■ 1 ■ PublishFormatProperties::gif ■ 0 ■ PublishGifProperties::Loop ■ 1 ■ PublishGifProperties::Width ■ 550 ■ $PublishRNWKProperties::mediaKeywords ■  ■ !PublishRNWKProperties::mediaTitle ■  ■ PublishRNWKProperties::speed28K ■ 1 ■ #PublishFormatProperties::qtFileName ■ Untitled-1.mov ■ "PublishPNGProperties::DitherOption ■  ■ #PublishGifProperties::PaletteOption ■  ■ #PublishGifProperties::MatchMovieDim ■ 1 ■ $PublishRNWKProperties::speedDualISDN ■ 0 ■ $PublishRNWKProperties::realVideoRate ■ 100000 ■ PublishJpegProperties::Quality ■ 80 ■ Vector::IncludeXMP ■ 1 ■ PublishFormatProperties::flash ■ 1 ■ #PublishPNGProperties::PaletteOption ■  ■ #PublishPNGProperties::MatchMovieDim ■ 1 ■ $PublishJpegProperties::MatchMovieDim ■ 1 ■ Vector::Package Export Frame ■ 1 ■ !PublishProfileProperties::version ■ 1 ■ PublishHtmlProperties::Align ■ 0 ■ -PublishFormatProperties::projectorWinFileName ■ Untitled-1.exe ■ 'PublishFormatProperties::pngDefaultName ■ 1 ■ 0PublishFormatProperties::projectorMacDefaultName ■ 1 ■ #PublishQTProperties::PlayEveryFrame ■ 0 ■ "PublishPNGProperties::DitherSolids ■ 0 ■ "PublishJpegProperties::Progressive ■ 0 ■ Vector::Export Swc ■ 0 ■ Vector::Debugging Password ■  ■ Vector::Omit Trace Actions ■ 0 ■ PublishHtmlProperties::Height ■ 400 ■ PublishHtmlProperties::Width ■ 550 ■ %PublishFormatProperties::jpegFileName ■ Untitled-1.jpg ■ )PublishFormatProperties::flashDefaultName ■ 1 ■ PublishPNGProperties::Interlace ■ 0 ■ PublishGifProperties::Height ■ 400 ■ PublishJpegProperties::Size ■ 0 ■ Vector::UseAS3Namespace ■ 1 ■ Vector::AS3AutoDeclare ■ 1 ■ Vector::AS3Coach ■ 1 ■ Vector::DeviceSound ■ 0 ■ 'PublishHtmlProperties::TemplateFileName ■  Default.html ■ !PublishHtmlProperties::WindowMode ■ 0 ■ 2PublishHtmlProperties::UsingDefaultContentFilename ■ 1 ■ -PublishFormatProperties::projectorMacFileName ■ Untitled-1.app ■ (PublishFormatProperties::htmlDefaultName ■ 1 ■ PublishFormatProperties::rnwk ■ 0 ■ PublishFormatProperties::png ■ 0 ■ PublishQTProperties::Height ■ 400 ■ %PublishPNGProperties::RemoveGradients ■ 0 ■ PublishGifProperties::MaxColors ■ 255 ■ 'PublishGifProperties::TransparentOption ■  ■ PublishGifProperties::LoopCount ■  ■ PublishRNWKProperties::speed56K ■ 1 ■ Vector::Report ■ 0 ■ +PublishHtmlProperties::OwnAlternateFilename ■  ■ (PublishHtmlProperties::AlternateFilename ■  ■ &PublishHtmlProperties::ContentFilename ■  ■ "PublishFormatProperties::generator ■ 0 ■ $PublishGifProperties::OptimizeColors ■ 1 ■ "PublishRNWKProperties::audioFormat ■ 0 ■ Vector::HardwareAcceleration ■ 0 ■ Vector::AS3Strict ■ 1 ■ "Vector::AS3 External Library Paths ■ . ■ Vector::Version ■ 10 ■ Vector::Event Format ■ 0 ■ Vector::Stream Compress ■ 7 ■ PublishFormatProperties::qt ■ 0 ■ PublishPNGProperties::Height ■ 400 ■ PublishPNGProperties::Width ■ 550 ■ %PublishGifProperties::RemoveGradients ■ 0 ■  PublishRNWKProperties::speed512K ■ 0 ■ PublishJpegProperties::Height ■ 400 ■ Vector::EventUse8kSampleRate ■ 0 ■ Vector::StreamUse8kSampleRate ■ 0 ■ Vector::ActionScriptVersion ■ 3 ■ Vector::Event Compress ■ 7 ■ PublishHtmlProperties::Scale ■ 0 ■ 0PublishFormatProperties::projectorWinDefaultName ■ 1 ■ PublishQTProperties::Looping ■ 0 ■ *PublishQTProperties::UseQTSoundCompression ■ 0 ■ !PublishPNGProperties::PaletteName ■  ■ !PublishPNGProperties::Transparent ■ 0 ■ &PublishGifProperties::TransparentAlpha ■ 128 ■ PublishGifProperties::Animated ■ 0 ■ "PublishRNWKProperties::mediaAuthor ■  ■ (PublishRNWKProperties::speedCorporateLAN ■ 0 ■ &PublishRNWKProperties::showBitrateDlog ■ 1 ■ "PublishRNWKProperties::exportFlash ■ 1 ■ PublishJpegProperties::Width ■ 550 ■ Vector::Stream Format ■ 0 ■ Vector::DeblockingFilter ■ 0 ■ "PublishHtmlProperties::VersionInfo ■ Y10,0,2,0;9,0,124,0;8,0,24,0;7,0,14,0;6,0,79,0;5,0,58,0;4,0,32,0;3,0,8,0;2,0,1,12;1,0,0,1; ■ $PublishFormatProperties::gifFileName ■ Untitled-1.gif ■ &PublishFormatProperties::qtDefaultName ■ 1 ■ "PublishQTProperties::PausedAtStart ■ 0 ■ %PublishQTProperties::ControllerOption ■ 0 ■ PublishPNGProperties::MaxColors ■ 255 ■ Vector::AS3 Config Const ■ CONFIG::FLASH_AUTHORING="true"; ■ ,PublishHtmlProperties::UsingOwnAlternateFile ■ 0 ■ %PublishFormatProperties::rnwkFileName ■ Untitled-1.smil ■ %PublishFormatProperties::projectorWin ■ 0 ■ %PublishFormatProperties::defaultNames ■ 1     ■  ■ №   CColorDef А А А А3 PяАf Pя0АЩ PяHА╠ Pя`А  PяxА3 яА33 (яА3f <я0А3Щ CяHА3╠ Fя`А3  HяxАf я0Аf3 я0Аff (я0АfЩ 5яHАf╠ <я`Аf  @яxА А333 0А А3 аяА33 xяАf3 dя0АЩ3 ]яHА╠3 Zя`А 3 XяxА33 ╚яА333 0А3f3 PPHА3Щ3 Px`А3╠3 PРxА3 3 PяРАf3 ▄я0Аf33 PHАff3 (PHАfЩ3 <x`Аf╠3 CРxАf 3 FяРА Аfff `А Аf ая0А3f Мя0Аff xя0АЩf kяHА╠f dя`А f `яxА3f ┤я0А33f аPHА3ff xPHА3Щf dx`А3╠f ]РxА3 f ZяРАff ╚я0Аf3f ╚PHАfff `АfЩf P0xАf╠f PxРАf f PяиА АЩЩЩ РА АЩ аяHА3Щ УяHАfЩ ЕяHАЩЩ xяHА╠Щ nя`А Щ hяxА3Щ няHА33Щ аx`А3fЩ Мx`А3ЩЩ xx`А3╠Щ kРxА3 Щ dяРАfЩ ╗яHАf3Щ ┤x`АffЩ а0xАfЩЩ x0xАf╠Щ dxРАf Щ ]яиА А╠╠╠ └А А╠ ая`А3╠ Ця`Аf╠ Мя`АЩ╠ Вя`А╠╠ xя`А ╠ pяxА3╠ кя`А33╠ аРxА3f╠ УРxА3Щ╠ ЕРxА3╠╠ xРxА3 ╠ nяРАf╠ ┤я`Аf3╠ нРxАff╠ аxРАfЩ╠ МxРАf╠╠ xxРАf ╠ kяиА А    ЁА А  аяxА3  ШяxАf  РяxАЩ  ИяxА╠  АяxА   xяxА3  ияxА33  аяРА3f  ЦяРА3Щ  МяРА3╠  ВяРА3   xяРАf  ░яxАf3  кяРАff  аяиАfЩ  УяиАf╠  ЕяиАf   xяиА А  яxА АЩ яHАЩ3  яHАЩf яHАЩЩ (яHАЩ╠ 2я`АЩ  8яxА╠ я`А╠3  я`А╠f я`А╠Щ я`А╠╠ (я`А╠  0яxА  яxА 3 яxА f яxА Щ яxА ╠  яxА   (яxА А  PяxА АЩ3 уяHАЩ33 x`АЩf3 x`АЩЩ3 (x`АЩ╠3 5РxАЩ 3 <яРА╠3 ця`А╠33 РxА╠f3  РxА╠Щ3 РxА╠╠3 (РxА╠ 3 2яРА 3 шяxА 33 яРА f3  яРА Щ3 яРА ╠3 яРА  3 (яРА А  аяxА АЩf ╒яHАЩ3f ▄x`АЩff 0xАЩЩf (0xАЩ╠f <xРАЩ f CяиА╠f ▄я`А╠3f уРxА╠ff xРА╠Щf xРА╠╠f (xРА╠ f 5яиА f ряxА 3f цяРА ff яиА Щf  яиА ╠f яиА  f (яиА А   (яxА АЩЩ ╚яHАЩ3Щ ╚x`АЩfЩ ╚0xАЩЩЩ РАЩ╠Щ PPиАЩ Щ Pя└А╠Щ ╥я`А╠3Щ ╒РxА╠fЩ ▄xРА╠ЩЩ PиА╠╠Щ (PиА╠ Щ <я└А Щ ╪яxА 3Щ ▄яРА fЩ уяиА ЩЩ я└А ╠Щ я└А  Щ (я└А А   xяxА АЩ╠ ╛я`АЩ3╠ ╗РxАЩf╠ ┤xРАЩЩ╠ аPиАЩ╠╠ xPиАЩ ╠ dя└А╠╠ ╚я`А╠3╠ ╚РxА╠f╠ ╚xРА╠Щ╠ ╚PиА╠╠╠ └А╠ ╠ Pя╪А ╠ ╨яxА 3╠ ╥яРА f╠ ╒яиА Щ╠ ▄я└А ╠╠ я╪А  ╠ (я╪А А   ╚яxА АЩ  ╕яxАЩ3  ┤яРАЩf  няиАЩЩ  ая└АЩ╠  Мя└АЩ   xя└А╠  └яxА╠3  ╛яРА╠f  ╗яиА╠Щ  ┤я└А╠╠  ая╪А╠   xя╪А   ╚яxА 3  ╚яРА f  ╚яиА Щ  ╚я└А ╠  ╚я╪А    ЁА       А       А     А     А     А   CPicPage   CPicLayer   CPicFrame   CPicSprite^╓┤h     ■ А?А?А?А?^╓" ■  ■  newtext01_txt ■ Д<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='2'> </component> АА&   ?   ■ ╗f ■  Rresize_mc.x = newtext01_txt.x + newtext01_txt.width + 10; resize_mc.y = newtext01_txt.y + newtext01_txt.height + 10; var startX:int = resize_mc.x; var startY:int = resize_mc.y; var stopX:int; var stopY:int; var beginningWidth:int; var beginningHeight:int; resize_mc.addEventListener(MouseEvent.MOUSE_DOWN, MouseDownResize) resize_mc.addEventListener(MouseEvent.MOUSE_UP, MouseUpResize) function MouseDownResize (e:MouseEvent):void { startX = resize_mc.x; startY = resize_mc.y; beginningWidth = newtext01_txt.width; beginningHeight = newtext01_txt.height; resize_mc.addEventListener(MouseEvent.MOUSE_MOVE, MouseMoveResize); resize_mc.startDrag(); } function MouseMoveResize (e:MouseEvent):void { stopX = resize_mc.x; stopY = resize_mc.y; var changeX:int = stopX - startX; var changeY:int = stopY - startY; trace(changeX, changeY); newtext01_txt.width = beginningWidth + changeX; newtext01_txt.height = beginningHeight + changeY; } function MouseUpResize (e:MouseEvent):void { resize_mc.stopDrag(); resize_mc.removeEventListener(MouseEvent.MOUSE_MOVE, MouseMoveResize); //MouseMoveResize(null); resize_mc.x = newtext01_txt.x + newtext01_txt.width + 10; resize_mc.y = newtext01_txt.y + newtext01_txt.height + 10; } ■ АА  ■ image    O O ААА м>Оd H     ■ А?А?А?А? мЮ: ■  ■  resize_mc ■ Д<component metaDataFetched='true' schemaUrl='' schemaOperation='' sceneRootLabel='Scene 1' oldCopiedComponentPath='3'> </component> АА&   ?   ■ Ў; ■  ■ АА  ■  resizebtn    Щ3╠ АААА&   ?   ■ O1 ■  ■ АА  ■ script     А  АААА&   ?   ■ ^ ■  gvar imageLoader:Loader; function loadImage(url:String):void { // Set properties on my Loader object imageLoader = new Loader(); imageLoader.load(new URLRequest(url)); imageLoader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, imageLoading); imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, imageLoaded); } loadImage("pixelHouses.jpg"); function imageLoaded(e:Event):void { // Load Image imageArea.addChild(imageLoader); } function imageLoading(e:ProgressEvent):void { // Use it to get current download progress // Hint: You could tie the values to a preloader :) } ■ АА  ■  scriptloadimg     O  ААplate ■ 0 ■ *PublishFormatProperties::generatorFileName ■ Untitled-1.swt ■ (PublishFormatProperties::rnG   CDocumentPageP 1 1274619549 ■ Scene 1 ■ Э&∙K ■  ■  ■  ■  ■      ■ т*∙K ■  ■  ■  ■  ■  ■  ■      ■  ■  ■  ■  ■  ■  ■  ■  ■  ■  ■  ■ АААААS 2 1274619630 ■ Symbol 2 ■ ю&∙K# ■  ■  ■  ■  ■ Symbol 2     ■ ю&∙K ■  ■  ■  ■  ■  ■  ■      ■  ■  ■  ■  ■  ■  ■  ■  ■  ■  ■  ■ АААААS 1 1274619560 ■ Symbol 1 ■ и&∙K ■  ■  ■  ■  ■ Symbol 1     ■ и&∙K ■  ■  ■  ■  ■  ■  ■      ■  ■  ■  ■  ■  ■  ■  ■  ■  ■  ■  ■ АААА°*@╚Нhhhh    ФФФ ┤ ■ legacyLineSpacing ■ 0ж ■ !PublishGifProperties::PaletteName ■  ■  PublishRNWKProperties::speed256K ■ 0 ■ Vector::AS3 Package Paths ■ . ■ "PublishHtmlProperties::StartPaused ■ 0 ■ %PublishFormatProperties::htmlFileName ■ Untitled-1.html ■  PublishQTProperties::LayerOption ■  ■  PublishQTProperties::AlphaOption ■  ■ "PublishQTProperties::MatchMovieDim ■ 1 ■ Vector::UseNetwork ■ 0 ■ Vector::Debugging Permitted ■ 0 ■ Vector::AS3 Library Paths ■ "$(AppConfig)/ActionScript 3.0/libs ■ PublishProfileProperties::name ■ Default ■ PublishHtmlProperties::Loop ■ 1 ■ PublishFormatProperties::jpeg ■ 0 ■ PublishQTProperties::Width ■ 550 ■ $PublishPNGProperties::OptimizeColors ■ 1 ■ &PublishRNWKProperties::speedSingleISDN ■ 0 ■ &PublishRNWKProperties::singleRateAudio ■ 0 ■ Vector::DocumentClass ■  ■ Vector::External Player ■  FlashPlayer10 ■ %PublishHtmlProperties::showTagWarnMsg ■ 1 ■ 'PublishHtmlProperties::DeblockingFilter ■ 0 ■ PublishHtmlProperties::Units ■ 0 ■ 4PublishHtmlProperties::UsingDefaultAlternateFilename ■ 1 ■ PublishGifProperties::Smooth ■ 1 ■ %PublishRNWKProperties::mediaCopyright ■ (c) 2000 ■ #PublishRNWKProperties::flashBitRate ■ 1200 ■ Vector::ScriptStuckDelay ■ 15 ■ Vector::Compress Movie ■ 1 ■ Vector::Package Paths ■  ■ &PublishFormatProperties::flashFileName ■ Untitled-1.swf ■ 'PublishFormatProperties::gifDefaultName ■ 1 ■ %PublishFormatProperties::projectorMac ■ 0 ■ "PublishGifProperties::DitherOption ■  ■ !PublishRNWKProperties::exportSMIL ■ 1 ■  PublishRNWKProperties::speed384K ■ 0 ■ "PublishRNWKProperties::exportAudio ■ 1 ■ Vector::AS3ExportFrame ■ 1 ■ Vector::Invisible Layer ■ 1 ■ PublishHtmlProperties::Quality ■ 4 ■ (PublishHtmlProperties::VerticalAlignment ■ 1 ■ $PublishFormatProperties::pngFileName ■ Untitled-1.png ■ PublishFormatProperties::html ■ 1 ■ "PublishPNGProperties::FilterOption ■  ■ 'PublishRNWKProperties::mediaDescription ■  ■ Vector::Override Sounds ■ 0 ■ !PublishHtmlProperties::DeviceFont ■ 0 ■ -PublishFormatProperties::generatorDefaultName ■ 1 ■ PublishQTProperties::Flatten ■ 1 ■ PublishPNGProperties::BitDepth ■ 24-bit with Alpha ■ PublishPNGProperties::Smooth ■ 1 ■ "PublishGifProperties::DitherSolids ■ 0 ■ PublishGifProperties::Interlace ■ 0 ■ PublishJpegProperties::DPI ■ 4718592 ■ Vector::Quality ■ 80 ■ Vector::Protect ■ 0 ■ "PublishHtmlProperties::DisplayMenu ■ 1 ■ *PublishHtmlProperties::HorizontalAlignment ■ 1 ■ 2PublishHtmlProperties::VersionDetectionIfAvailable ■ 0 ■ Vector::Template ■ 0 ■ *PublishFormatProperties::generatorFileName ■ Untitled-1.swt ■ (PublishFormatProperties::rnwkDefaultName ■ 1 ■ (PublishFormatProperties::jpegDefaultName ■ 1 ■ PublishFormatProperties::gif ■ 0 ■ PublishGifProperties::Loop ■ 1 ■ PublishGifProperties::Width ■ 550 ■ $PublishRNWKProperties::mediaKeywords ■  ■ !PublishRNWKProperties::mediaTitle ■  ■ PublishRNWKProperties::speed28K ■ 1 ■ #PublishFormatProperties::qtFileName ■ Untitled-1.mov ■ "PublishPNGProperties::DitherOption ■  ■ #PublishGifProperties::PaletteOption ■  ■ #PublishGifProperties::MatchMovieDim ■ 1 ■ $PublishRNWKProperties::speedDualISDN ■ 0 ■ $PublishRNWKProperties::realVideoRate ■ 100000 ■ PublishJpegProperties::Quality ■ 80 ■ Vector::IncludeXMP ■ 1 ■ PublishFormatProperties::flash ■ 1 ■ #PublishPNGProperties::PaletteOption ■  ■ #PublishPNGProperties::MatchMovieDim ■ 1 ■ $PublishJpegProperties::MatchMovieDim ■ 1 ■ Vector::Package Export Frame ■ 1 ■ !PublishProfileProperties::version ■ 1 ■ PublishHtmlProperties::Align ■ 0 ■ -PublishFormatProperties::projectorWinFileName ■ Untitled-1.exe ■ 'PublishFormatProperties::pngDefaultName ■ 1 ■ 0PublishFormatProperties::projectorMacDefaultName ■ 1 ■ #PublishQTProperties::PlayEveryFrame ■ 0 ■ "PublishPNGProperties::DitherSolids ■ 0 ■ "PublishJpegProperties::Progressive ■ 0 ■ Vector::Export Swc ■ 0 ■ Vector::Debugging Password ■  ■ Vector::Omit Trace Actions ■ 0 ■ PublishHtmlProperties::Height ■ 400 ■ PublishHtmlProperties::Width ■ 550 ■ %PublishFormatProperties::jpegFileName ■ Untitled-1.jpg ■ )PublishFormatProperties::flashDefaultName ■ 1 ■ PublishPNGProperties::Interlace ■ 0 ■ PublishGifProperties::Height ■ 400 ■ PublishJpegProperties::Size ■ 0 ■ Vector::UseAS3Namespace ■ 1 ■ Vector::AS3AutoDeclare ■ 1 ■ Vector::AS3Coach ■ 1 ■ Vector::DeviceSound ■ 0 ■ 'PublishHtmlProperties::TemplateFileName ■  Default.html ■ !PublishHtmlProperties::WindowMode ■ 0 ■ 2PublishHtmlProperties::UsingDefaultContentFilename ■ 1 ■ -PublishFormatProperties::projectorMacFileName ■ Untitled-1.app ■ (PublishFormatProperties::htmlDefaultName ■ 1 ■ PublishFormatProperties::rnwk ■ 0 ■ PublishFormatProperties::png ■ 0 ■ PublishQTProperties::Height ■ 400 ■ %PublishPNGProperties::RemoveGradients ■ 0 ■ PublishGifProperties::MaxColors ■ 255 ■ 'PublishGifProperties::TransparentOption ■  ■ PublishGifProperties::LoopCount ■  ■ PublishRNWKProperties::speed56K ■ 1 ■ Vector::Report ■ 0 ■ +PublishHtmlProperties::OwnAlternateFilename ■  ■ (PublishHtmlProperties::AlternateFilename ■  ■ &PublishHtmlProperties::ContentFilename ■  ■ "PublishFormatProperties::generator ■ 0 ■ $PublishGifProperties::OptimizeColors ■ 1 ■ "PublishRNWKProperties::audioFormat ■ 0 ■ Vector::HardwareAcceleration ■ 0 ■ Vector::AS3Strict ■ 1 ■ "Vector::AS3 External Library Paths ■ . ■ Vector::Version ■ 10 ■ Vector::Event Format ■ 0 ■ Vector::Stream Compress ■ 7 ■ PublishFormatProperties::qt ■ 0 ■ PublishPNGProperties::Height ■ 400 ■ PublishPNGProperties::Width ■ 550 ■ %PublishGifProperties::RemoveGradients ■ 0 ■  PublishRNWKProperties::speed512K ■ 0 ■ PublishJpegProperties::Height ■ 400 ■ Vector::EventUse8kSampleRate ■ 0 ■ Vector::StreamUse8kSampleRate ■ 0 ■ Vector::ActionScriptVersion ■ 3 ■ Vector::Event Compress ■ 7 ■ PublishHtmlProperties::Scale ■ 0 ■ 0PublishFormatProperties::projectorWinDefaultName ■ 1 ■ PublishQTProperties::Looping ■ 0 ■ *PublishQTProperties::UseQTSoundCompression ■ 0 ■ !PublishPNGProperties::PaletteName ■  ■ !PublishPNGProperties::Transparent ■ 0 ■ &PublishGifProperties::TransparentAlpha ■ 128 ■ PublishGifProperties::Animated ■ 0 ■ "PublishRNWKProperties::mediaAuthor ■  ■ (PublishRNWKProperties::speedCorporateLAN ■ 0 ■ &PublishRNWKProperties::showBitrateDlog ■ 1 ■ "PublishRNWKProperties::exportFlash ■ 1 ■ PublishJpegProperties::Width ■ 550 ■ Vector::Stream Format ■ 0 ■ Vector::DeblockingFilter ■ 0 ■ "PublishHtmlProperties::VersionInfo ■ Y10,0,2,0;9,0,124,0;8,0,24,0;7,0,14,0;6,0,79,0;5,0,58,0;4,0,32,0;3,0,8,0;2,0,1,12;1,0,0,1; ■ $PublishFormatProperties::gifFileName ■ Untitled-1.gif ■ &PublishFormatProperties::qtDefaultName ■ 1 ■ "PublishQTProperties::PausedAtStart ■ 0 ■ %PublishQTProperties::ControllerOption ■ 0 ■ PublishPNGProperties::MaxColors ■ 255 ■ Vector::AS3 Config Const ■ CONFIG::FLASH_AUTHORING="true"; ■ ,PublishHtmlProperties::UsingOwnAlternateFile ■ 0 ■ %PublishFormatProperties::rnwkFileName ■ Untitled-1.smil ■ %PublishFormatProperties::projectorWin ■ 0 ■ %PublishFormatProperties::defaultNames ■ 1     ■  ■ №   CColorDef А А А А3 PяАf Pя0АЩ PяHА╠ Pя`А  PяxА3 яА33 (яА3f <я0А3Щ CяHА3╠ Fя`А3  HяxАf я0Аf3 я0Аff (я0АfЩ 5яHАf╠ <я`Аf  @яxА А333 0А А3 аяА33 xяАf3 dя0АЩ3 ]яHА╠3 Zя`А 3 XяxА33 ╚яА333 0А3f3 PPHА3Щ3 Px`А3╠3 PРxА3 3 PяРАf3 ▄я0Аf33 PHАff3 (PHАfЩ3 <x`Аf╠3 CРxАf 3 FяРА Аfff `А Аf ая0А3f Мя0Аff xя0АЩf kяHА╠f dя`А f `яxА3f ┤я0А33f аPHА3ff xPHА3Щf dx`А3╠f ]РxА3 f ZяРАff ╚я0Аf3f ╚PHАfff `АfЩf P0xАf╠f PxРАf f PяиА АЩЩЩ РА АЩ аяHА3Щ УяHАfЩ ЕяHАЩЩ xяHА╠Щ nя`А Щ hяxА3Щ няHА33Щ аx`А3fЩ Мx`А3ЩЩ xx`А3╠Щ kРxА3 Щ dяРАfЩ ╗яHАf3Щ ┤x`АffЩ а0xАfЩЩ x0xАf╠Щ dxРАf Щ ]яиА А╠╠╠ └А А╠ ая`А3╠ Ця`Аf╠ Мя`АЩ╠ Вя`А╠╠ xя`А ╠ pяxА3╠ кя`А33╠ аРxА3f╠ УРxА3Щ╠ ЕРxА3╠╠ xРxА3 ╠ nяРАf╠ ┤я`Аf3╠ нРxАff╠ аxРАfЩ╠ МxРАf╠╠ xxРАf ╠ kяиА А    ЁА А  аяxА3  ШяxАf  РяxАЩ  ИяxА╠  АяxА   xяxА3  ияxА33  аяРА3f  ЦяРА3Щ  МяРА3╠  ВяРА3   xяРАf  ░яxАf3  кяРАff  аяиАfЩ  УяиАf╠  ЕяиАf   xяиА А  яxА АЩ яHАЩ3  яHАЩf яHАЩЩ (яHАЩ╠ 2я`АЩ  8яxА╠ я`А╠3  я`А╠f я`А╠Щ я`А╠╠ (я`А╠  0яxА  яxА 3 яxА f яxА Щ яxА ╠  яxА   (яxА А  PяxА АЩ3 уяHАЩ33 x`АЩf3 x`АЩЩ3 (x`АЩ╠3 5РxАЩ 3 <яРА╠3 ця`А╠33 РxА╠f3  РxА╠Щ3 РxА╠╠3 (РxА╠ 3 2яРА 3 шяxА 33 яРА f3  яРА Щ3 яРА ╠3 яРА  3 (яРА А  аяxА АЩf ╒яHАЩ3f ▄x`АЩff 0xАЩЩf (0xАЩ╠f <xРАЩ f CяиА╠f ▄я`А╠3f уРxА╠ff xРА╠Щf xРА╠╠f (xРА╠ f 5яиА f ряxА 3f цяРА ff яиА Щf  яиА ╠f яиА  f (яиА А   (яxА АЩЩ ╚яHАЩ3Щ ╚x`АЩfЩ ╚0xАЩЩЩ РАЩ╠Щ PPиАЩ Щ Pя└А╠Щ ╥я`А╠3Щ ╒РxА╠fЩ ▄xРА╠ЩЩ PиА╠╠Щ (PиА╠ Щ <я└А Щ ╪яxА 3Щ ▄яРА fЩ уяиА ЩЩ я└А ╠Щ я└А  Щ (я└А А   xяxА АЩ╠ ╛я`АЩ3╠ ╗РxАЩf╠ ┤xРАЩЩ╠ аPиАЩ╠╠ xPиАЩ ╠ dя└А╠╠ ╚я`А╠3╠ ╚РxА╠f╠ ╚xРА╠Щ╠ ╚PиА╠╠╠ └А╠ ╠ Pя╪А ╠ ╨яxА 3╠ ╥яРА f╠ ╒яиА Щ╠ ▄я└А ╠╠ я╪А  ╠ (я╪А А   ╚яxА АЩ  ╕яxАЩ3  ┤яРАЩf  няиАЩЩ  ая└АЩ╠  Мя└АЩ   xя└А╠  └яxА╠3  ╛яРА╠f  ╗яиА╠Щ  ┤я└А╠╠  ая╪А╠   xя╪А   ╚яxА 3  ╚яРА f  ╚яиА Щ  ╚я└А ╠  ╚я╪А    ЁА       А       А     А     А     А f¤ `    z    АЩf к ╠      А   *   ]     к  ╘       ■ "PublishQTProperties::QTSndSettings  CQTAudioSettingsX    ■ ╚ ■  ■      ■  ■  ■  [<?xpacket begin=" ■" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 4.2.2-c063 53.352624, 2008/07/30-18:12:18 "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/"> <xmp:CreatorTool>Adobe Flash CS4 Professional</xmp:CreatorTool> <xmp:CreateDate>2010-05-23T13:59:09+01:00</xmp:CreateDate> <xmp:MetadataDate>2010-05-23T13:59:20+01:00</xmp:MetadataDate> <xmp:ModifyDate>2010-05-23T13:59:20+01:00</xmp:ModifyDate> </rdf:Description> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"> <xmpf¤ `    z    АЩf к ╠      А   *   ]     к  ╘       ■ "PublishQTProperties::QTSndSettings  CQTAudioSettingsX    ■ ╚ ■  ■      ■  ■  ■  [<?xpacket begin=" ■" id="W5M0MpCehiHzreSzNTczkc9d"?> <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 4.2.2-c063 53.352624, 2008/07/30-18:12:18 "> <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"> <rdf:Description rdf:about="" xmlns:xmp="http://ns.adobe.com/xap/1.0/"> <xmp:CreatorTool>Adobe Flash CS4 Professional</xmp:CreatorTool> <xmp:CreateDate>2010-05-23T13:59:09+01:00</xmp:CreateDate> <xmp:MetadataDate>2010-05-23T13:59:20+01:00</xmp:MetadataDate> <xmp:ModifyDate>2010-05-23T13:59:20+01:00</xmp:ModifyDate> </rdf:Description> <rdf:Description rdf:about="" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/" xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#"> <xmpMM:InstanceID>xmp.iid:2B7990006B66DF119064A52984C24265</xmpMM:InstanceID> <xmpMM:DocumentID>xmp.did:2B7990006B66DF119064A52984C24265</xmpMM:DocumentID> <xmpMM:OriginalDocumentID>xmp.did:2B7990006B66DF119064A52984C24265</xmpMM:OriginalDocumentID> <xmpMM:History> <rdf:Seq> <rdf:li rdf:parseType="Resource"> <stEvt:action>created</stEvt:action> <stEvt:instanceID>xmp.iid:2B7990006B66DF119064A52984C24265</stEvt:instanceID> <stEvt:when>2010-05-23T13:59:20+01:00</stEvt:when> <stEvt:softwareAgent>Adobe Flash CS4 Professional</stEvt:softwareAgent> </rdf:li> </rdf:Seq> </xmpMM:History> </rdf:Description> </rdf:RDF> </x:xmpmeta> MM:InstanceID>xmp.iid:2B7990006B66DF119064A52984C24265</xmpMM:InstanceID> <xmpMM:DocumentID>xmp.did:2B7990006B66DF119064A52984C24265</xmpMM:DocumentID> <xmpMM:OriginalDocumentID>xmp.did:2B7990006B66DF119064A52984C24265</xmpMM:OriginalDocumentID> <xmpMM:History> <rdf:Seq> <rdf:li rdf:parseType="Resource"> <stEvt:action>created</stEvt:action> <stEvt:instanceID>xmp.iid:2B7990006B66DF119064A52984C24265</stEvt:instanceID> <stEvt:when>2010-05-23T13:59:20+01:00</stEvt:when> <stEvt:softwareAgent>Adobe Flash CS4 Professional</stEvt:softwareAgent> </rdf:li> </rdf:Seq> </xmpMM:History> </rdf:Description> </rdf:RDF> </x:xmpmeta> <?xpacket end="w"?> ■          CSaved by Adobe Flash Windows 10.0 build 544 timecount = 1274620644АK@|а <?xpacket end="w"?> ■          CSaved by Adobe Flash Windows 10.0 build 544 timecount = 1274620860АK@|а