私の問題は、私が「ヴュルツブルク」(ドイツ)に住んでいるということですが、私のスクリプトは「ヴュルツブルク」と言っています。「¸」を「ü」にするにはどうすればよいですか?
--Get the IP
set webadress to do shell script "curl http://bot.whatismyipaddress.com/"
set tURL to "http://whatismyipaddress.com/ip/" & webadress
--Get the location
set TID to AppleScript's text item delimiters
set webadress to do shell script "curl " & tURL
set AppleScript's text item delimiters to ¬
"<tr><th>City:</th><td>"
set text1 to text item 2 of webadress
set AppleScript's text item delimiters to "</td></tr>"
set location to text item 1 of text1