Connect with our global Bridge Community.
Nyligen aktiv
Hi,I would like to open a folder images in Adobe Bridge, -> Open Images in Camera Raw --> Adjust tone curve as 'Medium Contrast" and save it.and thenI would start editing the processed images through photoshop scripting.help me! thanks in advance,rajiv.s
Is it possible to add a custom menu item to Adobe Bridge to call the Liquify Interface?Currently Photoshop CC 2014 is not able to load the liquify interface through and action or script
Cana Br script lunch a menu item?Trying to find out id Dr brown Services placeamatic script can be launched with a menu shortcut or through a script.
I would like to create a Smart Collection that finds all of the image files linked to InDesign documents in a specific folder.I am the yearbook advisor at school and I need to easily find all of the images that have been placed so that we don't reuse images by mistake.I have no scripting experience, so I can't create something myself, and I haven't been able to find anything that does such a thing.Many yearbook design software programs do offer something like this - indicating that an image has been used previously.I guess it would need to look at the metadata of the InDesign Files for the Linked Files and then pit all of the files found there into a Smart Collection. Ideally, I would be able to further limit it by file type. ANd to not include Master pages if so desired (although that would just be a bonus!)I greatly appreciate any assistance anyone can give.Thanks!
hican i send emails directly from bridge cs6 or cc directly from bridge?i found this scripts http://kb2.adobe.com/community/publishing/894/cpsid_89450.htmlbut i run cs6 and cc under windows 7 sp1 64bit and windows 8.1 64bitand i have thunderbird email clientis there a way to make it work?maybe i can install another email clientthanks
Hi,In bridge have five color label but i need more color label.how can i make custom color label with script.would you please help me in this regards with example or snap code etc. cause i'm beginner.thanks.
Dear adobe community,My question is whether or not Bridge can automatically search through an archive of folders and convert any TIFF or DNG files into jpeg format. I am just starting this venture and am wondering where to get started in the scripting SDK or if there are other resources at our disposal. Thank You for your time,~joacampb
Hi - I have updated my photoshop and bridge to the new Photoshop Creative Cloud. I have successfully uninstalled Photoshop but when I look for Bridge CS6 (64 bit) there is nothing. The new Bridge CC is listed. Any suggestions on how I remove the old program?
Hello,Is there a plugin or a way to extend the supported extensions for metadata, especially IPTC Core?
When I put a red label on a File that has xmp metadata, I can retrieve these values later and this will be stored in the file or in a side-car xmp file.But Folder can't have xmp.In this case, where is stored this info about the color label of a Folder? Only in cache? Is there a hidden file ( like, for example ".Bridgesort" hidden file for manually sorted items)I noticed that I I label a folder in a common accessed network from computer A, I can retrieve that value from another computer B by rebuilding the cache parent folder of the labeled folder.It can't be the file C:\Users\[username]\AppData\Roaming\Adobe\Bridge CS6\Cache\data\store because it is inacessible from other computers on network.So is must be some hidden file on the same directory of the labeled folder.
I'm having trouble listening for mouse events in Bridge CS6.This example script works well in Photoshop and Toolkit, but not in Bridge:var w =new Window ("dialog");var b = w.add ("button", undefined, "Qwerty");b.addEventListener("click", function (k){whatsup (k)});function whatsup (p){ if(p.button == 2){ $.writeln ("Right-button clicked.") } if(p.shiftKey){ $.writeln ("Shift key pressed.") } $.writeln ("X: "+ p.clientX); $.writeln ("Y: "+ p.clientY);}w.show ();Other event types like resize or focus work well. The event types that seem to be broken are: mousedown, mouseup, mouseover, mouseout, clickIs there a work-around to this problem?
Hey,I have a custom menu item which lists a lot of content. Actually so much content that it goes off-screen, but doesn't wrap into a second column.I have to hover over the arrow at the bottom of the menu to get it to scroll. That arrow is only visible on the main monitor, not on the second smaller monitor.Is there any way to get multi-column menus instead of scrollable menus? windows start button style.CheersAntoine
Hello,I wrote a script that builds collections from seach results - all working as expected.The part that I didn't figure out was how to select and display the collection after it has been created.I couldn't find a document method for it, .active or .focus don't seem to work.ThanksAntoine
I am trying to connect to a local database. I can use the terminal to execute commands to the database that work. The trick is that I am having difficulty sending those commands from bridge. This is what I have tried. app.system("Mongod --fork"); app.system("mongo"); app.system("use mydb"); app.system("db.testData.update({ name: 'bg'}, { $set: { name: 'Brett Gonterman'}})"); if I type this manually it works. If I send this through Bridge nothing happens. How can I execute this?
Is there a way to control the Output Module of Adobe Bridge CC by using Extendscript?I would like to be able to select a folder, get all the images in the folder and output them from the Output Module according to a template.Is this possible?
I managed to activate the code to change the name of the parent folder containing some images (I put an underscore before de parent folder name).When I did it by hand, the folder and subfolders I was navigating on were visible on the folder window (left side)But I lose the navigation of folders in the left window when I do exactly the same by code.(...) var newPath = decodeURI(Path.parent)+"/_"+name; var bt = new BridgeTalk(); bt.target = "bridge"; // as acções do bridge contêm 1. colocação do _ 2. label 3. organização dos ficheiros por tipo bt.body = "app.document.thumbnail =Folder('"+newPath+"').fsName;"; bt.send(8); bt.pump();(...)... and the left navigation desapears...Is there same cache loosing problem? Can I recreate the last folder navigational window some how with code?
I need help to verify if this works smoothly.... If it is even possible...#target bridge; if ( BridgeTalk.appName == "bridge" ) { if ( Folder.fs == "Macintosh" ) { iconPath = new File("/someplace/MyIcon.icns"); var myFolder = new Folder("/someplace"); // select my folder and tell OSX to change the icon to MyIcon.icns app.system("mac command lines"); } else if ( Folder.fs == "Windows" ) { iconPath = new File("/someplace/MyIcon.ico"); myFolder = new Folder("/someplace"); // select my folder and tell OSX to change the icon to MyIcon.ico &
So I am using Bridge CC for managing audio files and have many many MP3's that I need to copy or move one field of metadata to another.ie: copy "Audio Artist" field to "IPTC Core Creator" Field move "IPTC Core Description" to "Video Log Comment" fieldIs there a script I can add that will let me select multiple files, and have it copy or move all the info from one of these fields to another?ThanksScottsootysax@yahoo.com
So I have a UI with a button that when clicked it skips to the next folder. This works if you have consecutive folder numbers but sometimes the numbers are not consecutive. I need a way to select whatever is next. I will give you a snippet of what i am currently doing. mySkipGroup.addBtn.onClick = function(){ myPgLoc=app.document.presentationPath.slice(0,-3); myPgNum=app.document.presentationPath.slice(-3); myPgNum=Number (myPgNum)+1; myPgNum = myPgNum.toString(); if (myPgNum.length==3){ myPgNum=myPgNum; } if (myPgNum.length==2){
I am looking for a way to delete all image collections from the Collections tab. Is this possible with a custom javascript for Br?
on the mac side I have command line working. But on the pc side I can not figure this out.on mac it is this deleteF="rm -r "+myNumPhoto.slice(0,39)+"imaging/*"; app.system(deleteF); on the PC i am trying to do the same thing with this.deleteF="RD /S \\TEST\test"it runs the command but I get system cannot fine file specified.if I run the slashes the other way it doesn't work at all any suggestions would be greatly appreciated.
Nasty news.One cannot (though Adobe advises!) run the Uninstaller for Photoshop CC.It removes the Bridge: Tools: Photoshop scripts, i.e. "Image Processor."I reinstalled the older (CC) version, and the scripts returned—HOWEVER—the scripts STILL don't work.It launches the CC2014 version, and delivers an error message (attached).
I want to delete part of this tree. I have a folder that has multiple folders inside it. One specific folder needs to be emptied after the operator clicks a button. Do I need to create thumbnails for all of these files to delete them. Or can I just use their file strings and use app.deleteCollection?
hi all,i'd like to know if i can create a list of files in .txt format using Bridge CCIt could be a good way to verify the integrity of an external database.thank you allrafa
I am planing to set up a Drobo network drive and three mac work stations with PSCC and BRCC.Can Bridge run as a network application?In other words if the source files live in the network drive, when computer A makes a Br collection,do computers B and C see the same Br collection? When computer B labels a files do computers A and C see the same label?When computer C makes a PSCC edit do computer B and C see the updated image preview?
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Har redan ett konto? Logga in
Har du inget konto än? Skapa ett konto
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.