Designate the startup file folder bridge CC

Using bridge CC 2015 on Windows 10.  Seems that I used to be able to designate a specific folder of photos to display whenever I have run Bridge; for example: when I start my computer and bridge starts automatically with the opening of the session, as I put it to do, I want it to display the contents of my folder 'Sources' custom on my C: drive every time, regardless of the folder in which I saved for last.  Is this possible?  PLS/TNX

Yes, a script can do, in this example, it is by default on the desktop:-

#target bridge
onDocLoadEvent = function( event ){
if(event.object instanceof Document){
if( event.type == "create" ){
    //Specify your startup Folder below.
app.document.thumbnail = Folder(Folder.desktop);
    }
}
return { handled: false };
};

app.eventHandlers.push( { handler: onDocLoadEvent} );

Tags: Bridge

Similar Questions

  • jsbin file is not working in the startup scripts folder

    Hello

    I use ID CC 2015.3 in Windows 7. I placed a jsxbin in the startup scripts folder, but it is not for me. Please notify.

    Have you seen this?

    Indiscripts: JavaScript binary ramming (CS4/CS5)

  • is it possible to write a script that will display the script files folder in the tree

    is it possible to write a script that will display the script files folder in the tree

    Yes :-)

    In your previous post, someone suggested to search for the file "SnpCreateTreeview.jsx", because it would just be the asked.

    The script can be found here, just accept the EULA and download the example scripts of Bridge CS3. (For some reason it is not in CS4 samples because as far as I know)

    Here's a version with small changes, it is up to you to point the script in the folder 'root' right, because this is, needless to C: on PC:

    ////////////////////////////////////////////////////////////////////////////
    ADOBE SYSTEMS INCORPORATED
    Copyright 2007 Adobe Systems Incorporated
    All rights reserved
    //
    NOTE: Adobe permits you to use, modify, and distribute this file according to the
    the terms of the Adobe license agreement accompanying it.  If you received this file from one
    source other than Adobe, then your use, modification or distribution of it is required in advance
    written permission from Adobe.
    /////////////////////////////////////////////////////////////////////////////

    /**
    @fileoverview shows how to use an item in the tree list and how to capture events with
    functions of recall or script registered event listeners.
    @class shows how to use an item in the tree list and how to capture events with
    functions of recall or script registered event listeners.

    Its use


      
      
      

        
    1. Run the extract in the ExtendScript Toolkit (see Readme.txt).
         
    2. Enlarge / reduce the list items
         
    3. Check the JavaScript Console to see the events captured by the elements of the TreeView.
       

    Description


     
     

    Creates two hierarchical list of TreeView items. One is static, with a fixed set of point
    nodes that you can expand and collapse. The other is dynamic; Item nodes are added and removed as
    the need for a view of the file system.
     
     

    The list items in the TreeView control to display the folders and files custom images.  When you add items to the
    TreeView list, type 'article' is used for elements of the leaf and 'node' to the elements of the container.
     
     

    Dynamic TreeView captures events in two different ways. It uses callback functions to capture the
    node to expand and collapse events and selection changes and also registers an event listener to
    capture double-click events.

    @constructor constructor
    */
    #targetengine "session".
    function SnpCreateTreeView()
    {
    /**
    The context in which this code snippet can work.
    @type string
    */
    this.requiredContext = "\tNeed runs in the context of the Bridge\n."

    /**
    The location of this script file system
    @type file
    */
    var scriptsFile = new File($.fileName);
       
    /**
    The location of the file system resource PNG file used to represent folders
    @type file
    */
    this.folderIcon = new file (scriptsFile.path + "/ resources/Folder_16x16.png");

    /**
    The location of the file system resource PNG file used to represent files
    @type file
    */
    this.fileIcon = new file (scriptsFile.path + "/ resources/Story_16x16.png");

    /**
    The root folder that will be used for the dynamic tree
    @type string
    */
    this.rootFolder

    If (File.fs is "Windows")
    {
    this.rootFolder = "C:";
    }
    on the other
    {
    this.rootFolder = ' / ';.
    }
    }

    /**
    Functional part of this code snippet. Creates the ScriptUI window and its components,
    and defines the behavior.
    @return true if the code snippet is executed as scheduled, false otherwise
    Boolean @type
    */
    SnpCreateTreeView.prototype.run = function()
    {

    $.writeln ("about to"run SnpCreateTreeView");
       
    Create the window
    var win = new window ("palette", "SnpCreateTreeView", undefined, {resizable: false});

    Create the Committee for the static TreeView control
    sPanel var = win.add ('Committee', undefined, 'TreeView Élément') static;
    sPanel.alignment = ["fill",""];
    sPanel.alignChildren = ["fill",""]

    Create a TreeView list
    sTv var = sPanel.add ("treeview");
    sTv.preferredSize = (300, 200);
    Add static items to the list, in a hierarchical structure.
    for (var i = 0; i)<>
    {
    sTv.add ("node", "Item" + i);
    for (var j = 0; j)<>
    {
    sTv.items [i] .add ("item", "Sub Item" + j);
    }
    }

    Create the Committee for the dynamic TreeView control
    var dPanel dynamic = win.add ('Committee', undefined, 'TreeView Élément');
    Create a TreeView list
    TV digital var = dPanel.add ("treeview", undefined);
    dTv.preferredSize = (400, 300);
    Create the root node element
    var aNode = dTv.add ("node", "/");
    Pair it with an image of the icon
    aNode.image = this.folderIcon;

    Define a handler for the double clicks
    myOnDoubleClick = Function
    {
    if(e.detail == 2)
    {
    $.writeln ("double click");
    }
    }

    Adds the handler as an event listener to the TreeView element.
    dTv.addEventListener ("click", myOnDoubleClick);

    Keep a reference to this object
    var that = this;

    Define an event handler for when a node is expanded
    dTv.onExpand = function (point)
    {
    $.writeln (item.text + "is now expanded.");
    nextItem var = item;
    var path = "";
    goUp var = true;

    While (goUp)
    {
    path = "/" + nextItem.text + path;
    nextItem = nextItem.parent;
    If (instanceof TreeView nextItem)
    {
    goUp = false;
    }
    }

    Remove all children of this element
    item.removeAll ();

    var Ref = new file (that.rootFolder + path);
    If (Ref instanceof Folder)
    {
    children var = ref.getFiles ();
    for (var i = 0; i)<>
    {
    If (children [i] instanceof file)
    {
    Item.Add ("node", children [i] p:System.NET.mail.MailAddress.DisplayName);
    Item.Items [i] .image = that.folderIcon;
    }
    on the other
    {
    Item.Add ("item", children [i] p:System.NET.mail.MailAddress.DisplayName);
    Item.Items [i] .image = that.fileIcon;
    }
    }
    }
    }

    Define an event handler for when a node is reduced
    dTv.onCollapse = function (point)
    {
    $.writeln (item.text + "is now reduced.");
    }

    Define an event handler for when the selection changes
    dTv.onChange = function()
    {
    $.writeln ("selection changed");
    }

    Display the window
    Win.Show ();
       
    $.writeln ("Ran SnpCreateTreeView");
       
    Returns true;
    }

    /**
    "main program": construct an anonymous instance and run
    as long as we are not unit - test this code snippet.
    */
    If (typeof (SnpCreateTreeView_unitTest) == 'undefined') {}
    new SnpCreateTreeView () .run ();
    }

  • Audio beats cannot find the .startup file

    Whenever I try to use the Panel Audio Beats on my Pavillion DV6-6102AX it comes up with the error "cannot find the .startup file! I use Windows 7 64 bit and I also tried to reinstall the audio driver IDT, but that did not solve my problem.

    Hello

    Try the following.

    Open Windows Control Panel, open programs and feature, do a right click the entry for IDT Audio and choose uninstall.  Once this process is complete, restart the laptop.

    When windows has completely recharged, download (unless you already have this file) and install the latest driver IDT at the link below.

    FTP://ftp.HP.com/pub/SoftPaq/sp52501-53000/sp52658.exe

    Yet once, once the installation is complete, reboot the laptop.

    Kind regards

    DP - K

  • My phone displays an error message on the startup file and it mentions the installation media, how can I solve this problem?

    Separated from this thread.

    My phone displays an error message on the startup file and it mentions the installation media, how can I solve this problem?

    Hello

    See if that helps you.

    Do a Safe Mode system restore to before the problem started.

    http://bertk.MVPs.org/html/restoresysv.html

    How to access Safe Mode

    http://www.bleepingcomputer.com/tutorials/how-to-start-Windows-in-safe-mode/#Vista

    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

    If it doesn't, try a startup repair and / or a system restore using a DVD of Vista from Microsoft

    Manufacturers recovery disks normally do not have Service Options; they are normally a relocation to the factory only settings option.

    Here is the guide to repair Options using a Vista DVD from Microsoft.

    If a friend or a work acquantance of yours has one, you can borrow and use it for repairs.

    http://www.bleepingcomputer.com/tutorials/repair-Windows-with-Windows-Startup-Repair/

    Table of contents

    1. Overview of Windows Vista repair options
    2. How to perform an automatic repair of Windows Vista using Startup Repair
    3. Advanced Tools Overview
    4. Conclusion

    If you do not or can not borrow a Microsoft DVD there is a download of a file ISO of Vista Startup Repair available that you can put on a Bootable floppy to make the above startup repair and that the method is recommended by a large number of posters in these Forums.

    Unfortunately, you have to buy it.

    Here is a link to it:

    http://NeoSmart.net/blog/2011/Windows-Recovery-discs-updated-reinstated/

    @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@

    There are several methods to reinstall Vista.

    This can help you (download files and make your own DVDs):

    http://www.heidoc.NET/Joomla/technology-science/Microsoft/57-Windows-Vista-direct-download-links

    And here are instructions on how to burn ISO disk images:

    http://www.SnapFiles.com/get/isorecorder.html

    The download links and information on how to make the ISO file, and then create the Setup DVD above are at this link:

    "How to download a Vista ISO and create a Setup DVD or USB"

    http://www.Vistax64.com/tutorials/301852-Vista-ISO-download-create-installation-DVD-USB.html

    "How to create a USB of Vista Installation key '

    http://www.Vistax64.com/tutorials/181538-USB-bootable-Vista-installation-Flash-thumb-drive.html

    ___________________________________

    You can contact your computer manufacturer and ask them to send you a set of recovery disks.

    They should do this for a small fee.

    To reinstall Vista using their recovery disk/s, you start from the 1st recovery disk they provide and follow the manufacturer's instructions to reinstall:

    You need to change the Boot order to make the DVD/CD drive 1st in the boot order:

    How to change the Boot order in BIOS:

    http://pcsupport.about.com/od/fixtheproblem/SS/bootorderchange.htm

    "How to replace Microsoft software or hardware, order service packs and replace product manuals.

    http://support.Microsoft.com/kb/326246

    ___________________________________

    And if you have never received a recovery disk when you bought your computer, there should be a recovery on the drive Partition hard reinstall Windows how much you bought your computer.

    The recovery process can be started by pressing a particular combination of the key or keys at startup. (Power on / start)

    Maybe it's F10, F11, Alt + F10, etc., depending on the manufacturer.

    Them or us ask the right sequence of key.

    ___________________________________

    Some manufacturers have more available Vista recovery disks.

    If this happens, you may need to try this instead:

    You can also borrow and use a Microsoft Vista DVD, which contains the files for the different editions of Vista (Home Basic, Home Premium, Business and Ultimate) must be installed. The product key on your computer / Laptop box determines what Edition is installed.

    Other manufacturers recovery DVDs are should not be used for this purpose.

    And you need to know the version of 'bit' for Vista, as 32-bit and 64-bit editions come on different DVDs

    Here's how to do a clean install of Vista using a DVD of Vista from Microsoft:

    "How to do a clean install and configure with a full Version of Vista '

    http://www.Vistax64.com/tutorials/117366-clean-install-full-version-Vista.html

    And once the operating system is installed, go to your computer manufacturer's website and get the latest drivers for your particular model or laptop computer.

    And phone Activation may be necessary when you use the above installation method.

    "How to activate Vista normally and by Activation of the phone '

    http://www.Vistax64.com/tutorials/84488-activate-Vista-phone.html

    See you soon.

  • Can not install or save the file to the Program Files folder

    Just got a new laptop with Windows 7 64-bit and 32-bit computer.  When downloading from internet programs or the installation of the CD, it won't let me save in either the Program Files folder.  (I like to keep things organized and in one place, so I would like to save all my programs it).   When I try to register there, an error message appears and says "you don't have permission to save in this location.  Contact the administrator to back up to this location.  You want to save in the case of Cheryl instead? »

    I am the only user on the laptop and, therefore, the administrator.   It upset me enough that there are already files Program Files (2).  Not being not able to save the rest of my programs it makes me crazy.  Help, please!

    Well first off your laptop will be either using win7 64 bit or win7 32 bit, it cannot use both, and since you're talking about 2 files Program Files then this would indicate the 64-bit version of victory

    If its 64-bit version of victory, the 32-bit programs install in the Program files (x 86) and 64-bit programs installed in the Program Files folder.

    Trying to force programs to be installed in the wrong folder will save issues, and may result in this program does not work.

    So no, you cannot install to a specific folder in Program Files

  • I just downloaded Bridge and Photoshop.  I don't see the RAW files in Bridge.

    I just downloaded Bridge and Photoshop.  I don't see the RAW files in Bridge.

    Hello!

    Is Photoshop (tell us the version) upward to date?

    You may need to get a new version of Camera Raw that supports your camera files (only one?) outputs.

    It lists the minimum version you need: https://helpx.adobe.com/camera-raw/kb/camera-raw-plug-supported-cameras.html

  • How to change the location of the offline files folder?

    I would like to use offline files, but all of my offline files are stored on my main partition of hard local. In Sync Center, I can only manage the size of offline files folder, but not the location. Is it possible to change the location of the folder on another partition or hard drive offline files?

    Check out the following

    http://blogs.technet.com/filecab/archive/2006/12/12/moving-the-offline-files-cache-in-Windows-Vista.aspx
     
    http://www.msblog.org/2006/12/29/moving-the-offline-files-cache-in-Windows-Vista/

  • When I load a .jpg file to 'My pictures' one '. the jpg.files folder is automatically created.

    This also happens if I copy the folder that contains the .jpg files in "my pictures". It does not occur if I load the .jpg files on a disc of external data storage.

    The PC is a Sony Vaio VGN-FW53GF, Windows 7 Home Edition has been pre-loaded when purchased from the merchant. I've upgraded to Windows 7 Professional immediately after purchase.

    If I delete the '. jpg.files' C drive - "My pictures", I noticed that the '. jpg.files' are re-created.

    I don't know any 'file settings' to stop this behavior.

    Hello

    1. this happens only with jpg files?
    2. you use "Vaio content analyzer" or something related to the "Photoshop CS / elements"?

    Check the following suggestions and.

    Method 1:
    Open Vaio content analyzer, go in settings and uncheck the three options.
    1 video analysis
    2 image analysis
    3. analysis of music

    Method 2: Run a full scan using the Microsoft Safety Scanner.

     

    Refer to this link:

    http://www.Microsoft.com/security/scanner/en-us/default.aspx

    Note: The data files that are infected must be cleaned only by removing the file completely, which means that there is a risk of data loss.

    I hope this helps.

  • In the Air of iOS, which is the path to the included file that exceeds the .fla file folder?

    I have the 'assets' above 'src' folder folder where the .fla file is. The assets folder is included through air iOS publish setting in Adobe Flash Professional CS6, but I'm having trouble accessing it.

    the directory structure looks like this. Main.As is the class of document for my project.

    c: 
      /project
        /assets
        /bin
        /lib
        /src
          /Main.as
          /Main.fla

    Now, if the project was a project of action script, I can normally access the assets folder using a path like "... / assets. But it says in the Air for iOS project, that the file is not there.

    In the iOS Air publish setting window, it indicates the path to the included file is 'c:\project\assets' while when I move the active folder under folder src, he says just 'active' and then it can be accessed simply by using a path like '\assets '.

    Does anyone have an idea where the included file?

    It was that I had to simply put "/" in front of the track. I was able to access the directory of iOS using ' / assets "instead of just"active "... I still need to use ' c: / project/assets "to access the directory from my local pc from my directory the document root is ' c: / project/assets/src" but I guess that's no big deal. Thanks for your advice.

  • Topic appears in the baggage files folder


    I right click on the folder of files of luggage to insert a file, using 'luggage select the file' dialog box to insert a .pdf link, when asked if I want to replace the old file, I click OK, but the file does not appear in the folder of hatracks.

    When I look at all the files in the SSL folder, I see the file I want to put a link in the folder of files of baggage, but for some reason, he doesn't his way to where I can then drag it to a topic.

    Should I attempt to import in a topic or copy paste the link in a topic?

    Thank you, all.

    Open the rhbag.apj project file in a text editor. The PDF appears here? Looks like it's not. You can manually change the file to add the reference. Then when you open your HR project, the PDF file should appear in the folder of luggage. P.S. The usual warning to take backups before manually changing the HR files applies

  • Develop settings lost after re - import the DNG files folder

    I use LR for several months and - after having used to his peculiararities - love the program.

    Tonight, I have re-imported one file to DNG files that I had previously withdrawn from the LR - using the import option 'Add '. When the develop module, I noticed that my original develop settings have been applied is no longer.

    These settings are not incorporated into the DNG files? How could they get lost? They wrote, too, when re - import files?

    I always back up my catalog before closing. The backup of the catalog contain the original developing parameters for these DNG files?

    I know I must have done something wrong! Please inform and explain. Thank you.

    The development parameters are only in the catalog, unless you have autowrite to xmp enabled in the settings of catalog or if you have selected the image files and saved the data to develop with Cmd/Ctrl-S to the selected files.

    When you delete the files from the catalog data to develop will too after a short period (allows cancellations) so if you have a catalog of backup with files until they have been removed you could open that save develop settings and then open your catalog of work and read the metadata,.

    I keep all my files in Lightroom, as it is my rather than the operating system file manager. Then I know (I hope) where everything is and what happens to my images.

    Your type of error has been made by many, including myself and is part of the learning curve for digital imaging!

  • I'm unable to open the photo files in Bridge. I use a pc and receive the following notice in Adobe Bridge "bridge met a mind is impossible to read the cache. Please try to purge the central cachepreferencestocorrect the situation. "I have purged the cache

    I can't open photos in Bridge.  On my pc, I got a message saying that the bridge could not read the cache and suggested I purge the cache in the preferences.  I did and now cannot open some files photo 270 000.  Can anyone help?

    Hi Elsa

    Please see Troubleshooting of errors, freezes | Adobe Bridge | Windows, Mac OS and purge the cache when you reset preferences.

    Or you can follow the steps below.

    Windows: -.

    • Navigate to C:\Users\Username\AppData\Roaming\Adobe\Bridge Cs6
    • Rename the folder Cache Cache.Old

    Let us know if this helps

    Concerning

    ~ Assani

  • the MMM file folder

    I tried to download microsoft money and apparently clicked a bad link, now I have a folder mmm that guard appearing on my office no matter how many times I try to remove, uninstall something like that.

    Thanks, but my son walked, it is a function of the backup of an ap called mind my money file, it has been set to download constant backups I had removed the PA, but had to be uninstalled and it was an AP of windows 8 you could not remove the normal route

  • Why is trusted Installer the owner of the Program Files folder when I'm the only admin who uses my computer?

    My Program folder files is owned by TrustedInstaller and it does not allow deletions of programs from this file. Furthermore, I can't take over the property of the folder or the files in the folder, so that they cannot be deleted. How can this be changed?
    I use Vista Home premium on a Sony laptop and a Gateway desktop computer.

    Hi winndriver,

    Thank you for using answers Forum.

    The TrustedInstaller is a process used by Vista. I probably own records so he has the correct permission to install the software in them.

    Here is a link to a thread that will show you how to take possession of the file:

    http://social.answers.Microsoft.com/forums/en-us/vistasecurity/thread/1b7d8696-58b3-4EF9-a7d1-4029c45e6845

    Please let us know how it works.

    Chris
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

Maybe you are looking for

  • Install the sierra

    Should beta testers I reinstall sierra? Thank you.

  • Transfer pictures to the Nikon Coolpix camera laptop

    How can I transfer photos from my camera to a folder on my computer, how to create a folder, and then dump the images accordingly...

  • AnyConnectVPN users cannot access remote vpn site-to-site

    Hello- We have two 5510 s ASA one in 8.4 (4) and the other to 8.2 (5) in a site to site VPN configuration. All internal traffic is working smoothly. A: site/subnet 192.160.0.0 - local (8.4 (4)) Site/subnet b: 192.260.0.0 - distance (8.2 (5)) VPN user

  • Help JS (random tip)

    I am trying to generate a random trick when I click on 'See next tip' below...but can't make it work:)I run the JavaScript code for the button.From the code and variables, you see something wrong?

  • Update 2.5.2 to 2.10

    What is the recommended procedure to upgrade a 2.52 environment volume 2.10 app?