我的 JS 文件中具有此功能 ...
function get_HexForegroundColor()
{
var chosenFunction = 'pickHexForegroundColor()';
csInterface.evalScript(chosenFunction, function(result)
{
hexForegroundColor = result;
// etc...
});
};
从 JSX 文件的函数获取值。
function pickHexForegroundColor()
{
var decimal_Color = app.foregroundColor.rgb.hexValue;
var hexadecimal_Color = decimal_Color.toString(16);
return [hexadecimal_Color];
};
出于某些原因,我想从 JS 向 JSX 传递变量。就我而言,该怎么办?
谢谢您的时间!