Task One:
1. You have two buttons. One labeled "Timestable" and the other "Divison table". The Timestable button calls the timesTable function, and the Division table button calls the divisionTable function.
2. Assume that the logIT function has already been given, write the codes for the timesTable and divisionTable functions so that as the button is clicked, the respective tables will be printed out in the debug logger.
Answer:
private function timesTable ():void{
for (var i:int=0; i<13; i++){
for (var j:int=0; j<13; j++){
logIT (String(i) + ' times ' + String(j) + ' = ' + String (i*j));
}
}
}
private function divisionTable ():void{
for (var i:int=0; i<13; i++){
for (var j:int=0; j<13; j++){
logIT (String(i*j) + ' divided by ' + String(i) + ' = ' + String (j));
}
}
}
Task Two:
1. You are given a text input box and a button. On click of the button, whatever information from the text input box will be in reversed order and displayed in Alert.show.
2. Write the codes for that function.
Answer:
Create a variable to extract information from the text input box, and another variable to be displayed on the Alert.show.
private function reverseText ():void{
var reverseText:String = txiInput.text;
var inAlert:String = ' ';
for (var i:int= reverseText.length-1; i<-1; i--){
inAlert = inAlert + reverseText.charAt(i);
}
Alert.show(inAlert);
}
Task Three:
1. You are given a text input box and a button.
2. Create a function whereby on click, the total of vowels in whatever information from the text input box is displayed in Alert.show. Change upper case characters to lower case when extracting information from the text input box.
Answer:
Similar to the previous problem, a variable must be created to extract information from the text input box, as well as to display or count the number of vowels.
You can use: a switch statement, five if statements or one if statement.
using switch:
private function vowelCount():void{
var sampleText:String txiInput.text.toLowercase();
var vowelTotal:int = 0;
for (var i:int=0; i
switch (sampleText.charAt(i)){
case 'a': vowelTotal++;
break;
case 'e': vowelTotal++;
break;
case 'i': voweTotal++;
break;
case 'o': vowelTotal++;
break;
case 'u': vowelTotal++;
break;
default: break;
}
}
Alert.show ('Total vowel is ' + String(vowelTotal));
}
erh, I'll figure out the if statement sometime.
1. You have two buttons. One labeled "Timestable" and the other "Divison table". The Timestable button calls the timesTable function, and the Division table button calls the divisionTable function.
2. Assume that the logIT function has already been given, write the codes for the timesTable and divisionTable functions so that as the button is clicked, the respective tables will be printed out in the debug logger.
Answer:
private function timesTable ():void{
for (var i:int=0; i<13; i++){
for (var j:int=0; j<13; j++){
logIT (String(i) + ' times ' + String(j) + ' = ' + String (i*j));
}
}
}
private function divisionTable ():void{
for (var i:int=0; i<13; i++){
for (var j:int=0; j<13; j++){
logIT (String(i*j) + ' divided by ' + String(i) + ' = ' + String (j));
}
}
}
Task Two:
1. You are given a text input box and a button. On click of the button, whatever information from the text input box will be in reversed order and displayed in Alert.show.
2. Write the codes for that function.
Answer:
Create a variable to extract information from the text input box, and another variable to be displayed on the Alert.show.
private function reverseText ():void{
var reverseText:String = txiInput.text;
var inAlert:String = ' ';
for (var i:int= reverseText.length-1; i<-1; i--){
inAlert = inAlert + reverseText.charAt(i);
}
Alert.show(inAlert);
}
Task Three:
1. You are given a text input box and a button.
2. Create a function whereby on click, the total of vowels in whatever information from the text input box is displayed in Alert.show. Change upper case characters to lower case when extracting information from the text input box.
Answer:
Similar to the previous problem, a variable must be created to extract information from the text input box, as well as to display or count the number of vowels.
You can use: a switch statement, five if statements or one if statement.
using switch:
private function vowelCount():void{
var sampleText:String txiInput.text.toLowercase();
var vowelTotal:int = 0;
for (var i:int=0; i
case 'a': vowelTotal++;
break;
case 'e': vowelTotal++;
break;
case 'i': voweTotal++;
break;
case 'o': vowelTotal++;
break;
case 'u': vowelTotal++;
break;
default: break;
}
}
Alert.show ('Total vowel is ' + String(vowelTotal));
}
erh, I'll figure out the if statement sometime.
Comments
for(var i:int=0; i<sampleText.length; i++)
I don't know why blogger doesn't like it, so I've not been able to display it.