At 16:05 -0800 9/3/10, Kendall Conrad wrote:

I know how to use AppleScript with BBEdit to move the cursor, replace
content, etc., but can other scripting languages do this as well, such
as Python?


Look at the last section of the BBEdit SDEF dictionary. Use plain AppleScript for the BBEdit specific things and then run a Python script as described there, for example:


tell application "BBEdit"
  tell front window
    activate
    select insertion point before line 2
    run unix filter ...
    run unix script ...
  end tell
end tell

--JD

--
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