Re: Simple rot-13 encoding script
Re: Simple rot-13 encoding script
- Subject: Re: Simple rot-13 encoding script
- From: Paul Berkowitz <email@hidden>
- Date: Tue, 20 May 2003 19:35:29 -0700
On 5/20/03 7:09 PM, "Michelle Steiner" <email@hidden> wrote:
>
> Can anyone tell me what's wrong?
>
>
Well, for one thing
>
>
currentChar = currentChar + 1
>
>
Should be
>
>
set currentChar = currentChar + 1
>
>
For another, you're not making any distinction between upper and lower
>
case, so everything will come out lower case if it works at all.
?? If this is AppleScript we're speaking, you must mean:
set currentChar to currentChar + 1
--
Paul Berkowitz
_______________________________________________
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.