---
title: "addLayer"
canonical: "https://help.vicon.com/space/Shogun114/196391378/addLayer"
format: markdown
---
# Description

Create a new layer in the active clip. An error is generated if there is no clip in the scene.

## Functional area

NLE

# Command syntax

## Syntax

|  |
| --- |
| `addLayer "layerName"` |

### Arguments

| **Name** | **Type** | **Required** | **Comments** |
| --- | --- | --- | --- |
| `layerName` | string | yes | The name of the layer to add |

### Flags

None

## Return value

void

## Examples

```plaintext
// Print the name of the active clip
string $clip = `getActiveClip`;
print $clip;
 // Add new layer
string $name = "new layer";
addLayer $name; 
// Print all layers
string $layers [];
$layers = `getLayers`;
print $layers;
```

# Additional info

## Related commands

- [addToClip](https://vicon-help.atlassian.net/wiki/spaces/Shogun114/pages/196379484)
- [copyClip](https://vicon-help.atlassian.net/wiki/spaces/Shogun114/pages/196384322)
- [cropClip](https://vicon-help.atlassian.net/wiki/spaces/Shogun114/pages/196386841)
- [deleteClipData](https://vicon-help.atlassian.net/wiki/spaces/Shogun114/pages/196382518)
- [flatten](https://vicon-help.atlassian.net/wiki/spaces/Shogun114/pages/196380576)
- [getActiveLayer](https://vicon-help.atlassian.net/wiki/spaces/Shogun114/pages/196382582)
- [getClips](https://vicon-help.atlassian.net/wiki/spaces/Shogun114/pages/196379824)
- [moveClip](https://vicon-help.atlassian.net/wiki/spaces/Shogun114/pages/196389704)
- [offsetClips](https://vicon-help.atlassian.net/wiki/spaces/Shogun114/pages/196383288)
- [removeFromClip](https://vicon-help.atlassian.net/wiki/spaces/Shogun114/pages/196382488)
- [removeLayer](https://vicon-help.atlassian.net/wiki/spaces/Shogun114/pages/196388334)
- [resetClip](https://vicon-help.atlassian.net/wiki/spaces/Shogun114/pages/196389423)
- [selectClipObjects](https://vicon-help.atlassian.net/wiki/spaces/Shogun114/pages/196392935)
- [setActiveClip](https://vicon-help.atlassian.net/wiki/spaces/Shogun114/pages/196382554)
- [setActiveClip](https://vicon-help.atlassian.net/wiki/spaces/Shogun114/pages/196382554)
- [setActiveLayer](https://vicon-help.atlassian.net/wiki/spaces/Shogun114/pages/196384720)
- [tileClips](https://vicon-help.atlassian.net/wiki/spaces/Shogun114/pages/196391577)