Ah, OK I think Dropbox must have changed this recently to require a paid account. I am planning to overhaul the Dropbox action and make it work directly with the API rather than the current method. But this is probably a while away, so unfortunately there's no way around this for now.
177 2016-04-24 05:17:05
Re: No pop-up while dragging request (17 replies, posted in Feature Requests)
It's been added because Apple has made it so dragging to the top of the screen now activates mission control in El Capitan, and as this was the normal method for opening the Dropzone grid this caused problems. Also people often forgot they could drag to the top of the screen, so seeing Dropzones window up there reminds you 'hey you can drag this item here'
But you can disable this feature by opening a Terminal and copy pasting the following command:
defaults write ~/Library/Preferences/com.aptonic.Dropzone3.plist ScreenTopDragEnabled -bool false
And to re-enable:
defaults write ~/Library/Preferences/com.aptonic.Dropzone3.plist ScreenTopDragEnabled -bool true
If you disable it then you can still drag onto the Dropzone menu item.
178 2016-04-24 01:26:22
Re: Sparkle Update (3 replies, posted in Dropzone Support)
Just to update you on this, Dropzone 3.5.5 is now out and includes the latest version of Sparkle.
HTTPS is now used to deliver all Dropzone updates. You can update from the Updates tab in Dropzone or download this update from https://aptonic.com/dropzone3/latest
179 2016-04-24 01:19:05
Re: Is it possible to lock file in Dropzone? (2 replies, posted in Dropzone Support)
I've added this ability in Dropzone 3.5.5. You can now right click on items in Drop Bar and click 'Lock Items' - a padlock will then be overlaid to show you the items are locked and the reference to the files will remain in Drop Bar until you remove them or unlock them and drag them out.
Here's a screenshot:
You can update to Dropzone 3.5.5 by clicking 'Check Now' in the updates in the Preferences or by downloading it from https://aptonic.com/dropzone3/latest
180 2016-04-24 01:12:58
Re: BitLy wouldn't work (14 replies, posted in Dropzone Support)
You're welcome! Great to hear
181 2016-04-24 01:12:18
Re: Dropbox upload not working (6 replies, posted in Dropzone Support)
Did you follow the steps here to get your Dropbox UserID - https://aptonic.com/dropzone/destinatio … ropbox.php
You need to enable Dropbox Public folder by going here: https://www.dropbox.com/enable_public_folder
Then you have to get the right User ID by right clicking a file in the newly created Dropbox public folder and doing 'Copy Public Link'
You can then copy the right User ID out the URL and paste this into UserID field in Dropzone.
182 2016-04-22 06:38:39
Re: BitLy wouldn't work (14 replies, posted in Dropzone Support)
Yep, OK there was a bug in the Bit.ly action under Mavericks. I have updated the action to fix this now. But also you'll need to use the non-Mac App Store version. Delete your current version of Dropzone and re-download it from https://aptonic.com/dropzone3/latest and then re-install the Bit.ly action by going to https://aptonic.com/actions/install.php … name=Bitly
Then verify you are running 1.3 of the Bit.ly action by right clicking on the action in your grid and then check the version field reads 1.3.
Then try dropping a URL on it again. It should work after switching to the non-Mac App Store version of Dropzone and updating the action version to 1.3.
183 2016-04-21 03:47:39
Re: BitLy wouldn't work (14 replies, posted in Dropzone Support)
It should work under Mavericks. What output do you get in the debug console?
184 2016-04-20 02:09:30
Re: BitLy wouldn't work (14 replies, posted in Dropzone Support)
No it's not worth it, Dropzone won't know to use that version.
185 2016-04-16 14:47:06
Re: BitLy wouldn't work (14 replies, posted in Dropzone Support)
Sorry you're out of luck. That action requires a ruby setup that just isn't supported under 10.8.
186 2016-04-16 00:44:25
Re: Is it possible to lock file in Dropzone? (2 replies, posted in Dropzone Support)
No but this feature is urgently needed and will be in an upcoming update.
187 2016-04-16 00:39:03
Re: BitLy wouldn't work (14 replies, posted in Dropzone Support)
Ah, I see the problem - Sorry but OS X 10.8 is no longer supported by Dropzone. I know on our website it says 10.8+ but this is inaccurate. I will update this shortly. You need 10.9 (Mavericks) or later.
188 2016-04-15 20:51:22
Re: BitLy wouldn't work (14 replies, posted in Dropzone Support)
Strange. Possibly something odd about your Ruby version. Did you overwrite the default system Ruby or anything like that? What do you get if you run:
ruby -v
In a terminal?
Also can you please try downloading the non-Mac App Store version from:
https://aptonic.com/dropzone3/latest
And see if you still have the problem.
189 2016-03-20 14:38:57
Re: action: create trello-card (1 replies, posted in Feature Requests)
Cool idea, I've actually been meaning to start using Trello. I've signed up and will have a play. Thanks!
190 2016-03-01 12:22:18
Re: Add clipboard contents to the Drop Bar (2 replies, posted in Dropzone Support)
This is a feature I've wanted to add for a long time - the ability to take a screenshot and then have it auto uploaded using a specified action. I will definitely try and add this at some point.
Also you're right there isn't a way to add to Drop Bar using the API currently. This has been requested many times and is now a priority item. Unfortunately there are a literal ton of other fixes I need to get out first but your feedback has been noted
191 2016-03-01 12:18:44
Re: Sparkle Update (3 replies, posted in Dropzone Support)
Hi - yep, I've looked into this and as you point out there is a security issue here. I'm planning to release a new version with a fully upgraded version of Sparkle with the next update. Thanks for bringing this my attention
192 2016-01-15 23:20:36
Re: Finder Path (4 replies, posted in Dropzone Support)
Yep, the below will do this using Python:
# Dropzone Action Info
# Name: Print Finder Path
# Description: Prints the selected Finder Path to the Dropzone debug console using Python.
# Handles: Files
# Creator: Aptonic
# URL: http://aptonic.com
# Events: Clicked
# SkipConfig: No
# RunsSandboxed: Yes
# Version: 1.0
# MinDropzoneVersion: 3.5
import subprocess
def clicked():
script = '''
tell application "Finder"
try
set theSelection to (target of window 1 as alias)
set theSelection to theSelection as string
set finder_path to POSIX path of (the selection as alias)
on error
set finder_path to null
end try
end tell
if finder_path is not null then return finder_path
'''
proc = subprocess.Popen(['osascript', '-'],
stdin=subprocess.PIPE,
stdout=subprocess.PIPE)
stdout_output = proc.communicate(script)[0]
selected_finder_path = stdout_output
print (selected_finder_path)
dz.finish(selected_finder_path)
dz.url(False)
193 2015-11-30 06:29:05
Re: Ruby Errors with dropbox (3 replies, posted in Dropzone Support)
Yeah that was an issue with an old version of the Dropbox action. It was fixed in an update. It's best to go into the 'User Actions' tab and do a 'Check for Updates' from time to time to make sure you have the newest version of the actions.
194 2015-11-29 07:02:29
Re: Constantly being asked for Serial Number (3 replies, posted in Dropzone Support)
There was an issue with the Mac App Store certificates recently that caused people who had transitioned from the Mac App Store version to the non-Mac App Store to have the trial alert screen show. Rebooting will resolve this.
This was not related to the issue mentioned by musicscramble at the top of this thread which was caused by a different (now resolved) issue.
195 2015-11-24 23:44:28
Re: Need help on Secure Erase script/action (2 replies, posted in Dropzone Support)
Yep, you inspired me to write an action to do this. You can install it here:
https://aptonic.com/actions/install.php … e%20Eraser
Enjoy
196 2015-11-20 12:52:48
Re: Upload clipboard image (1 replies, posted in Feature Requests)
Yeah I've wanted to add a way to do this in Dropzone for ages. Would be an excellent feature
I definitely plan to add this in a future version.
Thanks for the feedback!
197 2015-11-20 12:29:27
Re: ABsolute noob with no idea... (1 replies, posted in Dropzone Support)
That webpage you found is not related to Dropzone at all. That's a different project that just happens to have the same name. You don't need to know how to code to use Dropzone.
Dropzone is a Mac app so your band members would need to be using a Mac to use Dropzone. You can download Dropzone from our website at https://aptonic.com
You are correct about Dropzone being a sort of FTP for dummies though. You can indeed use Dropzone to drop a file onto it and have it upload to a predetermined folder.
Once you have it downloaded and running, you need to add an 'FTP Upload' action. You can do this by clicking the Dropzone menu item and clicking the white plus then choosing 'FTP Upload' from the list - from there you need to put in the settings for your FTP server which you'd need to get from your web host. Once the action is setup you can then drag items to the top of the screen to open the Dropzone grid and then you drop them on the FTP action you've setup.
I've added screenshots below to clarify the steps to set this up. Hope that helps!
198 2015-09-03 13:12:18
Re: Adding Actions to Dropzone 3 (3 replies, posted in Dropzone Support)
Can you try installing the one linked below instead:
http://shipsomecode.com/misc/Send_to_iPhone.dropzone
That one installs fine for me. If that one fails to install for you, please make sure you're using the non-Mac App Store version available from https://aptonic.com/dropzone3/latest
199 2015-09-03 05:47:09
Re: Zamzar Conversion (2 replies, posted in Feature Requests)
Hmmm. I have to admit that looks very interesting indeed. Thanks for showing me that. Of course being a paid service I suppose users would need their own Zamzar accounts which I guess is the only downside.
But I will have a play around with their API and see if an action could be easily made for Dropzone.
200 2015-09-02 06:16:59
Re: Adding Actions to Dropzone 3 (3 replies, posted in Dropzone Support)
What action are you trying to install and what version of Dropzone are you using?