sponsored ads

randomize bridge

sponsored ads

Is there a way to randomize browse order in adobe bridge?

I've read there is no way. But i still can't believe. It's realy necessary for some actions. Asked Jul, 01 2012
add commentflag 

sponsored ads

answer this question

A workaround (involves some simple programming): duplicate a folder's content and add a random number in front of every picture filename, then sort those duplicated files by name. Here's the Python way to do it:

import os, random, shutil
directory= r"C:\Documents and Settings\User\My Documents\My Pictures\New Folder"
listdir = os.listdir(directory)
directory_new=directory + os.sep + '_rnd'
try:
os.mkdir(directory_new)
except:
print 'error creating directory'
for filename in listdir:
if filename[:4] == '_rnd':continue
shutil.copy(directory + os.sep + filename,
directory_new + os.sep + str(random.randint(0,1000)) + '_' + filename) Answered Jul, 25 2011
vote up 1 vote down

A workaround (involves some simple programming): duplicate a folder's content and add a random number in front of every picture filename, then sort those duplicated files by name. Here's the Python way to do it:

    import os, random, shutil
    directory= r"C:\Documents and Settings\User\My Documents\My Pictures\New Folder"
    listdir = os.listdir(directory)
    directory_new=directory + os.sep + '_rnd'
    try:
        os.mkdir(directory_new)
    except:
        print 'error creating directory'
    for filename in listdir:
        if filename[:4] == '_rnd':continue
        shutil.copy(directory + os.sep + filename,
                    directory_new + os.sep + str(random.randint(0,1000)) + '_' + filename)

Answered Jul, 21 2010
vote up 0 vote down

For Android, there is RandomRing: https://market.android.com/details?id=com.dicren.randomring&hl=en For the iPhone, I’ve never managed to find a solution that can be accessed outside of Cydia.

Answered Nov, 15 2011
vote up 0 vote down

Your Answer

community wiki:

The Verified Code is to stop spamming. It will be hidden once your reputation reached 100.
or
Create one

Options

sponsored ads

Download related software from AFC

Alter Bridge 1.0

Last Updated: Oct 10, 2011
License:
Filesize: 702KB

Continue to downloadPower by Afreecodec.com