• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/7

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

7 Cards in this Set

  • Front
  • Back
how would you listen for when the mouse leaves the app window realiably
window.nativeWindow.stage.addEventListener(air.Event.MOUSE_LEAVE, functionToCall)
what air object do you need to add the event listener air.Event.MOUSE_LEAVE to to be able to listen for when the mouse leaves the app window
stage

window.nativeWindow.stage.addEventListener(air.Event.MOUSE_LEAVE, functionToCall)
what event would you listen for on the air stage object to able to detect when the mouse leaves the app window
air.Event.MOUSE_LEAVE
how would you reliably listen for when the mouse enters the app window
window.nativeWindow.stage.addEventListener("mouseOver", function(e){})
what air object do you need to attach a "mouseOver" listener to to be able to listen for when the mouse hovers over the app window
stage
what normal dom event would you listen for on the air object stage to be able to detect when the user puts their mouse over the app window
"mouseOver"
how do access the air stage object
window.nativeWindow.stage