Re: Making a list
Re: Making a list
- Subject: Re: Making a list
- From: Hans Haesler <email@hidden>
- Date: Thu, 6 Jun 2002 11:32:33 +0200
On Thu, 6 Jun 2002, email@hidden wrote:
>
I am trying to construct a list of tab marks for use in XPress 4.11
[snip]
>
set end of tabsBefore to ((("Position:" & ((i-1)*icw)+(icw/2)) as
>
list) & "justification:centered") as list
[snip]
>
How do I make a string append to a list without the quotes?
Easy: don't put them in your command. And don't use 'as list' but
wrap the record in braces. Please try this:
---
set end of tabsBefore to {justification:centered, position:(((i - 1) * icw) + (icw / 2))}
---
Hans Haesler <email@hidden>
_______________________________________________
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.