I am trying to automate XCode via AppleScript. But I'm new to
AppleScript, and have problems to figure out some basic things.
I need to access my current text selection, and also the name and the
path of the currently edited open source document.
I found out that I can get the path via
set thePath to associated file name of window 1
so I could also determine the document name by truncating the path if
it is not available directly.
I managed to get the name and path information form text documents
within the currently open project document (set theDoc to text
document 1), but I don't know how to find out which one is currently
displayed in the text editor. I also have no idea how to get the
current text selection.