ࡱ> Root EntryRoot Entryp|YrRASHw"T?6Contents1%Page 1#Symbol 1  !"$%&'()*+,-./023456789:;<=>?@ABCSymbol 2 Symbol 3^ Symbol 42 Symbol 6z   !"#$%&'()*+,-./013456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]_`abcdefghijklmnopqrstuvwxyz{|}~CPicPage CPicLayer CPicFrameE r l,YրD? ˀu1 Bր ـE4ߡ @w^cـ` ;%O26O IQm. s  ?Layer 1Offfmw4@f1F?CPicMorphShape CMorphSegment6 CMorphCurveMr      Zfff.2\d1v?  6  C{   0YSH:3h8r?Layer 43D?  6 ?~ !|+N:?8K3 ?  6 ?~lw +N yU6?Layer 2OO<?  m EhmjTtv?  mt  St B?Layer 3OOCPicPage CPicLayer CPicFrame333w::u4R4eŐ:u4*4{lŋ4!u4:}4Ru?::u4R4eŐ:u4*4{lŋ4!u4:}4Ru?T.FtFT4.ctT4,F4,t4๛t4t4FTt4cT::u4R4eŐ:u4*4{lŋ4!u4:}4Ru? x:4#44FsS4\cS4-FmFS(000@0? Layer: CircleCPicTexth @Vonnes-BlackExt(3? h @Vonnes-BlackExt(3? h @Vonnes-BlackExt(3??Layer: 3 6~8@ Helveticathree? 6~8@ Helveticathree? 6~8@ Helveticathree?? Layer: Text CPicPage CPicLayer CPicFrame333::u4R4eŐ:u4*4{lŋ4!u4:}4Ru?::u4R4eŐ:u4*4{lŋ4!u4:}4Ru?::u4R4eŐ:u4*4{lŋ4!u4:}4Ru.FtFT4.ctT4,F4,t4๛t4t4FTt4cT? x:4#44FsS4\cS4-FmFS(000@0? Layer: CircleCPicTexth @Vonnes-BlackExt(2? h @Vonnes-BlackExt(2? h @Vonnes-BlackExt(2??Layer: 2 6~8@ Helveticatwo? 6~8@ Helveticatwo? 6~8@ Helveticatwo?? Layer: Text CPicPage CPicLayer CPicFrame333::u4R4eŐ:u4*4{lŋ4!u4:}4Ru?::u4R4eŐ:u4*4{lŋ4!u4:}4Ru?T.FtFT4.ctT4,F4,t4๛t4t4FTt4cT::u4R4eŐ:u4*4{lŋ4!u4:}4Ru? x:4#44FsS4\cS4-FmFS(000@0? Layer: CircleCPicTexth @Vonnes-BlackExt(1? h @Vonnes-BlackExt(1? h @Vonnes-BlackExt(1??Layer: 1 6~8@ Helveticaone? 6~8@ Helveticaone? 6~8@ Helveticaone?? Layer: Text CPicPage CPicLayer CPicFrame333::u4R4eŐ:u4*4{lŋ4!u4:}4Ru?::u4R4eŐ:u4*4{lŋ4!u4:}4Ru?T.FtFT4.ctT4,F4,t4๛t4t4FTt4cT::u4R4eŐ:u4*4{lŋ4!u4:}4Ru? x:4#44FsS4\cS4-FmFS(000@0? Layer: Circle CPicShapeQ000B?s00B? Q000B? Layer: Arrow???? Layer: TextCPicPage CPicLayer CPicFrameCPicTextUVerdana"(Moving mc with arrow keys @Verdana"(basics tutorialVerdana"( bVerdana"(ok moving a movie clip using the arrow keys is relatively easy put this on the mc you want to moveg"Verdana"(next CPicButtonj#   CPicSpriteiCiC speed2 kuKey.isDown(Key.UP)kdKey.isDown(Key.DOWN)klKey.isDown(Key.LEFT)krKey.isDown(Key.RIGHT)ku) _y -= speedkd) _y += speedkl) _x -= speedkr) _x += speed= Times New Roman(use arrow key to move birdF @ @Verdana3"(onClipEvent (load) {speed=2;}Verdana"( Verdana3"(onClipEvent (enterFrame) { ku= Key.isDown(Key.UP) kd=Key.isDown(Key.DOWN) kl=Key.isDown(Key.LEFT) kr=Key.isDown(Key.RIGHT) if(ku){_y-=speed;} //else if(kd){_y+=speed;} //else if(kl){_x-=speed;} //else if(kr){_x+=speed;} }H00N#? #z  K#Verdana"(How does it workVerdana"(The Verdana3"(Key.isDown(Key.UP) PVerdana"( function checks if an arrow key is been pressed in this case the UP key if Verdana3"(Key.isDown(Key.UP) ZVerdana"( is true then ku= true therefore if ku is true then move the mc up with this code Verdana3"( if(ku){_y-=speed;} $Verdana"(if(ku) is just like if(ku==true) Verdana3"( _y-=speed Verdana"(will move the move clip by decreasing on its y axis repeat this process for the remaing moves changing the keys and their respective x,y coord if you want the mc not to move diagonally just delete the Verdana"(// Verdana"(before theVerdana"( else Verdana"(statement Verdana"( Verdana"(that's easy isn't it ?r"Verdana"(next cz  " Verdana"(previuos ? w#Verdana"(Quiz@Verdana"(what does this code do Verdana3"( if(kr){_x+=speed;}6 @Verdana"(1) checks if kr is true and if so increase x by speed 2)checks if kr is true and if so decrease x by speed 3) only check if kr is true Yv@on (release) { _root.msg = "very good you are correct!! "; } Y2Ion (release) { _root.msg = "ummm maybe you should take a break!!"; } Y8on (release) {_root.msg="halloooo anybody home?" }  &:C@msgTimes New Roman( #f  I "Verdana"(next :f  " Verdana"(previuos ?_root.msg = ""; stop ();  # 1  . #Verdana"(Quiz 2'@Verdana"(what does this code do Verdana3"( Verdana3"(ku= Key.isDown(Key.UP)"@Verdana"(1) checks if ku is true and if so increase speed 2)checks if the arrow key "up" is pressed and returns true or false to the variable ku 3) waits for a key press YvPon (release) { _root.msg = "what? stop watching that dam playboy channel"; } Y2Aon (release) { _root.msg = "very good you are correct!! "; } YMon (release) { _root.msg = "ummm maybe you should take a break!!"; }  &R&C@msgTimes New Roman(? _root.msgLayer 1O  CDocumentPage Page 1Scene 1)<V6S= Symbol 1Circle with arrowL7< Symbol 2Go to 1L7 < Symbol 3Go to 2L7 < Symbol 4Go to 3L7 < Symbol 6Symbol 1<Q6S=*@hhhhhf%PublishFormatProperties::htmlFileName moveMc.html"PublishHtmlProperties::StartPaused0!PublishGifProperties::PaletteName PublishRNWKProperties::speed256K0Vector::Debugging Permitted0Vector::External Font Files0PublishFormatProperties::jpeg0Vector::Generator EncodingPublishHtmlProperties::Loop1"PublishQTProperties::MatchMovieDim1 PublishQTProperties::AlphaOption PublishQTProperties::LayerOptionVector::Generator CommandPublishHtmlProperties::Units0$PublishPNGProperties::OptimizeColors1PublishQTProperties::Width550&PublishRNWKProperties::singleRateAudio0&PublishRNWKProperties::speedSingleISDN0%PublishFormatProperties::projectorMac0&PublishFormatProperties::flashFileName moveMc.swfPublishGifProperties::Smooth1#PublishRNWKProperties::flashBitRate1200%PublishRNWKProperties::mediaCopyright 2000Vector::Preview as GIF0PublishFormatProperties::html1$PublishFormatProperties::pngFileName moveMc.pngVector::Generator Height400(PublishHtmlProperties::VerticalAlignment1PublishHtmlProperties::Quality4"PublishGifProperties::DitherOption"PublishRNWKProperties::exportAudio1 PublishRNWKProperties::speed384K0!PublishRNWKProperties::exportSMIL1Vector::Override Sounds0Vector::Generator Color!PublishHtmlProperties::DeviceFont0"PublishPNGProperties::FilterOption'PublishRNWKProperties::mediaDescriptionVector::Template0Vector::Protect1Vector::Quality50PublishFormatProperties::gif0*PublishFormatProperties::generatorFileName moveMc.swt*PublishHtmlProperties::HorizontalAlignment1"PublishHtmlProperties::DisplayMenu0PublishGifProperties::Interlace0"PublishGifProperties::DitherSolids0PublishPNGProperties::Smooth1PublishPNGProperties::BitDepth24-bit with AlphaPublishJpegProperties::DPI4718592PublishQTProperties::Flatten1#PublishFormatProperties::qtFileName moveMc.movPublishGifProperties::Width550PublishGifProperties::Loop1PublishRNWKProperties::speed28K1!PublishRNWKProperties::mediaTitle$PublishRNWKProperties::mediaKeywordsPublishFormatProperties::flash1Vector::Generator Width550Vector::Generator LoadOrder#PublishGifProperties::MatchMovieDim1#PublishGifProperties::PaletteOption"PublishPNGProperties::DitherOptionPublishJpegProperties::Quality80$PublishRNWKProperties::realVideoRate100000$PublishRNWKProperties::speedDualISDN0-PublishFormatProperties::projectorWinFileName moveMc.exePublishHtmlProperties::Align0#PublishPNGProperties::MatchMovieDim1#PublishPNGProperties::PaletteOption$PublishJpegProperties::MatchMovieDim1Vector::Omit Trace Actions1Vector::Debugging Password%PublishFormatProperties::jpegFileName moveMc.jpgPublishHtmlProperties::Width550PublishHtmlProperties::Height400"PublishPNGProperties::DitherSolids0"PublishJpegProperties::Progressive0#PublishQTProperties::PlayEveryFrame0Vector::TopDown0PublishFormatProperties::png0PublishFormatProperties::rnwk0-PublishFormatProperties::projectorMacFileName moveMc.hqx!PublishHtmlProperties::WindowMode0'PublishHtmlProperties::TemplateFileName5C:\PROGRAM FILES\MACROMEDIA\FLASH 5\Html\Default.htmlPublishGifProperties::Height400PublishPNGProperties::Interlace0PublishJpegProperties::Size0"PublishFormatProperties::generatorVector::Report0PublishGifProperties::LoopCount'PublishGifProperties::TransparentOptionPublishGifProperties::MaxColors255%PublishPNGProperties::RemoveGradients0PublishQTProperties::Height400PublishRNWKProperties::speed56K1Vector::Version5Vector::Stream Compress7Vector::Event Format0PublishFormatProperties::qt0$PublishGifProperties::OptimizeColors1"PublishRNWKProperties::audioFormat0Vector::Event Compress7PublishHtmlProperties::Scale0%PublishGifProperties::RemoveGradients0PublishPNGProperties::Width550PublishPNGProperties::Height400PublishJpegProperties::Height400 PublishRNWKProperties::speed512K0Vector::Stream Format0$PublishFormatProperties::gifFileName moveMc.gifPublishGifProperties::Animated0&PublishGifProperties::TransparentAlpha128!PublishPNGProperties::Transparent0!PublishPNGProperties::PaletteNamePublishJpegProperties::Width550*PublishQTProperties::UseQTSoundCompression0PublishQTProperties::Looping0"PublishRNWKProperties::exportFlash1&PublishRNWKProperties::showBitrateDlog1(PublishRNWKProperties::speedCorporateLAN0"PublishRNWKProperties::mediaAuthorPropSheet::ActiveTab1620%PublishFormatProperties::defaultNames1%PublishFormatProperties::projectorWin0%PublishFormatProperties::rnwkFileName moveMc.smilVector::Generator FPS12Vector::MatchMovieDim1PublishPNGProperties::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*]P0|"PublishQTProperties::QTSndSettingsCQTAudioSettingsh