Answered
How to pass the arguments from JSX to UXP Script
Dear all,
I'm writing the code using Extend Script (JSX) and planning to call the UXP script with Arguments, through doScirpt mode
//==================================================//
var argsArray = ["Hariharasudhan", "test1", "test1", "process done"];
var Processing_connectURL = app.doScript("/Applications/Adobe InDesign 2023/Scripts/Scripts Panel/Workflow_Development/InDesignSource/createsh.idjs", 1431522407, argsArray);
//==============================================//
But I received the "createsh.idjs" file
//===========================//
const script = require("uxp").script;
alert(script.args);
alert(script.args);
//===============================//
showing alert is empty.
Kindly resolve any one, really I will appriciate
