enable
  • 30 Oct 2020
  • 1 Minute to read
  • Contributors
  • Dark
    Light
  • PDF

enable

  • Dark
    Light
  • PDF

Article Summary

Description

Toggles the enabled status of the specified app object(s).


Input Parameters

NameTypeRequiredDescription
tokensOrNamesTextYesComma-seperated list of app object token(s) or name(s)
enableBooleanYesEnabled (true = enabled, false = disabled)

Returns

No return value.


Examples

// disable app objects [10] and [15]
app.enable("[10], [15]", false);
// enable app objects [10] and [15]
app.enable("[10], [15]", true);

Remarks

By default, all app objects are enabled. However, your scripts can alter this behavior based on user selections or other criteria to deliver a more streamlined user experience.

Token Syntax

This function uses the native app object token syntax, which refers to the ID of an object within your app that is enclosed in square brackets.

Example: [10]


What's Next