Okay, here's what the final will cover (I'll be going over this in class on May 8):
Chapter 3: Constructing Actionscript
Chapter 4: Functions
Chapter 7: Arrays
Chapter 11: Strings
Chapter 13: Using Display Objects
Chapter 14: Movieclips
Chapter 15: Drawing Programmatically
Chapter 17: Filters
Chapter 19: Text Fields
Chapter 21: Mouse and Key Events
Chapter 26: Sound
Chapter 27: Video
The test will NOT cover anything in Part 7 of the book (such as XML), though I have been going over some of that material in class for those who want to know about it.
Tuesday, May 8, 2007
Sunday, April 29, 2007
Question About CTVA 468 Quiz on Tuesday
Hi Nick,
Can you tell me what chapter I should read for Tuesday Quiz
Thank You
Can you tell me what chapter I should read for Tuesday Quiz
Thank You
Thursday, March 15, 2007
Hangman Code
function makePhrases():Void {
_root.myPhrases = new Array();
myPhrases[0] = "To hell and back";
myPhrases[1] = "There is no God but Allah";
myPhrases[2] = "There's the rub";
myPhrases[3] = "Tank the game, rules";
myPhrases[4] = "God, this sucks";
}
makePhrases();
function generateRandomPhrase():Number {
var phraseToUse = Math.floor(Math.random()*myPhrases.length);
return phraseToUse;
}
var myPhraseToUse = generateRandomPhrase();
trace(myPhraseToUse);
function makeBoxes():Void {
var letterSpotX:Number = 25;
var letterSpotY:Number = 100;
for (var i:Number = 0; i
_root.attachMovie("letterMC", "letter_"+i, i, {_x:letterSpotX, _y:letterSpotY});
_root["letter_"+i].letterBox.text = myPhrases[myPhraseToUse].charAt(i);
letterSpotX += 25;
}
}
makeBoxes();
_root.myPhrases = new Array();
myPhrases[0] = "To hell and back";
myPhrases[1] = "There is no God but Allah";
myPhrases[2] = "There's the rub";
myPhrases[3] = "Tank the game, rules";
myPhrases[4] = "God, this sucks";
}
makePhrases();
function generateRandomPhrase():Number {
var phraseToUse = Math.floor(Math.random()*myPhrases.length);
return phraseToUse;
}
var myPhraseToUse = generateRandomPhrase();
trace(myPhraseToUse);
function makeBoxes():Void {
var letterSpotX:Number = 25;
var letterSpotY:Number = 100;
for (var i:Number = 0; i
_root.attachMovie("letterMC", "letter_"+i, i, {_x:letterSpotX, _y:letterSpotY});
_root["letter_"+i].letterBox.text = myPhrases[myPhraseToUse].charAt(i);
letterSpotX += 25;
}
}
makeBoxes();
Monday, March 5, 2007
Slide and Text Outline for 2/27 and 3/1
Sorry I took so long to post them. You download them from the area on the left, as always.
Thursday, February 22, 2007
Slides and Text Outline for 2/22 Have Been Uploaded
Please see the post below this on the typo that was in there. The slides have been correctd.
Major typo on page 6 of the slides outline
Alicia just pointed out to me that slide 6 in the PDF of the class slides says that project 1 is due on May 8th. That should be March 8th.
Sunday, February 11, 2007
Test on 2/15
This is a reminder that there's going to be a test covering chapters 1 through 4 on Thursday the 15th. It'll be open book, multiple choice, and given online.
Subscribe to:
Posts (Atom)
About the CTVA 468 Blog
This blog is meant for students enrolled in CSUN's CTVA 468 class (Advanced Multimedia), devoted to programming with Flash.