On 12/04/2007, at 10:32 pm, Charilaos Skiadas wrote:
Well we would need to see some part of the command to be able to help. Assuming it's written in the shell, I would guess you are using "echo" to print the results. Then you would want to have "echo -n" instead. Echo automatically adds a newline at the end.
Yes, I should have supplied the script first ... this is what I'm doing:
osascript <<-APPLESCRIPT set title to "vanishing" if title is not "" then tell application "FileMaker Pro Advanced" if not (exists window "HTitles") then open alias "HD:HTitles.fp7" set cell "_Search" of layout "Titles" to title do script "Search For Title" set href to cell "_Search" of layout "Titles" set img to cell "_thumb" of layout "Titles" end tell if href is not "" then set title to img & href end if return title APPLESCRIPT
I'm not sure what I can change in the above to ensure there's no newline returned to TextMate?