Re: reading a file >32Kb
Re: reading a file >32Kb
- Subject: Re: reading a file >32Kb
- From: Helmut Fuchs <email@hidden>
- Date: Thu, 13 Mar 2003 21:08:24 +0100
AppleScript still seems not to be able to handle strings larger than
32Kb correctly. You should be fine if you fall back to using text
item delimiters though (but be aware they are case sensitive!).
Something along these lines should work:
set saveTIDs to AppleScript's text item delimiters
set AppleScript's text item delimiters to "SaveRGBImagesPrefix"
set containsIt to (count temp's text items > 1)
set AppleScript's text item delimiters to saveTIDs
if containsIt then
HTH,
Helmut
_______________________________________________
applescript-users mailing list | email@hidden
Help/Unsubscribe/Archives:
http://www.lists.apple.com/mailman/listinfo/applescript-users
Do not post admin requests to the list. They will be ignored.