1 / 12

DESIGN E COMUNICAÇÃO MULTIMÉDIA 2011 / 2012

DESIGN E COMUNICAÇÃO MULTIMÉDIA 2011 / 2012. FORMADOR Gonçalo Miguel MÓDULO 25. Introdução ao ActionScript 3.0. 25. Introdução ao ActionScript 3.0. Módulo 25 – 6 ª Sessão. Som Video Imagem. 25. Introdução ao ActionScript 3.0. Módulo 25 – 6 ª Sessão.

cosette
Download Presentation

DESIGN E COMUNICAÇÃO MULTIMÉDIA 2011 / 2012

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. DESIGN E COMUNICAÇÃO MULTIMÉDIA 2011 / 2012 FORMADORGonçalo Miguel MÓDULO25. Introdução ao ActionScript 3.0

  2. 25. Introdução ao ActionScript 3.0 Módulo 25 – 6 ª Sessão Som Video Imagem

  3. 25. Introdução ao ActionScript 3.0 Módulo 25 – 6 ª Sessão Sound Class - This is the main class in which a sound will actually reside. This class is the starting point of any sound related program and is used to start playing a sound. SoundChannel Class - A sound can be played through a sound channel which provides additional controls over a sound object, the most basic of these additional controls is the ability to stop the playback of a sound. SoundTransformClass - This class is responsible for altering sound volume and sound panning (manipulating the balance between the left and right speakers). SoundMixerClass - This class has global control over all sounds played in the Flash player. It's most basic function is to stop all playing sounds regardless of source.

  4. 25. Introdução ao ActionScript 3.0 Módulo 25 – 6 ª Sessão • Simple Play Sound • .mp3 file in the same folder • varmySound:Sound = new Sound();mySound.load(new URLRequest("myFavSong.mp3"));mySound.play();

  5. 25. Introdução ao ActionScript 3.0 Módulo 25 – 6 ª Sessão • Play Sound peloSoundChannel • .mp3 file in the same folder • var mySound:Sound = newSound();var myChannel:SoundChannel = newSoundChannel();mySound.load(newURLRequest("myFavSong.mp3"));myChannel = mySound.play(); • myChannel.stop; Play e Stop são aplicados ao SoundChannel e não ao som .

  6. 25. Introdução ao ActionScript 3.0 Módulo 25 – 6 ª Sessão • Play Sound peloSoundChannel • .mp3 file in the same folder • var mySound:Sound = newSound();var myChannel:SoundChannel = newSoundChannel();mySound.load(newURLRequest("myFavSong.mp3"));myChannel = mySound.play(); • myChannel.stop; Play e Stop são aplicados ao SoundChannel e não ao som .

  7. 25. Introdução ao ActionScript 3.0 Módulo 25 – 6 ª Sessão Basic Sound Handling: http://www.republicofcode.com/tutorials/flash/as3sound/ Compute Spectrum http://www.anttikupila.com/flash/computespectrum-tutorial/# Experimental Works FromAndreMichelle http://lab.andre-michelle.com/tag/audio/

  8. 25. Introdução ao ActionScript 3.0 Módulo 25 – 6 ª Sessão Simple Play Video .flvfile in the same folder importfl.video.*;var myVideo:FLVPlayback = newFLVPlayback();myVideo.source = "video.flv";addChild(myVideo);

  9. 25. Introdução ao ActionScript 3.0 Módulo 25 – 6 ª Sessão Play Video From Youtube Security.allowDomain("www.youtube.com");var my_player:Object;var my_loader:Loader = newLoader();my_loader.load(newURLRequest("http://www.youtube.com/apiplayer?version=3")); my_loader.contentLoaderInfo.addEventListener(Event.INIT, onLoaderInit);functiononLoaderInit(e:Event):void{addChild(my_loader);my_player = my_loader.content;my_player.addEventListener("onReady", onPlayerReady); }functiononPlayerReady(e:Event):void{my_player.setSize(640,360);my_player.loadVideoById("UX07sTSHiTs",0);}

  10. 25. Introdução ao ActionScript 3.0 Módulo 25 – 6 ª Sessão Basic Video http://www.republicofcode.com/tutorials/flash/as3flvplayback/ StageVideo– Flash 11 – Intermédio http://www.adobe.com/devnet/flashplayer/stagevideo.html http://www.adobe.com/devnet/flashplayer/articles/stage_video.html

  11. 25. Introdução ao ActionScript 3.0 Módulo 25 – 6 ª Sessão Fotografiasexternas .Jpeg namesmadirectoria varmy_loader:Loader = new Loader();my_loader.load(new URLRequest("myPhoto.jpg"));addChild(my_loader); -Jpegsomewhere in WEB varmy_loader:Loader = new Loader();my_loader.load(new URLRequest(“http://www.site.com/myPhoto.jpg"));addChild(my_loader);

  12. 25. Introdução ao ActionScript 3.0 Módulo 25 – 6 ª Sessão Google Maps ( Deprecated ) É necessáriouma API.KEY (gratuita) http://code.google.com/intl/pt-PT/apis/maps/signup.html MapQuest http://developer.mapquest.com/web/products/featured/as3-flex-flash XML andImages http://www.lemlinh.com/flash-tutorials-18-as3-image-gallery-tutorials-roundup/ Drawing API http://www.senocular.com/flash/tutorials/flash10drawingapi/

More Related