![]() ![]() | |
Flash Player 6 r65.
myFMXISJog.execEvent(evName, evVal, quiet)
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)
Nothing
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.
myJog.execEvent("onValChg", 1); // increments jog by 1 unit
![]() ![]() | |