On 14 Jul 2007, at 17:55, Ken Shmidheiser wrote: > Do know how to load a handle to a block of text into a > CFMutableStringRef? Ken, I'm not real clever with handles, pointers and all that jazz, but maybe you can mess around with this: //--------------- include "Tlbx CarbonEvents.incl" toolbox fn CFStringCreateWithBytes( CFAllocatorRef alloc, const UInt8 *bytes, CFIndex numBytes, CFStringEncoding encoding, Boolean isExternalRepresentation ) = CFStringRef dim as Str255 s dim as CFStringRef string s = "'Twas brillig, and... all that stuff" string = fn CFStringCreateWithBytes( 0, @s[1], s[0], _kCFStringEncodingMacRoman, _false ) if ( string ) then CFShow(string) RunApplicationEventLoop() //--------------- Bernie