---
title: "setActiveLayer"
canonical: "https://help.vicon.com/space/Shogun18/13667951/setActiveLayer"
format: markdown
---
# Description

Sets the active layer in the active clip using the name of the layer or a relative position.

An error is generated if there is no clip on the scene.

## Functional area

NLE

# Command syntax

## Syntax

|  |
| --- |
| `setActiveLayer "layerName"[-next] [-prev]` |

### Arguments

| **Name** | **Type** | **Required** | **Comments** |
| --- | --- | --- | --- |
| `layerName` | string | yes | The name of layer to make active. Can be skipped if one of the flags `-next` or `-prev` is set. |

### Flags

> Macro (scroll-tablelayout)

| **Name** | **Flag arguments** | **Argument type** | **Exclusive to** | **Comments** |
| --- | --- | --- | --- | --- |
| `next` | 0 | — | prev | Set the next layer in the active clip as an active |
| `prev` | 0 | — | next | Set the previous layer in the active clip as an active |

## Return value

void 

> Macro (scroll-pagebreak)

## Examples

```plaintext
// Print the name of the active clip
string $clip = `getActiveClip`;
print $clip;
 
// Add new layers
string $name = "new layer";
addLayer $name;
addLayer $name; 
addLayer $name;
setActiveLayer $name;
setActiveLayer -next;
setActiveLayer -prev;
```

# Additional information

## Related commands

- [addLayer](https://vicon-help.atlassian.net/wiki/spaces/Shogun18/pages/13669124)
- [addToClip](https://vicon-help.atlassian.net/wiki/spaces/Shogun18/pages/13668874)
- [copyClip](https://vicon-help.atlassian.net/wiki/spaces/Shogun18/pages/13668840)
- [cropClip](https://vicon-help.atlassian.net/wiki/spaces/Shogun18/pages/13668804)
- [deleteClipData](https://vicon-help.atlassian.net/wiki/spaces/Shogun18/pages/13668736)
- [flatten](https://vicon-help.atlassian.net/wiki/spaces/Shogun18/pages/13668718)
- [getActiveLayer](https://vicon-help.atlassian.net/wiki/spaces/Shogun18/pages/13668708)
- [getClips](https://vicon-help.atlassian.net/wiki/spaces/Shogun18/pages/13668396)
- [moveClip](https://vicon-help.atlassian.net/wiki/spaces/Shogun18/pages/13668974)
- [offsetClips](https://vicon-help.atlassian.net/wiki/spaces/Shogun18/pages/13668264)
- [removeFromClip](https://vicon-help.atlassian.net/wiki/spaces/Shogun18/pages/13668232)
- [removeLayer](https://vicon-help.atlassian.net/wiki/spaces/Shogun18/pages/13668230)
- [resetClip](https://vicon-help.atlassian.net/wiki/spaces/Shogun18/pages/13668252)
- [selectClipObjects](https://vicon-help.atlassian.net/wiki/spaces/Shogun18/pages/13668041)
- [tileClips](https://vicon-help.atlassian.net/wiki/spaces/Shogun18/pages/13668586)