Extending Flash |
|
|
|
| Objects > flash object (fl) > fl.contactSensitiveSelection | |||
Flash 8.
fl.contactSensitiveSelection
A Boolean value that specifies whether Contact Sensitive selection mode is enabled (true) or not (false).
The following example shows how to disable Contact Sensitive selection mode before making a selection, and then how to reset it to its original value after making the selection:
var contact = fl.contactSensitiveSelection; fl.contactSensitiveSelection = false; // Insert selection code here. fl.contactSensitiveSelection = contact;
|
|
|
|