Home
ActionScript
Blog

Chapter 1

Chapter 2

Chapter 3

Chapter 4

Chapter 5

Chapter 6

 

 

 

 

 

 

 

 

 

 

 

 

 

 

Chapter Two Sample

<script>
//Catherine Casuat
//10-2-07

var userName="";
var rightAnswer="say cheese";
userName=prompt("When in doubt....");
if(userName==rightAnswer)
{
alert("You pwn!");
}
else if(userName=="I don't know.")
{
alert("You suck.");
}
else
{
alert("Figure it out!");
}
alert("Thanks for playing!");
</script>