Based on Chrono's upload to ftp tool (http://www.donationcoder.com/Forums/bb/index.php?topic=493.0) , i created a new tool that can be configured with SC, to upload images to and ftp very fast. The best feature about it, is that you can set a final url, that'll be changed with the name of the file you upload, and copied to clipboard.Since most of the times, if you upload an image to an ftp, you want to paste it's name elsewhere, this tool, after uploading the file, will place it's url in the clipboard. ----//---- It's syntax is the following: FtpUploader.exe FTPURL USERNAME PASSWORD FILENAME FILEURL ex: FtpUploader.exe ftp.FooBar.com FooUser FooPassword Screenshot.png http://foobar.com/foouser The final url copied to the clipboard is "fileurl/filename". In the example, it'd be http://foobar.com/foouser/Screenshot.png If you don't wish to use with the copy to clipboard function, just don't put anything under FILEURL, and nothing will be copied. ----//---- This script is directed essentially at the SC's external tools configuration, so, here's the instructions on how to configure it on SC: Goto tools menu -> configure external tools. Click Add. Select some name for it (like for example: "upload to ftp"). Browse for it's file Fill "arguments" field with FTPURL USERNAME PASSWORD "%file%" FILEURL. ----//---- This script can also upload a file with a unique name (which has the current time attached to it's name). To use that option, append 'Stamp' to the end of the filename (after the extension). So, the commandline incuding this option would be: FtpUploader.exe FTPURL USERNAME PASSWORD FILENAMEStamp FILEURL ex: FtpUploader.exe ftp.FooBar.com FooUser FooPassword Screenshot.pngStamp http://foobar.com/foouser And the arguments for SC are: FTPURL USERNAME PASSWORD "%file%Stamp" FILEURL ----//---- More information in the forum thread: http://www.donationcoder.com/Forums/bb/index.php?topic=3051 jgpaiva.donationcoders.com