Last active
August 29, 2015 14:20
-
-
Save voldmar/7d86ece6f1b37d274767 to your computer and use it in GitHub Desktop.
AppleScript interface to typograf.artlebedev.ru
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on ProcessText(sentence) | |
tell application "http://typograf.artlebedev.ru/webservices/typograf.asmx" | |
return call soap {method name:"ProcessText", method namespace uri:"http://typograf.artlebedev.ru/webservices/", parameters:{|m:text|:sentence as string, |m:useP|:false as boolean, |m:useBr|:false as boolean, |m:entityType|:3 as integer}, SOAPAction:"http://typograf.artlebedev.ru/webservices/ProcessText"} | |
end tell | |
end ProcessText | |
set answer to ProcessText("миру - мир") | |
display dialog answer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment