Hi, Tim,

I see three issues in your code. The first one:

if you want to insert something you can try:

foreach txt insert_txt [
    fp: insert fp txt
]

Ladislav


> I am attempting to insert text into a file:
> I have a series of strings defined thus:
> insert_txt: ["first new line" "second new line" "third new
line"]
> ;; at some point in the file, I attempt to insert
> ;; the strings with the following code:
> foreach txt insert_txt
> [
>   ;insert first fp newline
>   insert first fp txt
> ]
> with "insert first fp newline" commented out
> the elements are inserted
> in REVERSE order.
> Why is this happening? What am I doing wrong?
>
> with "insert first fp newline" enabled, nothing
> at all is inserted. Why is this?
> if I use the code: insert first fp "**",
> "**" is inserted.
>
> I would greatly appreciate anyone's help here!
> Thanks
> Tim
>
>
>
>

Reply via email to