---
title: "admGetAllScreens"
canonical: "https://support.appfire.com/space/PSJ/15481419/admGetAllScreens"
format: markdown
---
> Macro (aura-html)


|  |  |  |  |
| --- | --- | --- | --- |
| **Syntax** | admGetAllScreens() | **Package** | adm |
| **Alias** |  | **Pkg Usage** | allScreens() |

## Description

> Macro (excerpt)
> 
> Returns the list Screen names that exist in the Jira environment.

Returns the list Screen names that exist in the Jira environment.

## Return Type

**String []**

The requested names of all screens.

## Example

```
string [] sSchemes = admGetAllScreens();
for(string sName in sSchemes) {
	runnerLog(sName);
	// Default Screen
	// Workflow Screen
}
```

## See also

> Macro (contentbylabel)