Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 715 Bytes

File metadata and controls

32 lines (20 loc) · 715 Bytes

document.deleteTaggedSwatchAtIndex()

Availability

Animate 2020.

Usage

document.deleteTaggedSwatchAtIndex(index:int [,palette:int ])

Parameters

index : It is an integer that speifies the index of the tagged swatch to delete. palette : It is an integer that speifies the index of the tagged swatch palette,default value is 0.It is optional.

Returns

Nothing.

Description

Method;delete tagged swatch with given index.

Example

The following example delete the tagged swatch at index 0.

var document = fl.getDocumentDOM();
document.deleteTaggedSwatchAtIndex(0,4);

See also

document.deleteTaggedSwatchByName()