Re: Quark (mainly) + FileMaker Pro kafuffle
Re: Quark (mainly) + FileMaker Pro kafuffle
- Subject: Re: Quark (mainly) + FileMaker Pro kafuffle
- From: paul mccabe kampu <email@hidden>
- Date: Tue, 23 Oct 2001 15:35:05 -0400
- Organization: Kalsea Lane
A big "Thank you" to Jason (OL), Bob, Mark, and Mick for responding.
The needed 2 lines (can't see the forest for the trees, kinda thing)
were...
Before -
tell document 1
tell text box 1
set text of last paragraph to theFullName & return
set text of last paragraph to theLocation & " " & return
end tell
end tell
After -
tell document 1
tell spread -1 -- this one --thanks Mark
tell text box 1
set text of last paragraph to theFullName & return
set text of last paragraph to theLocation & (ASCII character 7) &
return --thanks Jason
end tell
end tell -- and this one too
end tell
And to Mick, thanks to Mark's suggestion, I made it an auto text box/page
insertion document.
The script works perfectly now.
Thanks again.
--
Paul
http://homepage.mac.com/pkampu/ (*not for the faint of heart*)
"No, TRY not. do or do not. There is no TRY." --Yoda(on error handling)