Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 591 Bytes

File metadata and controls

24 lines (15 loc) · 591 Bytes

fl.contactSensitiveSelection

Availability

Flash 8.

Usage

fl.contactSensitiveSelection

Description

A Boolean value that specifies whether Contact Sensitive selection mode is enabled (true) or not (false).

Example

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;