How to find the radius of the filter ?
Of action received the follow scripts.
I want to change the name of the script layer, depending on the radius of the user-defined filter. How do I find used and set this value to new layer name?
//Blur{
jamEngine.jsonPlay
(
"surfaceBlur",
{
"'Rds '":
{
"<unitDouble>":
{
"'#Pxl'": 9
}
},
"'Thsh'":
{
"<integer>": 255
}
},
DialogModes.NO
);
}
//Name{
jamEngine.jsonPlay
(
"select",
{
"target":
[
"<reference>",
[
[
"layer",
[
"<name>",
"Low=9"
]
]
]
],
"makeVisible":
[
"<boolean>",
false
]
},
DialogModes.NO
);
}