how to leave
Posted: Thu May 07, 2009 7:08 pm
Hi again, i just want to know if it is possible have a command or a trick to stop the "answer" dialog without putting the instruction in each "answer" dialog, i have a scrip like this:
answer "17.- ¿Por qué naufragó el Titanic?" with "Porque se durmió el capitán" or "Porque choco con otro barco" or "Porque chocó contra un iceberg"
if it is "Porque chocó contra un iceberg" then
add 1 to ctotal
correctas
else
incorrectas
end if
answer "18.- ¿En qué paÃses actuales vivieron los fenicios?" with "En Egipto y Arabia Saudita" or "En Siria y LÃbano" or "En Israel y Palestina"
if it is "En Siria y LÃbano" then
add 1 to ctotal
correctas
else
incorrectas
end if
end mouseUp
on correctas
add 1 to countergood
answer "respuesta correcta, vamos sigue adelante, llevas " && countergood && "correctas de un total de" && ctotal && "jugadas"
end correctas
on incorrectas
add 1 to counterbad
answer error "No, no no, la que sigue" && counterbad && "contestadas incorrectamente"
end incorrectas
Regards
Greg
answer "17.- ¿Por qué naufragó el Titanic?" with "Porque se durmió el capitán" or "Porque choco con otro barco" or "Porque chocó contra un iceberg"
if it is "Porque chocó contra un iceberg" then
add 1 to ctotal
correctas
else
incorrectas
end if
answer "18.- ¿En qué paÃses actuales vivieron los fenicios?" with "En Egipto y Arabia Saudita" or "En Siria y LÃbano" or "En Israel y Palestina"
if it is "En Siria y LÃbano" then
add 1 to ctotal
correctas
else
incorrectas
end if
end mouseUp
on correctas
add 1 to countergood
answer "respuesta correcta, vamos sigue adelante, llevas " && countergood && "correctas de un total de" && ctotal && "jugadas"
end correctas
on incorrectas
add 1 to counterbad
answer error "No, no no, la que sigue" && counterbad && "contestadas incorrectamente"
end incorrectas
Regards
Greg