I'm trying to notify these characters with applescript, however, different characters show up in the bubble. Is there a way to escape these so it would show up correct.
çığöşüäßâéîû
special character notify with applescript
Have you tried their Unicode equivalents?
Try my software!
#define ADIUMX pimp //by me
#define QUESTION ((2b) || (!2b))
Have you hugged a programmer today?
#define ADIUMX pimp //by me
#define QUESTION ((2b) || (!2b))
Have you hugged a programmer today?
This worked for me:

Code: Select all
set desc to "ç?gösüäßâéîû" as Unicode text
notify with name ¬
"Test Notification" title ¬
"Test Notification" description desc application name "Growl AppleScript Sample - Long"
