I am working on a script for Photoshop where the user can change some text by entering it in the script panel.
By problem is that when the user hits "enter" to create a new line, the output displays a "missing character" glyph instead of a line break.
topRow.add ("statictext", undefined, "Text layer contents:");
var myText = topRow.add ("edittext", undefined, undefined, {name: 'myText', multiline: true});
myText.characters = 20;
myText.preferredSize = [150,60];
myText.active = true;
Any ideas how to resolve this?