Re: [Gimp-developer] cons-array with strings?

2005-02-23 Thread Kent Loobey
On Tuesday 22 February 2005 10:54 pm, Kevin Cozens wrote: Kent Loobey wrote: I would like to know how to insert a string into a cons-array using Script-Fu. Specifically how do I get the following to work? (let ( (foo (cons-array 1 'string)) ) (aset foo 0 my string))

[Gimp-developer] cons-array with strings?

2005-02-22 Thread Kent Loobey
I would like to know how to insert a string into a cons-array using Script-Fu. Specifically how do I get the following to work? (let ( (foo (cons-array 1 'string)) ) (aset foo 0 my string)) ) Clearly aset is not the function to use... I am not trying to get you to figure out