1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15:
on (release) { if (q1.getValue()=="4") { _root.total = _root.total + 100; } else { _root.total = _root.total + 0; } if (q2.getValue()=="18") { _root.total = _root.total + 100;; } else { _root.total = _root.total + 0; } } _root.total = _root.total + 100 ;
1: 2: 3: 4: 5: 6: 7: 8:
on (release) { if (q1.getValue()=="4") { _root.total = _root.total + 100; } if (q2.getValue()=="18") { _root.total = _root.total + 100; } }