• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
RE: Word length
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: Word length


  • Subject: RE: Word length
  • From: "Ruby Madraswala" <email@hidden>
  • Date: Wed, 6 Oct 2004 16:16:18 -0400
  • Thread-topic: Word length

Only reason for not posting the script was it worked on OS 9 and thought there is a logical reason for this behavior. (it's on an English based system).

set button_name to "OK"
set user_stuff to display dialog ¬
	"Enter Number:" default answer ¬
	" " buttons {"Exit", "OK"} default button "OK"
set button_name to button returned of user_stuff
set style_no to text returned of user_stuff

set fname to "HD:" & style_no & ".tem"
set file_ref to open for access file fname with write permission

set button_name to "OK"
set code_list to {}
repeat until button_name is "Exit"
	set user_stuff to display dialog ¬
		"Enter Code:" & code_list default answer ¬
		" " buttons {"Exit", "OK"} default button "OK"
	set button_name to button returned of user_stuff

	if button_name is "OK" then
		set staple_code to text returned of user_stuff
		set eof_value to get eof file_ref
		write staple_code & return to file_ref starting at (eof_value + 1)
		set lencnt to length of staple_code
		display dialog staple_code
	end if
end repeat
close access file_ref

Ruby
 -----Original Message-----
From: 	applescript-users-bounces+rubym=email@hidden [mailto:applescript-users-bounces+rubym=email@hidden]  On Behalf Of Graff
Sent:	Wednesday, October 06, 2004 3:39 PM
To:	AppleScript AppleScript Users
Subject:	Re: Word length

You probably should post the script on this list, otherwise we really
can't tell what's wrong with it.

Offhand I'd say that maybe this is a unicode issue but I can't really
tell without more information.  Are you on a non-English system?

- Ken

On Oct 6, 2004, at 2:17 PM, Ruby Madraswala wrote:

> I have a script which work fine on OS 9.Now I want to use the same
> script on OS 10.
>
> The script
> -	prompts user to enter words
> -	creates a list of entered words.
> -	Reads the list and matches with filename and copies the content of
> the file in a new file.
>
> In OS 9 the length of word is 4 and for the same word the length in OS
> 10.3.5 is 9. It seems like it is padding with spaces which is not
> visible. any reason Why? And how can I resolve this.

 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Applescript-users mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden


 _______________________________________________
Do not post admin requests to the list. They will be ignored.
Applescript-users mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

  • Follow-Ups:
    • Re: Word length
      • From: Graff <email@hidden>
    • Re: Word length
      • From: Gnarlodious <email@hidden>
  • Prev by Date: Re: Variable Ponderance
  • Next by Date: Re: 2nd try: Choose folder dialog and then process contents?
  • Previous by thread: Re: Word length
  • Next by thread: Re: Word length
  • Index(es):
    • Date
    • Thread