Re: Type Text(Sigma) question
Re: Type Text(Sigma) question
- Subject: Re: Type Text(Sigma) question
- From: JJ <email@hidden>
- Date: Thu, 01 Feb 2001 20:25:49 +0100
This works fine for me:
tell application "Tex-Edit Plus"
activate
type text "a" holding down command
end tell
But if you're using Tex-Edit why don't you...
tell application "Tex-Edit Plus"
activate
select contents of window 1
copy
-- or get contents of window 1
end tell
Tex-Edit is one of the most scriptable apps.
You can also try Sdndi's additions
tell application "Tex-Edit Plus"
activate
TypeText "a" with Command
end tell