execEvent

Availability

Flash Player 6 r65.

Usage

myFMXISJog.execEvent(evName, evVal, quiet)

Parameters

evName Event name (string) must match the event this component generates

evVal (optional) value accompanying the event (if the event has an accompanying value)

quiet (optional) set this to true if component should perform the action but not generate an event (this should be false or undefined, unless you know what you are doing)

Returns

Nothing

Description

Given an event string and value that matches what this component would generate, perform the action. For the jog component, the event is onValChg and the value is the increment.

Example


myJog.execEvent("onValChg", 1); // increments jog by 1 unit