You're welcome! Great to hear
177 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.
178 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.
179 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?
180 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.
181 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.
182 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.
183 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.
184 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.
185 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!
186 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
187 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
188 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)
189 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.
190 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.
191 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
192 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!
193 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!
194 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
195 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.
196 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?
197 2015-08-29 04:23:54
Re: Menubar icon size in 3.5.4 update reduced (2 replies, posted in Feature Requests)
Thanks, glad you like the update. And I appreciate the way you've asked this - giving me a chance to explain first rather than just demanding I change it back. Very refreshing.
So the reason I've made the menu item smaller is that you can now drag files directly to the top of the screen to open the Dropzone grid so you don't need the wider target. Also, some users have many apps in their menu bar so having a wide icon that took up two spaces was less than ideal. Also if you want to open the grid to click an action you can assign a keyboard hotkey to do this now (the default is F3). So you don't really need to click on the menu item any more either. This means that the menu item is now mainly for showing task status and for clicking to open the grid if you forget about the keyboard shortcut.
That said, there's a bit of an issue that has arisen under the El Capitan beta where when you drag files to the top of the screen it sometimes opens Spaces. I'm not sure why or if this is a bug (maybe it's for dragging files between spaces). But I can't see a way to disable it and it makes dragging files to the top of the screen to open Dropzone not work nearly as well, so I might have to reconsider bringing back the wider menu item if I can't find another way to workaround this.
I could probably make having the wider menu item an option. I've resisted this so far because I feel that many apps are bad in that they try to please everyone by having options for everything and the app just becomes a complicated mess of Preferences. I'd prefer to just make a decision that works for the majority of users and then not have a lot of options, because in my experience opinionated software is the best.
198 2015-08-26 09:02:03
Re: Crash (1 replies, posted in Dropzone Support)
This doesn't sound like a Dropzone problem. I'd recommend you check Console.app for errors or visit your local computer repairer for assistance.
199 2015-07-03 08:00:06
Re: Email icon Grayed out (2 replies, posted in Dropzone Support)
The mail action will show in your add actions list (shown when you click the white plus in the top left of the Dropzone 3 grid) if you're using either Mail.app or Mailplane as your default mail client.
If you're using another email client (such as Outlook) you can try adding your Mail client as an 'Open Application' action and that will usually let you just email a file.
200 2015-06-23 00:57:15
Re: Tooltips for file names (5 replies, posted in Feature Requests)
Awesome Patrick! So glad you like it