Well, if you are on Vista or 7, there is a hack you could try using, though I have never tested the code against it. Basically, open a command prompt and navigate here:
Code:
C:\Users\[user]\AppData\Roaming\MaxwellDotNET\Plugins\Common\Presets
If you ran dir here, you would find there is a file named Presets.xml (assuming you have saved a preset at some time -- otherwise the file may not exist). We are going to move this file to another location, and then create a symlink which points to the moved file:
Code:
> copy Presets.xml "\\macbookpro\Drop Box\Presets.xml"
> del Presets.xml
> mklink Presets.xml "\\macbookpro\Drop Box\Presets.xml"
So, I have copied the file over to my macbook, deleted the original, and then created a symlink named for, and pointing to, the moved file. The plugin code will not know this has happened, so if it works it works, and if it doesn't, I can't predict the results. However, a quick test here shows that it works. I am not sure what would happen if the network were down.