- Print
- DarkLight
- PDF
Article summary
Did you find this summary helpful?
Thank you for your feedback
Description
Toggles the visibility of the specified app object(s).
Input Parameters
Name | Type | Required | Description |
---|---|---|---|
tokensOrNames | Text | Yes | Comma-seperated list of app object token(s) or name(s) |
visible | Boolean | Yes | Visibility (true = visible, false = invisible) |
Returns
No return value.
Examples
// hide app objects [10] and [15]
app.visible("[10], [15]", false);
// show app objects [10] and [15]
app.visible("[10], [15]", true);
Remarks
By default, all app objects are visible. 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]