Multiple choice technology

------------- triggers actions defined for a specific instance of a movie clip.

  1. onEvent()

  2. clipEvent()

  3. onClipEvent()

  4. movieClipEvent()

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

onClipEvent() is the correct ActionScript handler for events specific to movie clip instances, such as load, enterFrame, mouseDown, etc. It's placed directly on the movie clip instance. The other options (onEvent, clipEvent, movieClipEvent) are not valid ActionScript event handlers.