studioPreferences
Syntax

app.studioPreferences;
Access
readonly
Parameters
Return value StudioPreference
The WoodWing Studio preference settings object.
Description
The studioPreferences property gives access to the WoodWing Studio preference settings by returning a StudioPreference object. Use this object to read or change preferences such as routing message alerts, panel font sizes, smart caching, object style application, and placed image handling.
Examples
Read a preference value
// Get the current routing message alert preference.
var pref = app.studioPreferences.showRoutingMessageAlert;
alert("Routing message alert: " + pref);
Set a preference value
// Show a routing message alert when an object is sent to the current user.
app.studioPreferences.showRoutingMessageAlert =
ShowRoutingMessageOptions.SHOW_SENT_TO_ME;
Supported versions
| Adobe Version | Supported |
|---|---|
| 2023 | ✔ |
| 2024 | ✔ |
| 2025 | ✔ |
| 2026 | ✔ |