Does anybody have a pre-made script that will add a specific folder
to the sidebar, or something i can re-code a little to do it.
Before I go off writing anew, I figured I'd just ask.
I suppose you could always try something like this, Chris:
---------------
set f to choose folder with prompt "Choose a folder to add to Sidebar:"
tell application "Finder"
activate
set {c, s} to {count windows, selection}
select f
tell application "System Events" to keystroke "t" using command down
if (count windows) > c then
close front window
else
select s
end if
end tell