Advertisement
Advertisement
| 06.03.2008 at 03:07AM PDT, ID: 23452589 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: |
_totalDistractors = 4;
answerChoices:Array = new Array("Lots of text", "OptionB", "OptionC", "OptionD");
for(var i:int = 0; i < _totalDistractors ; i++) {
//*******
var taradioButtoni:TextArea = new TextArea();
taradioButtoni.text = answerChoices[i];
taradioButtoni.width = 370;
taradioButtoni.height = taradioButtoni.textHeight + 10;
taradioButtoni.move(-190, 55);
taradioButtoni.y = -85 + i*(30 + taradioButtoni.height);
//taradioButtoni.y = -85 + ( i * spacing);
taradioButtoni.wordWrap= true ;
addChild(taradioButtoni);
}
|