PhotoshopNews offers a script for Bridge

PhotoshopNews has created and offered for free, an Adobe Bridge script to add PhotoshopNews.com as a Favorite right in Bridge. This allows you to view PSN right inside of Bridge-using Bridge like a web browser. There's a search function as well as a Bridge Help menu that will take you directly to Photoshop & Bridge related topics.
The script is installed using an installer so you don't have to mess around with messy subfolders :~)
Oh, yeah...did I mention it's free?
Check out:
PhotoshopNews inside of Adobe Bridge

I am using a little snippet of mine to get this thing going and the ok and cancel buttons are not working. I was wondering if anyone could shed some light on this for me.
var myOKGroup =  myIDinfo.add (“group”);
myOKGroup.orientation = “row”;
myOKGroup.minimumSize.height = 40;
myOKGroup.add(“button”, [15,80,95,110],  “OK”);
myOKGroup.add(“button”, [15,80,95,110],  “CANCEL”);
myOKGroup.alignment=[“right”,”bottom”];
var myResult = myIDinfo.show();
This works in InDesign.

Similar Messages

  • New Scripts for Bridge posted

    From John Nack's blog: http://blogs.adobe.com/jnack/
    New scripts extend Bridge CS4
    Ever wanted to convert just about any file to JPEG from Bridge, or to attach browsed files to email? Photographer/scripter/Bridge quality engineer David Franzen has your back, having posted a set of great scripts to the Adobe Exchange. He writes:
    http://www.adobe.com/cfusion/exchange/index.cfm?event=productHome&exc=20

    Please post the solution how did you solve and what was the exact issue so that if anyone faces the same problem in future they can easily find answer from your post.
    Regards,
    Lalit Mohan Gupta.

  • Indesign Contact Sheet script for Adobe Bridge 1.0.4.6

    Our company currently has all the Adobe CS2 products but as stand alone applications and not part of the Creative Suite. Therefore, we don't seem to have all the functionality of the suite.
    In particular the script to create Contact Sheets from Indesign CS2 of items through the script in Adobe Bridge.
    Can anyone tell me if there is a way to add the functionality of the contact sheet script for Indesign to Bridge without having the Adobe Creative Suite? And Why?
    We are looking for something to replace an extension used by Quark to create contact sheets from Badia software. I am loath to upgrade this extension unless absolutely necessary. We receave thousands of photo's a week and output contact sheets for our editors to pick and choose which photos they want/like.
    Thanks in advance.
    Scott

    [email protected] wrote:
    > Larry
    > for us to process thousands of photos this way would take hours.
    Why? Are you talking CPU hours or staff-hours? Does your workflow require heavy
    user interaction or is something else the problem?
    -X
    for photoshop scripting solutions of all sorts
    contact: [email protected]

  • Script for creating grid spreads of photos from the Adobe Bridge

    Hi,
    Someone once showed me a script for being able to select multiple images while looking at them in the bridge and making grid layouts on pages from them. Does anyone know how to do that? Thanks!

    The only code that I have seen that does this sort of thing is to be found here. http://forums.adobe.com/message/5713633

  • AH Menu Generator & Script Launcher for Bridge

    This is the beta version of a script that automates the creation of a menu for launching scripts from Bridge to run in a target Application. You can easily add and remove scripts from the menu. There are four modes for running scripts:
    1. Left click: runs the script in the target app.
    2. Shift-LeftClick: for each file selected in Bridge, opens the image in the target app, runs the script on it, then closes the image.
    3. Ctrl-LeftClick or Cmd-LeftClick: same as 2 but leaves the images open.
    4. Shift-Ctrl-LeftClick or Shift-Cmd-LeftClick: sends the list of selected files to the target app / script. The list is in the form of a string called ah_BridgeFilesAsString. The target script can 'eval' this to get the original file object list and do whatever it wants with it.
    This script will be developed a lot further in the coming months and will probably get both more powerful and more simple for users. I may well end up running everything from the Edit Dialog, but for now it works via the menus.
    For download, demo pics and instructions:
    http://www.ps-scripts.com/bb/viewtopic.php?t=197
    Andrew

    I don't see the paperclips. I looked in IE also (I normally use Firefox) and not there either.
    At the very bottom of the screen, it says "You cannot download files in this forum", so I suspect that some piece of software is hiding the files from me.
    The entire text in the bottom right corner is:
    You can post new topics in this forum
    You can reply to topics in this forum
    You cannot edit your posts in this forum
    You cannot delete your posts in this forum
    You cannot vote in polls in this forum
    You cannot attach files in this forum
    You cannot download files in this forum
    --John

  • Is there a way to create my own web gallery template for bridge?

    Is there a way to create my own web gallery template for bridge?
    I want to add custom data that is not in any of the templates.
    Pretty much, I'd like to create one from scratch...

    This was discontinuted in CS5 howerver you could migrate that plugin to CS5.  I don`t know if you can do this with CS6.
    To my knowledge they only provided a revised Contact sheet II script for CS6. In my opinion a very bad idea because they should have put all efforts and resources to enhance the Output Module PDF contact sheet that has far more options.
    Still not using web galleries but the goal for web gallery was also to use this in the Adobe Output Module, maybe that provides you the options you want?

  • Script for 'Check Links Before Opening Document' preference

    I'm trying to find the VB script for changing the "Check Links Before Opening Document" checkbox on the File Handling panel in the Preferences dialog? I haven't found any documentation referring to the Links items on that panel.
    Bob

    Thanks for the info.
    Was there a document you pulled this from?
    I have an old document from CS2 days that is invaluable for providing a detailed list of available script methods and properties. Obviously things that have been added in subsequent InDesign releases aren't in this document. Later InDesign CS releases offer script SDKs that contain helpful sample scripts but I don't find a detailed summary similar to one from CS2. Have I just not found them? Or how does one find the script method/property for things not contained in the sample scripts?

  • Script for downloading files from pdf placed on web, script for printing for exchange-

    Looking for java script command to set on button in pdf. We have mp3 and pdfs on our web site, example of URL: http://www.uzlicek.cz/download/Pohadky/O_holcicce_ktera_si_prala_byt_dospela.mp3
    By clicking on button/link in reader I would like to appear a dialog box with offer to Safe file as…
    Any suggestion? In case of using “link tool” the file starts downloading to cache and this is not the objective. In case of using “sound tool”, the file does not appear for saving.
    For exchange the script for Print the current page:
       var n = this.pageNum;
        var pp = this.getPrintParams();
        //pp.pageSubset = pp.subsets.all;
        //pp.printContent = pp.constants.printContent.doc;
        pp.firstPage = n;
        pp.lastPage = n;
        this.print(pp);
    Cheers Martin

    It can't be done using only a PDF file - any link to a URL will simply open your web browser, and whatever handler that browser uses when presented with MP3 files will be triggered (download, play, etc.) - nothing in the PDF can override that handler and force a "save" operation.
    Instead you'll need to configure your website to force downloads (using HTTP headers) and link to those URLs instead; which is a subject outside this forum.

  • Scripting with bridge

    Hello, i am pretty new to this so i am still figuring out how this scripting works
    In general what i want to do is generate a jpg image from an symbols.ai library file and because bridge shows this library in some way, i want to use a script against bridge.
    So now i have found a script from the sdk - SnpSaveAsJPEG and i am trying to understand what is happening because i have no experience with javascript.
    maybe some advice on some good literature is also good?
    can someone please help me with the following questions:
    at the bottom we have "new SnpSaveAsJPEG().run();" that makes the program run
    why is it executing the (at the top) "function SnpSaveAsJPEG()" even if you change that functions name?
    why do we set requiredContext?
    is the "$.level" always needed and why do we set it?
    next we have the method "SnpSaveAsJPEG.prototype.run = function()"
    where does "prototype" come from?
    Why is it executing this function as there is nowhere a reference to this?
    thanks

    Hello Muppet Mark.
    We are using CS 5.5
    Here is the sample code, as found in the sdk(but some little test modifications by me), copyright adobe
    The script is working correct, but i am trying to understand how it does what it does.
    #target bridge
    #targetengine "MainEngine"
    function SnpSaveAsJPEG()
        //The context in which this snippet can run.
         //type String
        this.requiredContext = "\tExecute against Bridge.\nBridge must be running and \n"
            + "at least one thumbnail selected that is not a folder.";
        $.level = 1; // Debugging level
    Functional part of this snippet. 
    Gets a File object for each selected thumbnail, and uses it to
    create a BitmapData object. Uses the BitmapData object to export
    to the JPEG format.
         @return True if the snippet ran as expected, false if no files are selected in Bridge
         @type Boolean
    SnpSaveAsJPEG.prototype.run = function()
        var retval = true;
        if(!this.canRun()) {
            retval = false;   
            return retval;
        // Get the selected Thumbnail objects - only accept these file types
        var thumbs = app.document.getSelection("ai");
        // Go through each of the selected thumbnails
        if(thumbs.length != 0)
            for(var i = 0;i < thumbs.length;i++)
                // get associated File object, ignore folders
                if(thumbs[i].spec instanceof File)
                    var thumb = thumbs[i];
                    // create a BitmapData object
                    var bm = new BitmapData(thumbs[i].spec);
                    if(bm instanceof BitmapData)
                        // create the path and file name
                        var exportFilePath = thumbs[i].parent.spec + "/SnpSaveAsJPEG_" + thumbs[i].name + ".jpg";
                        // create the new file and export the data
                        bm.exportTo(new File(exportFilePath));
        else
            retval = false;
        return retval;
    Determines whether snippet can be run given current context.  The snippet will
    fail if these preconditions are not met:
    <ul>
    <li> Must in Bridge
    <li> At least one file must be selected in Bridge
    </ul>
    @return True if this snippet can run, false otherwise
    @type boolean
    SnpSaveAsJPEG.prototype.canRun = function()
        // must run in Bridge
        // must be at least one selection.
        if((BridgeTalk.appName == "bridge") && (app.document.selectionLength > 0))
            return true;
        // Fail if these preconditions are not met. 
        $.writeln("ERROR:: Cannot run SnpSaveAsJPEG");
        $.writeln(this.requiredContext);
        return false;
    "main program": construct an anonymous instance and run it
      as long as we are not unit-testing this snippet.
    //if(typeof(SnpSaveAsJPEG_unitTest)  == "undefined") {
    //    new SnpSaveAsJPEG().run();
    new SnpSaveAsJPEG().run();

  • Missing startup script for version cue

    I'm having the problem where I don't seem to have the startup scripts for version cue in bridge.
    When I check the list of startup scripts in preferences, the other scripts all seem to be there like for contribute, fireworkds etc. However version cue is missing.
    I also checked the actual locations for the startup scripts.
    The scripts for version cue seem to be in the actual locations but for some reason they're not running or showing up in bridge or that's what I'm assuming anyway.
    I'm running bridge CS4 and version cue CS4.
    If anyone could help me that would be great!

    What then do they recommend?  The URL listed below is broken/no longer available.  The solution listed above does appear to work.  I installed Version Cue Server CS4 after having installed the rest of the suite on my workstation.  I used drive to link to the server(my machine which I am using for testing).  I had CS3 on this machine before uninstalling it and installing CS4.
    Re: Missing startup script for version cue
    Matthew Laun wrote:
     Adobe recommends that you do not follow the steps above to enable Version Cue CS4 in Bridge CS4.
    Please see this thread for more details:
    http://www.adobeforums.com/webx/.59b6d12f

  • Waiting For Bridge CS6 when selecting MiniBridge in Photoshop (win)

    Mini-Bridge does not load any files.  (Windows 7)
    All I get is the dreaded "Waiting for Bridge CS6..." message where the image thumbnails should be.
    Yes, yes... I did open Bridge CS6 manually and it works fine.

    Same exact symptons here. System info if that helps.
    Adobe Photoshop Version: 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00) x32
    Operating System: Windows 7 32-bit
    Version: 6.1 Service Pack 1
    System architecture: Intel CPU Family:6, Model:15, Stepping:13 with MMX, SSE Integer, SSE FP, SSE2, SSE3
    Physical processor count: 2
    Processor speed: 1729 MHz
    Built-in memory: 2038 MB
    Free memory: 811 MB
    Memory available to Photoshop: 1662 MB
    Memory used by Photoshop: 70 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Disabled.
    OpenGL Drawing Mode: Basic
    OpenGL Allow Normal Mode: False.
    OpenGL Allow Advanced Mode: False.
    OpenGL Allow Old GPUs: Not Detected.
    Video Card Vendor: Intel
    Video Card Renderer: Intel 965/963 Graphics Media Accelerator
    Display: 1
    Display Bounds:=  top: 0, left: 0, bottom: 800, right: 1280
    Video Card Number: 2
    Video Card: Mobile Intel(R) 965 Express Chipset Family
    OpenCL Unavailable
    Driver Version: 8.15.10.1825
    Driver Date: 20090616000000.000000-000
    Video Card Driver: igdumdx32.dll,igd10umd32.dll
    Video Mode:
    Video Card Caption: Mobile Intel(R) 965 Express Chipset Family
    Video Card Memory: 384 MB
    Video Rect Texture Size: 2048
    Video Card Number: 1
    Video Card: Mobile Intel(R) 965 Express Chipset Family
    OpenCL Unavailable
    Driver Version: 8.15.10.1825
    Driver Date: 20090616000000.000000-000
    Video Card Driver: igdumdx32.dll,igd10umd32.dll
    Video Mode: 1280 x 800 x 4294967296 colors
    Video Card Caption: Mobile Intel(R) 965 Express Chipset Family
    Video Card Memory: 384 MB
    Video Rect Texture Size: 2048
    Serial number: Tryout Version
    Application folder: C:\Program Files\Adobe\Adobe Photoshop CS6\
    Temporary file path: C:\Users\Gene\AppData\Local\Temp\
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      C:\, 460.6G, 200.3G free
    Required Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6\Required\
    Primary Plug-ins folder: C:\Program Files\Adobe\Adobe Photoshop CS6\Plug-ins\
    Additional Plug-ins folder: not set
    Installed components:
       A3DLIBS.dll   A3DLIB Dynamic Link Library   9.2.0.112  
       ACE.dll   ACE 2012/01/18-15:07:40   66.492997   66.492997
       adbeape.dll   Adobe APE 2012/01/25-10:04:55   66.1025012   66.1025012
       AdobeLinguistic.dll   Adobe Linguisitc Library   6.0.0  
       AdobeOwl.dll   Adobe Owl 2012/02/09-16:00:02   4.0.93   66.496052
       AdobePDFL.dll   PDFL 2011/12/12-16:12:37   66.419471   66.419471
       AdobePIP.dll   Adobe Product Improvement Program   6.0.0.1642  
       AdobeXMP.dll   Adobe XMP Core 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPFiles.dll   Adobe XMP Files 2012/02/06-14:56:27   66.145661   66.145661
       AdobeXMPScript.dll   Adobe XMP Script 2012/02/06-14:56:27   66.145661   66.145661
       adobe_caps.dll   Adobe CAPS   5,0,10,0  
       AGM.dll   AGM 2012/01/18-15:07:40   66.492997   66.492997
       ahclient.dll    AdobeHelp Dynamic Link Library   1,7,0,56  
       aif_core.dll   AIF   3.0   62.490293
       aif_ocl.dll   AIF   3.0   62.490293
       aif_ogl.dll   AIF   3.0   62.490293
       amtlib.dll   AMTLib   6.0.0.75 (BuildVersion: 6.0; BuildDate: Mon Jan 16 2012 18:00:00)   1.000000
       ARE.dll   ARE 2012/01/18-15:07:40   66.492997   66.492997
       AXE8SharedExpat.dll   AXE8SharedExpat 2011/12/16-15:10:49   66.26830   66.26830
       AXEDOMCore.dll   AXEDOMCore 2011/12/16-15:10:49   66.26830   66.26830
       Bib.dll   BIB 2012/01/18-15:07:40   66.492997   66.492997
       BIBUtils.dll   BIBUtils 2012/01/18-15:07:40   66.492997   66.492997
       boost_date_time.dll   DVA Product   6.0.0  
       boost_signals.dll   DVA Product   6.0.0  
       boost_system.dll   DVA Product   6.0.0  
       boost_threads.dll   DVA Product   6.0.0  
       cg.dll   NVIDIA Cg Runtime   3.0.00007  
       cgGL.dll   NVIDIA Cg Runtime   3.0.00007  
       CIT.dll   Adobe CIT   2.0.5.19287   2.0.5.19287
       CoolType.dll   CoolType 2012/01/18-15:07:40   66.492997   66.492997
       data_flow.dll   AIF   3.0   62.490293
       dvaaudiodevice.dll   DVA Product   6.0.0  
       dvacore.dll   DVA Product   6.0.0  
       dvamarshal.dll   DVA Product   6.0.0  
       dvamediatypes.dll   DVA Product   6.0.0  
       dvaplayer.dll   DVA Product   6.0.0  
       dvatransport.dll   DVA Product   6.0.0  
       dvaunittesting.dll   DVA Product   6.0.0  
       dynamiclink.dll   DVA Product   6.0.0  
       ExtendScript.dll   ExtendScript 2011/12/14-15:08:46   66.490082   66.490082
       FileInfo.dll   Adobe XMP FileInfo 2012/01/17-15:11:19   66.145433   66.145433
       filter_graph.dll   AIF   3.0   62.490293
       hydra_filters.dll   AIF   3.0   62.490293
       icucnv40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       icudt40.dll   International Components for Unicode 2011/11/15-16:30:22    Build gtlib_3.0.16615  
       image_compiler.dll   AIF   3.0   62.490293
       image_flow.dll   AIF   3.0   62.490293
       image_runtime.dll   AIF   3.0   62.490293
       JP2KLib.dll   JP2KLib 2011/12/12-16:12:37   66.236923   66.236923
       libeay32.dll   The OpenSSL Toolkit   0.9.8g  
       libifcoremd.dll   Intel(r) Visual Fortran Compiler   10.0 (Update A)  
       libmmd.dll   Intel(r) C Compiler, Intel(r) C++ Compiler, Intel(r) Fortran Compiler   10.0  
       LogSession.dll   LogSession   2.1.2.1640  
       mediacoreif.dll   DVA Product   6.0.0  
       MPS.dll   MPS 2012/02/03-10:33:13   66.495174   66.495174
       msvcm80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcm90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcp100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcp71.dll   Microsoft® Visual Studio .NET   7.10.3077.0  
       msvcp80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcp90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       msvcr100.dll   Microsoft® Visual Studio® 2010   10.00.40219.1  
       msvcr71.dll   Microsoft® Visual Studio .NET   7.10.3052.4  
       msvcr80.dll   Microsoft® Visual Studio® 2005   8.00.50727.6195  
       msvcr90.dll   Microsoft® Visual Studio® 2008   9.00.30729.1  
       pdfsettings.dll   Adobe PDFSettings   1.04  
       Photoshop.dll   Adobe Photoshop CS6   CS6  
       Plugin.dll   Adobe Photoshop CS6   CS6  
       PlugPlug.dll   Adobe(R) CSXS PlugPlug Standard Dll (32 bit)   3.0.0.383  
       PSArt.dll   Adobe Photoshop CS6   CS6  
       PSViews.dll   Adobe Photoshop CS6   CS6  
       SCCore.dll   ScCore 2011/12/14-15:08:46   66.490082   66.490082
       ScriptUIFlex.dll   ScriptUIFlex 2011/12/14-15:08:46   66.490082   66.490082
       shfolder.dll   Microsoft(R) Windows (R) 2000 Operating System   5.50.4027.300  
       ssleay32.dll   The OpenSSL Toolkit   0.9.8g  
       tbb.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       tbbmalloc.dll   Intel(R) Threading Building Blocks for Windows   3, 0, 2010, 0406  
       TfFontMgr.dll   FontMgr   9.3.0.113  
       TfKernel.dll   Kernel   9.3.0.113  
       TFKGEOM.dll   Kernel Geom   9.3.0.113  
       TFUGEOM.dll   Adobe, UGeom©   9.3.0.113  
       updaternotifications.dll   Adobe Updater Notifications Library   6.0.0.24 (BuildVersion: 1.0; BuildDate: BUILDDATETIME)   6.0.0.24
       WRServices.dll   WRServices Friday January 27 2012 13:22:12   Build 0.17112   0.17112
       wu3d.dll   U3D Writer   9.3.0.113  
    Required plug-ins:
       3D Studio 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Accented Edges 13.0
       Adaptive Wide Angle 13.0
       ADM 3.11x01
       Angled Strokes 13.0
       Average 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Bas Relief 13.0
       BMP 13.0
       Camera Raw 7.0
       Chalk & Charcoal 13.0
       Charcoal 13.0
       Chrome 13.0
       Cineon 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Clouds 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Collada 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Color Halftone 13.0
       Colored Pencil 13.0
       CompuServe GIF 13.0
       Conté Crayon 13.0
       Craquelure 13.0
       Crop and Straighten Photos 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Crop and Straighten Photos Filter 13.0
       Crosshatch 13.0
       Crystallize 13.0
       Cutout 13.0
       Dark Strokes 13.0
       De-Interlace 13.0
       Dicom 13.0
       Difference Clouds 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Diffuse Glow 13.0
       Displace 13.0
       Dry Brush 13.0
       Eazel Acquire 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Embed Watermark 4.0
       Entropy 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Extrude 13.0
       FastCore Routines 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Fibers 13.0
       Film Grain 13.0
       Filter Gallery 13.0
       Flash 3D 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Fresco 13.0
       Glass 13.0
       Glowing Edges 13.0
       Google Earth 4 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Grain 13.0
       Graphic Pen 13.0
       Halftone Pattern 13.0
       HDRMergeUI 13.0
       IFF Format 13.0
       Ink Outlines 13.0
       JPEG 2000 13.0
       Kurtosis 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Lens Blur 13.0
       Lens Correction 13.0
       Lens Flare 13.0
       Liquify 13.0
       Matlab Operation 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Maximum 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Mean 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Measurement Core 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Median 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Mezzotint 13.0
       Minimum 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       MMXCore Routines 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Mosaic Tiles 13.0
       Multiprocessor Support 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Neon Glow 13.0
       Note Paper 13.0
       NTSC Colors 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Ocean Ripple 13.0
       Oil Paint 13.0
       OpenEXR 13.0
       Paint Daubs 13.0
       Palette Knife 13.0
       Patchwork 13.0
       Paths to Illustrator 13.0
       PCX 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Photocopy 13.0
       Photoshop 3D Engine 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Picture Package Filter 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Pinch 13.0
       Pixar 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Plaster 13.0
       Plastic Wrap 13.0
       PNG 13.0
       Pointillize 13.0
       Polar Coordinates 13.0
       Portable Bit Map 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Poster Edges 13.0
       Radial Blur 13.0
       Radiance 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Range 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Read Watermark 4.0
       Reticulation 13.0
       Ripple 13.0
       Rough Pastels 13.0
       Save for Web 13.0
       ScriptingSupport 13.0
       Shear 13.0
       Skewness 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Smart Blur 13.0
       Smudge Stick 13.0
       Solarize 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Spatter 13.0
       Spherize 13.0
       Sponge 13.0
       Sprayed Strokes 13.0
       Stained Glass 13.0
       Stamp 13.0
       Standard Deviation 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Sumi-e 13.0
       Summation 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Targa 13.0
       Texturizer 13.0
       Tiles 13.0
       Torn Edges 13.0
       Twirl 13.0
       U3D 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Underpainting 13.0
       Vanishing Point 13.0
       Variance 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Variations 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Water Paper 13.0
       Watercolor 13.0
       Wave 13.0
       Wavefront|OBJ 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       WIA Support 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       Wind 13.0
       Wireless Bitmap 13.0 (13.0 20120305.m.415 2012/03/05:21:00:00)
       ZigZag 13.0
    Optional and third party plug-ins: NONE
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices: NONE

  • How to call photoshop new script from bridge tools menu

    i just create a 'Image Processor Outter Mode.jsx' script for photoshop and copy to ../photoshop cs3/presets/scripts/ folder.  i can see the menu item list in photoshop file->script->.
    but can't find it in the bridge cs3 menu. in bridge cs3 tools->photoshop. it only list the default script, image processor for example.
    i'm plan to search files in bridge and run all the result files with the new jsx. anybody can help me ?
    thanks.

    You would need to amend Photoshop-10.jsx on a pc this would be found in the following folder:-
    C:\Program Files\Common Files\Adobe\Startup Scripts CS3\Adobe Photoshop

  • Contact sheet 2 for bridge CS5

    Contact Sheet 2 for Bridge has disappear from Bridge CS 5. Does someone know where I can get the plugin? Right know I have to go back to Bridge CS4 which is pretty annoying in my process. Thanks

    Contact Sheet 2 for Bridge has disappear from Bridge CS 5. Does someone know
    where I can get the plugin? Right know I have to go back to Bridge CS4 which
    is pretty annoying in my process. Thanks
    It did not disappear from CS5 but already from CS4 and has been replaced
    with the Output Module.
    Only downside of the Output Module is you can only save them as a PDF file
    but for the rest you have far more options to create your own customized
    template (and in CS5 save this templates) for far more superior contact
    sheets.
    You did already placed the old contact script in the CS4 edition by
    yourself. There is a workaround to get it again in CS5 only you have to use
    PSCS5 in 32-bit mode because the old and long ago discontinued Contact Sheet
    script is not compatible with the 64 bit mode PSCS5 is written in.
    Find your CS4 Contactsheet plugin (Apllications / PSCS4 / Plug-ins/Automate/
    ContactSheetII.plugin) and copy this to the same path in CS5
    Wiith PSCS5 closed select the application icon and choose get info. Inhere
    put a checkmark in front of 'start in 32 bit mode'.
    See also this Knowledge base article:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=4047
    To be honest, I was not pleased either first time they dropped
    ContactSheetII. But after heaving explored the Output Module in Bridge and
    getting used to it's nice options I really don't want to go back to the old
    script...

  • Create a calculator for bridge?

    I have done scripting for InDesign wich has a palette for scripts or a start up script folder to run the script from. I am not sure how to start this thing. The next thing I want to do after I figure that out is to count photos in each folder that I select and then add them. The calculator could just be a UI window in Bridge is what I was thinking I just need help getting it going.

    I am using a little snippet of mine to get this thing going and the ok and cancel buttons are not working. I was wondering if anyone could shed some light on this for me.
    var myOKGroup =  myIDinfo.add (“group”);
    myOKGroup.orientation = “row”;
    myOKGroup.minimumSize.height = 40;
    myOKGroup.add(“button”, [15,80,95,110],  “OK”);
    myOKGroup.add(“button”, [15,80,95,110],  “CANCEL”);
    myOKGroup.alignment=[“right”,”bottom”];
    var myResult = myIDinfo.show();
    This works in InDesign.

  • Cropping script for PSE 6

    I would like to know how to create a script for photo shop elements. I understand that Adobe photo shop allows the use of scripts and I was wondering if it is possible to do the following:
    Use a combination of keys to crop either the top, bottom, left or right side by 5% or by a number of pixels.
    I.e. set-up four shortcut key combinations to crop the top, bottom, left and right edges of an image.
    This may seem rather specific, but I have a disability and I try to avoid using the mouse where humanly possible. I use voice recognition software and this can be programmed by command to press a set of keys. I can further program this to do a combination of key presses a number of times e.g. crop top three (and this would press the combination of keys three times cropping the top of the picture three times in 5% increments or by a set amount of pixels each time).
    Any thoughts or guidance would be very much appreciated.
    *** I orignally posted this last December (Now May 2010). I was wondering if anyone could offer advice ***

    Any thoughts on the above would be appreciated.
    Macky

Maybe you are looking for