'From etoys2.2 of 27 September 2007 [latest update: #1796] on 29 November 2007 at 4:33:58 pm'! "Change Set: macPasteUTF8-bf Date: 29 November 2007 Author: Bert Freudenberg Make pasting unicode strings work on Mac"! !ExtendedClipboardMacInterface methodsFor: 'general-api-read' stamp: 'bf 11/29/2007 16:28'! readTextClipboardData ^self readUTF8StringClipboardData " | bytes | bytes := self readClipboardData: 'com.apple.traditional-mac-plain-text'. ^bytes ifNil: [bytes] ifNotNil: [bytes asText] "! !