ryanSmithART.com

ryansmithart.com/courses/2013/382

Week #6


Today: Sep. 30

"Project A"
is due

- Upload your project (if you haven't already)
- Add a link from your index.html page to a project_a.html page

We will look at your projects today in class


Wednesday:

Talk about CS5, 5.5, CS6, & Flash CC version info

assign: Project B
it will be due 2 weeks later on Wednesday, October 16

Project B examples: spectrum zine | drawing zine | phobias | fonts | martini | mythology
another fun flash site: jim carrey




FLASH


Sound Review:
*make sure all your sounds are saved as mp3 files
What's the difference between Event & Streaming sound?
Free Sound.org
free animal sounds


Content on this page requires a newer version of Adobe Flash Player.

Get Adobe Flash player



Look at source: vineyardesigns.com/tutorials

my_btn.addEventListener(MouseEvent.MOUSE_DOWN, myHandler);
function myHandler(evt:Object):void {
navigateToURL(new URLRequest("http://www.adobe.com/devnet/flash/"), "_self");
}




Adding sound with AS3.0

Sound: //Loading audio:
var audio:Sound = new Sound();
var req:URLRequest = new URLRequest("Song.mp3");
audio.load(req);
audio.play();

// If you want it to loop, then change the last line to:
audio.play(0, int.MAX_VALUE);

// Stop all sound:
flash.media.SoundMixer.stopAll();



Content on this page requires a newer version of Adobe Flash Player.

Get Adobe Flash player

Dowload .fla file: SoundTest_fall_2013.fla

// sound.play(0, int.MAX_VALUE);
or
// audio2.play(0, 9999);




HOME WORK (I will look at it on Wednesday of next week: Oct. 9)

Look at "Things to think about" for Project B
Think of something you would like to research (anything).
Type up a project proposal (less than 1 page).
What's the project about? What will it look like?
Get started on it!