getIssue

Syntax

Session.getIssue(brandName, issueName);

Parameters

brandName string

The name of the Brand.

issueName string

The name of the Issue.

Return value EntIssue

The EntIssue object on the Studio Server.

Description

The getIssue() method returns an EntIssue object from the Studio Server for the provided Brand name and Issue name. If the object does not exist it will throw an exception.

Examples

Get a specific Issue

// Get the Issue "1st Issue" from the Brand "WW News".
var issue = app.entSession.getIssue("WW News", "1st Issue");
alert("Issue ID: " + issue.id + ", name: " + issue.name);

Supported versions

Adobe Version Supported
2023
2024
2025
2026

See also