Your workflow is unique đšâđ» - tell us how you use Dropbox here.
Forum Widgets
Live stream link capability and copyright payment to holder
Not sure how this all works but what, since no one discussed it, it is now dead? How are people supposed to know about it? You are missing a good opportunity to retire rich here!! Doesn't anyone understand the implications of a successful plan to do what my idea described. A Live Stream Link onto drop box that viewers could watch a live production. AND, have a payment plan that we could sell the stream to viewers. DropBox through a payment plan could also then pay the copyright fees to the music license holder so we no longer get flags and muted for having live music on our production!tmstudio3 days agoExplorer | Level 322Views0likes1CommentTell Us How You Use Dropbox
No two people use Dropbox in exactly the same way. Some of you rely on it every day for work, others for school, creative projects, or keeping life organized - and we love that. Weâd love to hear how youâre using Dropbox today - is it something you use once in a while, is it part of your day to day, are there any features you canât live without? What workflows have you built that save time or reduce friction? And where do you see opportunities for us to do better? Your tips, ideas, and honest feedback really help us to make sure we can share useful tips, and they help other community members discover new ways to get more out of Dropbox too. Share your experience, favorite features, or suggestions in the comments below. Your voice truly helps shape the future of the Dropbox community đ The Dropbox Community TeamAmy5 days agoCommunity Manager865Views2likes7CommentsDropbox Desktop vs CloudMounter, Cyberduck, Mountain Duck for Multiple Accounts - which is better?
Hey, I just joined the Dropbox Forum and need some advice from experienced users. I really hope someone has some tips. Iâve got two Dropbox accounts (personal + work) and Iâm thinking whether to stick with the native Dropbox client or switch to a cloud manager, since I might add Google Drive later. I want everything to show up like normal folders in Finder/Explorer, avoid syncing the entire cloud to my disk, survive sleep/reconnects, and not lose share permissions when moving files between accounts. If youâve done this, is it smarter to keep the Dropbox app if you only use Dropbox, or go with a manager from the start? Curious about real-world differences in speed, caching, stability and security â short tips or quick examples would be much appreciated.flymenta5 days agoExplorer | Level 394Views0likes2CommentsExciting news â weâve launched the new Sync & Storage Dashboard in the Dropbox desktop app!
This dashboard makes it easier than ever to keep your files organized and your computer running smoothly. With just a click, you can: Get a real-time view of your sync status Quickly spot and resolve any syncing issues Monitor and manage how much disk space your Dropbox files are using Adjust your selective sync and storage preferences To open the dashboard, click the Dropbox icon in your taskbar (Windows) or menu bar (Mac), then select your avatar and choose Sync & storage. Weâre excited for you to try it out! Please let us know your thoughts and how we can make it even better!Megane Racat13 days agoDropbox Product Manager6.7KViews6likes14CommentsOpen Feedback to Dropbox
Dropbox has the potential to make a huge leap forward not by inventing something radically new, but by strengthening and bundling the tools it already has. Hereâs what could truly make the difference for many professionals and businesses: Reintroduce and expand Dropbox Capture. Today, video and screen recording is a daily need for teams, customer support, and remote collaboration. This tool should not disappear, it should be stronger. Enhance and integrate e-signature features. Make them more seamless, reliable, and part of the core Dropbox experience. For the Italian market, enabling authentication with the CIE (Electronic Identity Card) would make the application a must-have and extremely interesting. Boost DocSend, review its interface and make it more user-friendly. The tool is powerful, but its full potential emerges only when itâs intuitive to use and included in an accessible bundle. Significantly increase file sync capacity. Many users complain about the ~500,000 files (or performance decline oltre i ~300.000 file sincronizzati sul computer) limit in Dropboxâs desktop app The winning move would be to create a unified, accessible bundle that combines these tools at a fair price. This would bring clear, tangible value to users and set Dropbox apart from competitors in a meaningful way. Sometimes innovation is not about the next big thing. Itâs about making what you already have indispensable.EnzoBastianello26 days agoHelpful | Level 6210Views3likes4CommentsExport bulk Dropbox image folder URLs
The problem is that there are hundreds of photos. It is almost impossible to enter the URL for each rock sample manually. I need some automated way to copy the Dropbox photo URLs. You can use my script below to generate bulk Dropbox links. * Requires TamperMonkey or GreaseMonkey addon in your browser. I wrote a script to accomplish this: https://gist.github.com/tyhallcsu/89d6c672f93e94cbd651354b587306b4 This is a userscript that extracts image URLs from a Dropbox page and copies them to the clipboard when a button is clicked. The script creates a button on the page that, when clicked, scrolls to the bottom of the page, waits for new images to load, and extracts the image URLs. The script then joins the URLs into a string separated by newlines. It then puts the links on your clipboard with ?dl=0 replaced with ?raw=1 parameters. Floating button in the bottom right of your browser window: Code: // ==UserScript== // name Extract All Dropbox Image URLs in Folder to Clipboard // @namespace https://www.example.com/ // @version 3 // @description Extracts image URLs from a Dropbox page and copies them to the clipboard when a button is clicked. // @author Tyler Hall Tech // match https://www.dropbox.com/* // Grant GM_setClipboard // Grant GM_log // run-at document-idle // ==/UserScript== (function() { 'use strict'; const SECONDS_TO_WAIT_FOR_SCROLL = 1; // adjust as needed const DOWNLOAD_URL_REPLACEMENT = '?raw=1'; // function to get all image link elements function getImageLinks() { const imageLinks = document.querySelectorAll('a.dig-Link.sl-link--file[href*="dl=0"]'); return Array.from(imageLinks).map(link => link.getAttribute('href').replace(/\?dl=0$/, DOWNLOAD_URL_REPLACEMENT)); } // function to scroll to the bottom of the page and wait for new images to load async function waitForImagesToLoad() { window.scrollTo(0, document.body.scrollHeight); await new Promise(resolve => setTimeout(resolve, SECONDS_TO_WAIT_FOR_SCROLL * 1000)); } // create an array to hold the image URLs let imageUrls = []; // add a button to the page that will copy the image URLs to the clipboard when clicked const copyButton = document.createElement('button'); copyButton.classList.add('dig-Button', 'dig-Button--primary', 'dig-Button--standard', 'copy-urls-button'); copyButton.textContent = 'Copy all URLs'; copyButton.style.position = 'fixed'; copyButton.style.bottom = '20px'; copyButton.style.right = '20px'; copyButton.style.zIndex = '9999'; document.body.appendChild(copyButton); // add a click event listener to the button copyButton.addEventListener('click', async function() { let finished = false; let numUrls = 0; while (!finished) { // scroll to the bottom of the page and wait for new images to load await waitForImagesToLoad(); // get the newly loaded image URLs const newImageUrls = getImageLinks().filter(url => !imageUrls.includes(url)); imageUrls.push(...newImageUrls); // check if all images have been loaded finished = newImageUrls.length === 0; numUrls += newImageUrls.length; } // join the image URLs into a string separated by newlines const imageUrlString = imageUrls.join('\n'); // copy the image URL string to the clipboard GM_setClipboard(imageUrlString, 'text'); // disable the button and change the text to indicate that the URLs have been copied copyButton.disabled = true; copyButton.textContent = `${numUrls} URL(s) copied to clipboard`; // enable the button again after 3 seconds setTimeout(function() { imageUrls = []; copyButton.disabled = false; copyButton.textContent = 'Copy all URLs'; }, 3000); }); })(); Hope this helps someone. I hope Dropbox natively supports this some day. But for now, this works just fine đsharmanhall1 month agoHelpful | Level 56.1KViews2likes9CommentsQr code to have others directly upload photos to my Dropbox account.
Maybe an idea would be to offer a qr code to upload pictures to a set drive drive. So like at a wedding the guests could scan the code and upload the photos they have took that day/evening. Then maybe within your dropbox you could team up with a photo printing company like FreePrints and get prints straight away quoit the need of downloading photos and uploading to their site Just an idea ChrisChrisarden761 month agoNew member | Level 214KViews4likes1CommentHow to access your Dropbox through TV devices.
Dear Dropbox community, I would like to share my latest project with you, namely Dropbox MSX. Dropbox MSX is a service that allows you to access your Dropbox files (i.e. videos, audio files, and images) through TV devices. It uses the Media Station X application for visualization and the latest Dropbox API to browse and access files. I hope you enjoy using it and I would be very happy to receive feedback and ideas for improvement. For screenshots and more information, please see the showcase Dropbox MSX on this page: http://msx.benzac.de/info/?tab=Showcases Alternatively, please have a look at this YouTube video: https://www.youtube.com/watch?v=8T5XjKig6Jw Best regards, benzac13KViews0likes1CommentiPad Files app not showing Dropbox folders and how I managed to solve this.
In working with a new iPad, I discovered that the Files app was not correctly connecting with Dropbox. No Dropbox folders showed up either in the Files app or in any other app with an open feature that would normally have been able to access Dropbox files. Oddly, when I clicked âDropboxâ in the list, there were no folders but I could add a folder and that new folder showed up in Dropbox on other devices (and in the Dropbox app on the iPad)! So there was some connection but not much⊠This is not an issue Iâm experiencing on any of my other Apple devices (Mac or iOS). In talking with Apple support they had me delete the Files app, reboot the iPad, then reinstall âFiles.â I did that, but to no effect. They escalated me to a higher level of support but while I was waiting, I also deleted Dropbox and reinstalled it. That solved the problem! So, if you canât access your Dropbox folders and files in Files or in any of your other iPad apps, just delete and reinstall Dropboxâproblem solved (at least for me, this time!)DaleC1 month agoHelpful | Level 66.2KViews4likes6CommentsSmall tip if you want to print a list of files in a Dropbox folder!
I've been trying to figure out if there is a way to print a list of files in a Dropbox folder. Turns out there is no such printing option. However, if you select all files with Ctrl + A, all subfolders and files will be selected. Then using Ctrl + C, copy to the clipboard. Next open a new blank Word document and paste (Ctrl +V) to the Word page. All text should appear from the Dropbox webpage. Delete whatever text is not relevant and you'll be left with a list of folders and files.cengelma1 month agoExplorer | Level 312KViews2likes12Comments
