Advertisement
PurePureMilk

Stage 8 Level 18

Mar 13th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. onEvent("dropdown_daysoftheweek", "change", function(event) {
  2. if (getText("dropdown_daysoftheweek")== "Saturday") {
  3. setText("msg_label", "No School!");
  4. } else if ((getText("dropdown_daysoftheweek") == "Sunday")) {
  5. setText("msg_label", "Go to Sleep!");
  6. } else {
  7. setText("msg_label", "someone save me...");
  8. }
  9. if (getText("dropdown_daysoftheweek") == "Days of the Week") {
  10. setText("msg_label", "Result..");
  11. }
  12. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement