home *** CD-ROM | disk | FTP | other *** search
- /* Umlaute konvertieren */
-
- OPTIONS RESULTS
-
- u=GetClip("Umlaute?")
- IF ~u THEN DO
- 'SetKey "ä" `Insert "ä"`'
- 'SetKey "Ä" `Insert "Ä"`'
- 'SetKey "ü" `Insert "ü"`'
- 'SetKey "Ü" `Insert "Ü"`'
- 'SetKey "ö" `Insert "ö"`'
- 'SetKey "Ö" `Insert "Ö"`'
- 'SetKey "ß" `Insert "ß"`'
- END
- ELSE DO
- 'SetKey "ä" `Insert "ae"`'
- 'SetKey "Ä" `Insert "Ae"`'
- 'SetKey "ü" `Insert "ue"`'
- 'SetKey "Ü" `Insert "Ue"`'
- 'SetKey "ö" `Insert "oe"`'
- 'SetKey "Ö" `Insert "Oe"`'
- 'SetKey "ß" `Insert "ss"`'
- END
-
- SetClip("Umlaute?", ~u)