Edit in GitHubLog an issue

Changelog

InDesign v19.2

Updated

  • [BREAKING CHANGE] UXP logs and console.log paths have changed.

InDesign v19.0

Plug-Ins menu lists the installed UXP plugins and their panel entrypoints.

Plug-Ins Menu

Fixed

  • Random app hang issue when invoking doScript() from UXP plugins.
  • App crashes at quit when event handlers are registered.

UXP v7.3.0 & UXP v7.2

New

Updated

Fixed

  • Tab Navigation not working for several SWC Components is now fixed
  • Spacebar doesn't work on SWC Button component when reached via TAB navigation.
  • Support for Alerts

UDT v2.0

New

  • UXP Playground to experiment with APIs. Click on the 'Playground' tab next to 'Developer Workspace' to select an app and get started.

Updated

  • Plugin actions are surfaced based on the 'Status' of your plugin in the Developer Workspace

InDesign v18.5

UXP Plugins are now available! Get started here.

UXP v7.1

New

HTMLElement now supports

Updated

Fixed

  • SVGElement: The color of the fill attribute using a CSS variable will resolve as per the variable value. For now, please test this fix by enabling the feature flag in your plugin manifest "featureFlags" : { "enableFillAsCustomAttribute" : true }. This flag will be turned on by default in the next UXP release.
Copied to your clipboard
// CSS variable
html {
--iconColor: yellow;
}
<svg height="100" width="100">
<circle cx="50" cy="50" r="40" stroke="black" stroke-width="3" fill="var(--iconColor, red)" />
</svg>
// shows a yellow circle

UXP v7.0

New

Changed

  • HTMLVideoElement: 'metadata' is the default value for preload attribute
  • FS API: No need for the file:// protocol

InDesign v18.4

InDesign APIs

Added

  • [BREAKING CHANGE] Mounting APIs
    InDesign DOM APIs are no longer available in the global scope. You must mount the APIs first before using them. Plus, you can now access different versions of DOM APIs.
  • Events
    UXP scripts now have the functionality to handle standard events that InDesign emits. You can use the eventListenerobject to catch such events.
  • Arguments in UXP Scripts
    Arguments can now be passed to a UXP script, and can be used within the script.
  • Setting script result
    UXP scripts now have a "result" associated with them. Set a result for a script for debugging puposes as well as passed to another script for utilization.
  • Menus
    UXP scripts now have APIs which can be used to add new menu items, remove existing menu items etc. Read more.
  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2024 Adobe. All rights reserved.