Answered
ExtendScript
howdy,
what version of javascript is used by extendscript?
wonder if variable resolution in string literals is support, e.g.
var _name = 'Dude'; alert(`howdy ${_name}`);
cheers,
PJ
howdy,
what version of javascript is used by extendscript?
wonder if variable resolution in string literals is support, e.g.
var _name = 'Dude'; alert(`howdy ${_name}`);
cheers,
PJ
Well, Patrick didn't say he was interested in localisation, all he wanted was to use a variable in s string. Seems to me that all he needs is
var _name = 'Dude'; alert('howdy ' + _name);Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.