ozean wrote:if you google
symlinks "os x"
help does not seem far! If I read the search results correctly, the third hit of this generic search for symlinks seems to refer specifically to using symlinks to get things to work in Dropbox… I suggest you take a look at that!

Thanks for the tip ozean! I followed your advice and found the Dropbox tutorial for using symlinks created with Automator:
http://dl.getdropbox.com/u/87620/Dropbo ... mlinks.pdf
The process looks very straight forward. However, the tutorial document mentions a few Automator files that I did not have. But I was able to find another solution--creating symlinks using Apple Script's
Script Editor. Here's a link to the page that describes the process:
http://www.macworld.com/article/58177/2 ... links.html
Here's the script to paste into Script Editor:
on run
open {choose file with prompt ¬
"Choose a file to create a symbolic link:" without invisibles}
end run
on open the_files
repeat with i from 1 to (count the_files)
try
set posix_path to POSIX path of (item i of the_files)
if posix_path ends with "/" then set posix_path to ¬
text 1 thru -2 of posix_path
do shell script "ln -s " & quoted form of posix_path ¬
& " " & quoted form of (posix_path & ".sym")
end try
end repeat
end open
Using this script, I was able to create an Apple Script application with which to create symlinks. I then moved my Bookends documents file back to it's original location. Next, I created symlinks of, both, my BE documents file and application support file (which includes my custom formats, filters, etc.). Finally, I moved both of these symlinks to my Dropbox folder . . . AND IT WORKS! I now have a fully accessible copy to my database and custom formats stored on the web.
What's more, in theory, I should be able use Dropbox to store another copy of the symlink of these files on another BE and Dropbox enabled computer (or on a thumbdrive). Then, if I edit my BE database from a remote location, the database will be synced back to Dropbox (ie like a cloud), and then synced to any other computer that I have linked to my Dropbox account. And as long as I'm okay with the free 2gb, then this is all a free solution. Pretty sweet!
One more thing: Dropbox also has an iPhone app. I don't have an iPhone so I can't test anything related to using an iPhone in concert with Dropbox and BE. In any case, the possibilities seem evident.