Hi Nick,
Can you tell me what chapter I should read for Tuesday Quiz
Thank You
Sunday, April 29, 2007
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.
Class Assignment 02/08/07
Can you post the requirements for the assignment we attempted in class on thursday?
Thanks.
Thanks.
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.