---
title: "removeLayer"
canonical: "https://help.vicon.com/space/Shogun17/13536944/removeLayer"
format: markdown
---
# Description

Remove indicated layer from the active clip. The error will be generated if there is no clip on the scene.

## Functional area

NLE

# Command syntax

## Syntax

|  |
| --- |
| `removeLayer "layerName"` |

### Arguments

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

### 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;

// Remove layer
removeLayer $name;

// Print all layers
$layers = `getLayers`;
print $layers;
```

# Additional information

## Related commands

- [addLayer](https://vicon-help.atlassian.net/wiki/spaces/Shogun17/pages/13537675)
- [addToClip](https://vicon-help.atlassian.net/wiki/spaces/Shogun17/pages/13537691)
- [copyClip](https://vicon-help.atlassian.net/wiki/spaces/Shogun17/pages/13537597)
- [cropClip](https://vicon-help.atlassian.net/wiki/spaces/Shogun17/pages/13537599)
- [deleteClipData](https://vicon-help.atlassian.net/wiki/spaces/Shogun17/pages/13536455)
- [flatten](https://vicon-help.atlassian.net/wiki/spaces/Shogun17/pages/13536537)
- [getActiveClip](https://vicon-help.atlassian.net/wiki/spaces/Shogun17/pages/13536543)
- [getActiveLayer](https://vicon-help.atlassian.net/wiki/spaces/Shogun17/pages/13536541)
- [getClips](https://vicon-help.atlassian.net/wiki/spaces/Shogun17/pages/13536339)
- [moveClip](https://vicon-help.atlassian.net/wiki/spaces/Shogun17/pages/13537074)
- [offsetClips](https://vicon-help.atlassian.net/wiki/spaces/Shogun17/pages/13536932)
- [removeFromClip](https://vicon-help.atlassian.net/wiki/spaces/Shogun17/pages/13536946)
- [resetClip](https://vicon-help.atlassian.net/wiki/spaces/Shogun17/pages/13536972)
- [selectClipObjects](https://vicon-help.atlassian.net/wiki/spaces/Shogun17/pages/13537266)
- [setActiveClip](https://vicon-help.atlassian.net/wiki/spaces/Shogun17/pages/13537290)
- [setActiveLayer](https://vicon-help.atlassian.net/wiki/spaces/Shogun17/pages/13537244)
- [tileClips](https://vicon-help.atlassian.net/wiki/spaces/Shogun17/pages/13537110)