Re: quark question
Re: quark question
- Subject: Re: quark question
- From: Ben Waldie (AppleScript Guru) <email@hidden>
- Date: Fri, 3 Jan 2003 20:58:34 -0500
Pete,
On Friday, January 3, 2003, at 07:21 PM, Peter Kincaid wrote:
I have a droplet which when two quark doc's are dropped onto it, it
will
open the documents select every text box from doc. 1 and duplicate it
to doc
2. The problem I am having is making sure the correct document is
opened as
doc. 1.
Did you try getting the name of document 1 and document 2?
tell app "Quark"
set doc1Name to name of document 1
set doc2Name to name of document 2
end
Then, you could bring the desired document to the front...
tell app "Quark"
show document "AEX002A"
end
Hope this helps,
- Ben
Benjamin S. Waldie
AppleScript Guru
http://www.applescriptguru.com
http://www.applescripttraining.com
_______________________________________________
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.