Bill Hunter <[email protected]> sez:

> I'm still looking for some syntax examples for writing to the end
> of an open BBEdit document using Applescript.
>

Depending which formulation you prefer :-), either:

====
tell application "BBEdit"
    tell text window 1
        select insertion point after (last character)
        set selection to "finis"
    end tell
end tell
====

or

====
tell application "BBEdit"
    select insertion point after last character of text window 1
    set selection to "finis"
end tell
====


Regards,

 Patrick Woolsey
==
Bare Bones Software, Inc.                        <http://www.barebones.com>
P.O. Box 1048, Bedford, MA 01730-1048

-- 
You received this message because you are subscribed to the 
"BBEdit Talk" discussion group on Google Groups.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/bbedit?hl=en
If you have a feature request or would like to report a problem, 
please email "[email protected]" rather than posting to the group.

Reply via email to