Male
Joined on 12/30/09
LORRDVID 2010-02-07 17:09:06
Well, i think this u problem:
function correct(){ score+=1 nextFrame() correctans._visible=true
} function wrong(){ nextFrame() wrongans._visible=true }
// Here is u mistake
right_btn.onRelease = function(){ correct; } wrong_btn1.onRelease = function(){ wrong; } wrong_btn2.onRelease = function(){ wrong; } wrong_btn3.onRelease = function(){ wrong; }
LORRDVID
Well, i think this u problem:
function correct(){
score+=1
nextFrame()
correctans._visible=true
}
function wrong(){
nextFrame()
wrongans._visible=true
}
// Here is u mistake
right_btn.onRelease = function(){
correct;
}
wrong_btn1.onRelease = function(){
wrong;
}
wrong_btn2.onRelease = function(){
wrong;
}
wrong_btn3.onRelease = function(){
wrong;
}