Copy link to clipboard
Copied
Hi,
is there a way to display german "Umlaute" (ä, ü, ö) in a Custom Dialog?
I tried UTF-8 hexadezimal, Unicode, Javascript - Type and the Html - Type.
Unfortunetly all didnt work!
Examples:
--------------------- Standard ------------------
dlg.msgPnl.SaveAsBtn = dlg.msgPnl.add('button', [370, 47, 470, 70], "Ändern...", {name:'select'});
--------------------- UTF-8 hexadezimal ------------------
dlg.msgPnl.SaveAsBtn = dlg.msgPnl.add('button', [370, 47, 470, 70], "%C3%84ndern...", {name:'select'});
--------------------- Unicode ------------------
dlg.msgPnl.SaveAsBtn = dlg.msgPnl.add('button', [370, 47, 470, 70], "U+00C4ndern...", {name:'select'});
--------------------- Javascript ------------------
dlg.msgPnl.SaveAsBtn = dlg.msgPnl.add('button', [370, 47, 470, 70], "%C4ndern...", {name:'select'});
--------------------- HTML ------------------
dlg.msgPnl.SaveAsBtn = dlg.msgPnl.add('button', [370, 47, 470, 70], "Ändern...", {name:'select'});
Copy link to clipboard
Copied
Works fine for me in CS2/3 and 4 using Windows 7
var dlg = new Window('dialog');
dlg.SaveAsBtn = dlg.add('button');
dlg.SaveAsBtn.text= "Ändern...ä ü ö";
dlg.center();
dlg.show();
Copy link to clipboard
Copied
Paul, your code works fine for me Leopard Mac CS2…
Copy link to clipboard
Copied
hm, mine doesnt.
Guess the reason is that im using utf-8.
Copy link to clipboard
Copied
UTF-8 supports those chars, even Extended ASCII does. There must be some other reason it's not working for you.
Find more inspiration, events, and resources on the new Adobe Community
Explore Now