Multiple choice technology web technology

Which event helps us to identify if the image is correctly loaded or not using mx:Image control ?

  1. scaleContent

  2. states

  3. httpStatus

  4. imageLoaded

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

The httpStatus event is dispatched when the mx:Image control encounters an HTTP error while loading an image, such as a 404 Not Found or 403 Forbidden response. By monitoring this event and checking its status code, you can determine whether the image failed to load correctly. The other options (scaleContent, states, imageLoaded) are not standard mx:Image events for detecting load status - scaleContent is a property, states refers to view states, and imageLoaded is not a built-in event name.