Re: weird clipboard behaviour
Re: weird clipboard behaviour
- Subject: Re: weird clipboard behaviour
- From: Dave Johnson <email@hidden>
- Date: Wed, 14 Nov 2001 12:11:10 -0500
on 11/14/01 11:26 AM, Jon Pugh at email@hidden wrote:
>
At 8:42 AM -0500 11/14/2001, Dave Johnson wrote:
>
> I found this last night and thought I was just sleep deprived. But it is
>
> still weird this morning and I've duplicated this on two different machines
>
> and in OS 9.1 and 10.1.
>
>
>
> The script:
>
>
>
> set test_string to "abcdefghijklmne"
>
>
>
> display dialog (offset of "e" in test_string)
>
>
>
> set the clipboard to test_string
>
>
>
> set test_string2 to the clipboard
>
>
>
> display dialog (offset of "e" in test_string2)
>
>
>
> display dialog test_string2
>
>
>
>
>
> The first 'offset of "e"' gives me 5 as I would expect. However after a trip
>
> through the clipboard offset can no longer find "e". It returns 0. I've
>
> tried many different variations (copy vs set) added "as string" etc. but it
>
> comes out the same. Any ideas?
>
>
It looks like a bug in the offset command, although I don't have any idea what
>
could be causing it. It looks like the clipboard is definitely involved as
>
removing it (i.e. copy the string instead) makes things work, but I don't see
>
it having any obvious effect. The strings are the same, with the same length
>
and no obvious junk.
>
>
So, I see the behavior too, and have no idea what's happening.
>
>
Jon
>
_______________________________________________
>
applescript-users mailing list
>
email@hidden
>
http://www.lists.apple.com/mailman/listinfo/applescript-users
>
If the clipboard is loaded in the "normal way" ie with a select and
copy/cut, it works ok. (eliminating the "set the clipboard to test_string"
line) Also if you the copy out to :
set test_string2 to contents of (the clipboard as string)
it works in OS 9.2, But not X!
very weird
Thanks for confirming
Dave