AppleScript mystery
AppleScript mystery
- Subject: AppleScript mystery
- From: David Crowe <email@hidden>
- Date: Tue, 20 Apr 2004 22:49:01 -0700
Can anybody explain why:
set theString to "abc def"
repeat with aCharacter in theString
display dialog "> " & (class of aCharacter)
return
end repeat
Produces the output "> string", yet:
set theString to "abc def"
repeat with aCharacter in theString
display dialog (class of aCharacter)
return
end repeat
Produces the output "TEXT"?
- David Crowe
_______________________________________________
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.