Photoshop Scripts

I'm working in CS5. I've used a script that adds the filename to my photos now my company has come up with a new naming convention for our photos now they all have to be changed again. Is there a script that I can download that will automatically change the filename that's on the photos to the new filename without having to do it all manually.
Thank you.

In that case you could call the following script with an action and the batch it on your psd files...
#target photoshop
app.bringToFront();
main();
function main(){
var txt = getIDX();
if(txt.length>1) {
    alert("There are more than one text layers!");
    return;
selectLayerByIndex(Number(txt[0]));
var Name = app.activeDocument.name.replace(/\.[^\.]+$/, '');
activeDocument.activeLayer.textItem.contents = decodeURI(Name);
function getIDX(){
   var ref = new ActionReference();
   ref.putEnumerated( charIDToTypeID('Dcmn'), charIDToTypeID('Ordn'), charIDToTypeID('Trgt') );
   var count = executeActionGet(ref).getInteger(charIDToTypeID('NmbL')) +1;
   var IDX=[];
try{
    activeDocument.backgroundLayer;
var i = 0; }catch(e){ var i = 1; };
   for(i;i<count;i++){
       if(i == 0) continue;
        ref = new ActionReference();
        ref.putIndex( charIDToTypeID( 'Lyr ' ), i );
        var desc = executeActionGet(ref);
        var layerName = desc.getString(charIDToTypeID( 'Nm  ' ));
        var Id = desc.getInteger(stringIDToTypeID( 'layerID' ));
        if(layerName.match(/^<\/Layer group/) ) continue;
        var layerType = typeIDToStringID(desc.getEnumerationValue( stringIDToTypeID( 'layerSection' )));
if(desc.hasKey(stringIDToTypeID( 'textKey'))) IDX.push(i);
return IDX;
function selectLayerByIndex(index,add){
add = (add == undefined)  ? add = false : add;
var ref = new ActionReference();
    ref.putIndex(charIDToTypeID("Lyr "), index);
    var desc = new ActionDescriptor();
    desc.putReference(charIDToTypeID("null"), ref );
       if(add) desc.putEnumerated( stringIDToTypeID( "selectionModifier" ), stringIDToTypeID( "selectionModifierType" ), stringIDToTypeID( "addToSelection" ) );
      desc.putBoolean( charIDToTypeID( "MkVs" ), false );
   try{
    executeAction(charIDToTypeID("slct"), desc, DialogModes.NO );
}catch(e){}

Similar Messages

  • How to make a selection of a layer delete content and paste another content with Photoshop scripting..?

    how to make a selection of a layer delete content and paste another content with Photoshop scripting..?

    There is a more specific Forum …
    Photoshop Scripting

  • Call Photoshop script from Indesign script CS4 JS

    Hi, I open Photoshop linked file from InDesign in Photoshop and I need same InDesign script to run Photoshop script on the file. How I can call the Photoshop script from InDesign script.
    Thank you very much for your help.
    Yulia

    Thank you, Kasyan.
    800 lines of script is little be intimidating.
    What we are trying to achieve is to open jpgs in Photoshop and resave them as tiffs and replace same jpg with corresponding tiff in Indesign as it was placed before.
    Is there a way to call Photoshop from Indesign through appleScript.
    I have most of the script done for Indesign and I have Photoshop shript ready that saves jpgs as tiffs done. I am only missing the part where I can call this existing Ph. script from Indisign.
    We prefer not to use BridgeTalk if possible, because we have a lot of programs open and running in the same time, and would like to avoid to open one more program (BridgeTalk).
    Thank you very much for your great help.
    Yulia

  • I want to create xml file using photoshop script and also i can easily add, modify, delete based on file name

    Hi,
    Please help me for this.
    I need to create XML file for mentioned below. when i run the photoshop script i need deatails for active document name, date, time and status.
    <?xml version="1.0" encoding="UTF-8"?>
    <sample>
    <filename>Cradboard_Boxes_Small.tif</filename>
    <date>today date</date>
    <starttime>now</starttime>
    <status>delivered</status>
    </sample>
    <sample>
    <filename>Cardboard_Boxes_Student_Vaue_Pack.jpg</filename>
    <date>today date</date>
    <starttime>now</starttime>
    <status>delivered</status>
    </sample>
    I need read that xml after creating and modify based on file name. i need to modify status after file finished.
    if the file name is already exist i want to modify or delete or add whatever i need.
    Kindly help me simple way

    You may want to look into getting Xtools ps-scripts - Browse Files at SourceForge.net then.  Most of the support is for ActionManager script code where XML code is use as an intermediate step.  There are quite a few Photoshop script in XTools .   Ross Huitt is an expert javascript programmer though is is fed up with Adobe's lack of support for Photoshop scripting particularly the bugs in ScriptUI he is still maintaining tool he  has created for us free of charge. Tools like Image Processor Pro. None of his scripts are save as binary so you can read all of his code there is a wealth of knowledge in there....
    Also there is a scripting forum Photoshop Scripting

  • How to begin with Photoshop scripting

    After years of working with Photoshop I have started to device my own Photoshop scripts to automate my workflow.
    My search for formal Photoshop script training produced no concrete results. In the past the Photoshop World Conference has offered Photoshop Scripting workshops.
    Acquiring Photoshop scripting skills requires detective work and perseverance. The results are gratifying when a custom Photoshop script adds additional functionality and efficiency to your workflow.
    Below is a list of resources I have compiled learn Photoshop scripting.
    FORUMS AND BLOGS
    TUTORIALS AND TRAINING
    TEXT BOOKS AND GUIDES
    SCRIPTING TOOLS
    FORUMS AND BLOGS
    Adobe Photoshop Scripting Community
    https://forums.adobe.com/community/photoshop/photoshop_scripting
    Independent Photoshop Scripting Community
    http://ps-scripts.com/
    PHOTOSHOP FOR GEEKS 2008
    http://www.tranberry.com/photoshop/photoshop_scripting/PS4GeeksOrlando/IntroScripts/presen tations_materials/ps_geeks_slides.pdf
    PHOTOSHOP FOR GEEKS 2007
    http://www.tranberry.com/photoshop/photoshop_scripting/tips/photoshopforgeeks2.html
    Jeff Tranberry’s blog
    http://blogs.adobe.com/crawlspace/category/photoshop-scripting
    http://tranberry.com/photoshop/photoshop_scripting/index.html
    TUTORIALS AND TRAINING
    Lynda.com
    http://www.lynda.com/Photoshop-tutorials/Photoshops-scripting-backbone/289/22351-4.html
    Trevor Morris Scripting Photoshop Part 1 and Part 2
    http://morris-photographics.com/photoshop/tutorials/index.html
    Code School (Javascript)
    https://www.codeschool.com/paths/javascript
    Tuts+ (Javascript)
    http://courses.tutsplus.com/courses/javascript-fundamentals
    w3schools
    http://www.w3schools.com/js/default.asp
    TEXT BOOKS AND GUIDES
    Adobe Photoshop Scripting
    http://www.adobe.com/devnet/photoshop/scripting.html
    Power, Speed & Automation
    http://www.amazon.com/Power-Speed-Automation-Adobe-Photoshop/dp/0240820835
    Adobe Press: Learn How to Script Adobe Photoshop
    http://www.adobepress.com/articles/article.asp?p=433750&seqNum=4
    AdobeScripting: Your visual blueprint for scripting in Photoshop and Illustrator
    http://www.amazon.com/Adobe-Scripting-blueprint-scripting-Illustrator/dp/0764524550/ref=la _B001KE7GZM_1_2?s=books&ie=UTF8&qid=1394514490&sr=1-2
    Photoshop Speed Clinic
    http://www.amazon.com/The-Photoshop-CS2-Speed-Clinic/dp/0321441656
    SCRIPTING TOOLS
    Photo Script Builder
    http://madebyvadim.tumblr.com/post/71403984777/script-builder-free
    This tool was available online for free until recently but has since become unavailable.
    The idea behind this tool is excellent. Perhaps it will resurface as a commercial product in the future.
    Script UI Builder (User Interface Dialogs)
    https://sites.google.com/site/scriptuibuilder/ 
    Adobe ESTK (Extended Script Tool Kit CC)
    https://creative.adobe.com/products/estk
    xtools
    http://sourceforge.net/projects/ps-scripts/files/xtools/v2.1/
    http://ps-scripts.sourceforge.net/xtools.html

    https://github.com/search?q=photoshop&ref=cmdform
    github is a great place to find jsx scripts

  • Photoshop Script  Black and White Raster to Vector

    I do not have AI Adobe for I do not want to spend the money and have to learn an other complex Adobe application. I'm no artist either.  However at rimes I wanted  to have AI live trace feature to change black and white line drawing into vector graphics. AI creates EPS files with embedded vectors. And can export the vector to Photoshop.  Though Photoshop opens EPS as raster layers I find that EPS file created from tracing black and white lines and artwork with programs like potrace that use curves to create black vector shapes. That when these are opened in Photoshop as Black layer with transparency. When these layers transparency are loaded as a selection and the selections converted to path. I find the path are extremely good.
    Potrace is a cross platform open source program packages available for many operating systems. Windows (32 bit) and (64 bit), Mac OS X (Intel), Mac OS X (universal),Linux (32 bit) and (64 bit), Linux (Alpha), Linux (Sparc64), Sun Solaris (Sparc), Sun Solaris (i386), Sun Solaris (x86_64), FreeBSD (i386), NetBSD (i386), OpenBSD (i386), AIX and AROS (i386). Potrace is a command line command. So it can be use started with options and passed a file from bat files and scripts. Potrace requires No instillation. All the needed potrace requited files just need to be place into a folder and potrace run from that folder as the current directory.
    So a created a Photoshop script that more or less uses potrace like a Photoshop Plug. The script define a custom shape for the current active document using potrace and add a new shape layer using the new defined custom shape as the top layer. The script also toggle off the other visible layers so you just see the shape layer.  You can use alt click on the shape layer visibility icon to toggle the other layer visibility so you can see how well it matches the document.
    I'm a windows user so the Photoshop script I wrote though in javascript will most likely only run on a windows platform because of my use of windows features its command line start command and file system conventions. I'm quite sure a Mac variant could created. Here is screen capture showing how well the defile shape  matches up and a link to the script. You would need to download potrace to use it and fix the vars in the script that point to potrace. http://www.mouseprints.net/old/dpr/potrace.jsx

    Good day!
    Please check out the chapter "Automation" in the Reference.
    If the task can be recorded as a plain Action it can be applied to multiple Files for example via File > Automate > Batch or File > Scripts > Image Processor.
    Regards,
    Pfaffenbichler

  • Lightroom and Photoshop scripts

    Is there an easy way from lightroom to export a file to a photoshop script (e.g. xxx.jsx) such that the desired action in photshop can be scripted ?  I know I can export to photoshop and edit, then run the script -- just wondering if this can be done in one step

    I don't recall it being discussed before. However, given that Lightroom uses Bridge Talk to communicate with Photoshop it might be worth asking the question over on the Bridge Scripting forum http://forums.adobe.com/community/bridge/bridge_scripting or Lightroom SDK forum http://forums.adobe.com/community/lightroom/lightroom_sdk

  • Photoshop Scripting

    Kennt jemand eine Möglichkeit mit VB Text auf ein Bild zu schreiben, welcher unterschiedliche Formatierung (normal und Kursiv) im Text hat. Z.B. "Dieser Text wird ab hier kursiv geschrieben"

    Das Problem ist, dass das DOM von Photoshop den Zugriff auf Teile des
    TextItem nicht zuläßt, soweit mir bekannt ist (Photoshop 7, was mit CS ist
    kann ich gerade nicht sagen).
    Generell ist die englischsprachige Newsgroup "adobe.photoshop.scripting"
    bzw. das entsprechende Forum (werden miteinander abgeglichen) da die beste
    Adresse für Fragen, aber eine schnelle Suche dort hat mir auch keine Lösung
    eingebracht. Bleibt also nur noch die Möglichkeit, mit verschiedenen
    Textlayern zu arbeiten, und diese dann per Script aneinander auszurichten.
    Aber auch nicht wirklich schön... Das DOM von InDesign ist da zum Glück
    besser dokumentiert unfd vor allem umfangreicher.
    Jens

  • Interactive selection using photoshop script

    How to make a script pause till the user makes a selection and continue again using photoshop script?

    You can use two Scripts or one Script that, depending on some predetermined factor, performs two different tasks.
    So you could for example write something into the metadata, a channel, a txt file, … when a Script is run and that information is absent, and if it isn’t have the Script perform something else and remove that again.
    Edit: You probably could also set up the Script Events Manager to check for something on any Selection change and have it run a Script depending on that but I doubt that’s a good idea.

  • Using Photoshop script – open image in it's own profile?

    I Have a question about scripting;
    How do I open an image in Photoshop script in it's own color profile, when the working colorspace is different?
    It seems like it automatically opens in the current working colorpace.
    (I want to open images and make the conversion myself efterwards).
    /Calle

    What are the Color Settings on that machine?
    I have never noticed that opening files via Script would convert them to the Working Space, but my Color Settings are to »Preserve Embedded Profile« for all modes.

  • Can i invoke Photoshop Scripting in web page?

    Can i invoke Photoshop Scripting in web page?

    hmmm...
    On the page in admin,we should have a button to export the  item to Photoshop.  A PSD of the entire should be assembled from the elements of the XML. This means that the text leading and tracking will need to be translated from server settings to Photoshop settings. Font sizes should also match.

  • Photoshop scripting calls from Adobe Configurator panels

    Can javascritpt functions executing from an HTML element inside a panel affect the photoshop scene?  I know it can using the scripting toolkit, but I'm trying to do this in the Adobe Configurator.  In Configurator I created a new panel with an HTML panel and a button inside it that executes a javascript function on click "createDocument".  When I bring this into photoshop, I can load the panel and click on the button, but I never get a new document created.  If I uncomment the "alert" line, reexport the plugin, and click on the button, I get the alert, but still don't get a new document. 
    var createDocument = function() {
        app.documents.add(2,4);
        //alert("creating new doc!");
    I've tried other functions like creating layers, but still don't see anything happening in photoshop affecting the UI.  It's even more frustrating that I don't see any kind of error message that is happening.  My conclusions seem to imply this panel can't call the photoshop files for some reason (running in a different VM, wrong namespace, etc.).  Has anyone been able to make photoshop scripting calls from inside a configurator panel? 

    You might have better luck asking the in the Configurator forum. http://forums.adobe.com/community/labs/configurator/

  • Call photoshop script in illustrator

    HI
    i want to call photoshop script via illustrator cs5 to open eps file and save it as Tiff
    i tried with following script i couldn't achive
    sourceFolder = Folder.selectDialog( 'Select the folder');
    var epsOpts =' new EPSOpenOptions();';  
         epsOpts+='epsOpts.antiAlias=true;';
         epsOpts+='epsOpts.mode=OpenDocumentMode.RGB;';
         epsOpts+='epsOpts.resolution=300;';  
         epsOpts+='epsOpts.constrainProportions=true;';
    if ( sourceFolder != null )
        files = sourceFolder.getFiles("*.eps");
        var outputFolder = new Folder (decodeURI (sourceFolder) + "/Output");
        if (outputFolder.exists == false)
        outputFolder.create();
    else
    alert ('their are no eps files in selected folder');
    if ( files.length > 0 )
       for ( s = 0; s < files.length; s++ )
            doc = app.open(files[s]);
              function check(doc);//i here call the illustrator function to check font color etc...
         var document = 'open(doc,epsOpts);';
         var psScript = 'app.displayDialogs = DialogModes.NO;';    
         psScript += 'app.open(' + document.toSource(),epsOpts + ');';    
         psScript += 'app.activeDocument.close( SaveOptions.SAVECHANGES );';     
         psScript += 'app.displayDialogs = DialogModes.ALL;';
         tiffSaveOptions = 'new TiffSaveOptions();';
        tiffSaveOptions+='tiffSaveOptions.imageCompression = TIFFEncoding.TIFFLZW;';
        psScript +='var docn='documentName.slice (0, -4);';
        psScript +='var newFile = new File (decodeURI (outputFolder) + "/" +docn+ ".tif");';
        psScript +='document.saveAs(newFile,tiffSaveOptions,true,Extension.LOWERCASE);';
        psScript +='document.close(SaveOptions.DONOTSAVECHANGES);';
    btMessaging( 'photoshop',psScript,epsOpts,tiffSaveOptions );\\here calling photoshop script to open the checked figure
    function btMessaging( targetApp, script,,epsOpts,tiffSaveOptions )
                       var bt = new BridgeTalk();
                       bt.target = targetApp;
                       bt.body = script;
                       bt.onResult = function( inBT )
                                alert( 'Done…' )
                       bt.onError = function( inBT )
                                     alert( 'NOT Done…' )
    help to open eps file through bridgetalk and save it as Tiff
    Thanks
    Appu

    Can you NOT just move the compoundPathItem's pathItems to another location before/after? Kind of like this…
    #target illustrator
    var docRef = app.activeDocument;
    with(docRef) {
         with(compoundPathItems[0]) {
              var x = pathItems.length;
              for (var i = x-1; i >= 0; i--) {
                   pathItems[i].move(compoundPathItems[0], ElementPlacement.PLACEBEFORE);

  • Photoshop scripting question

    HI
    I am new to this whole scripting for photoshop and hope someone could help me along.
    What i am looking for is to either create an Adobe Photoshop script, or with flash builder build an photoshop extension that does the following.
    On a server i have a folder that gets a folder for each day of the month (eg. ../december 2012/01 december). in this folder each day there are .PSD files created. I would love to have a scipt that opens the .PSD files that are in the todays folder then resizes the image from 1024*576 to 720*576 and save it on a diferend server in the todays folder as a .JPG. and then have a popup message showing which images where succesfully saved to the new location.
    Right now i am using a simple .exe file with the following script to kopie teh files from location A to B but i have to manualy make the jpegs or run the image procesor for this job which doesn't work with sharing an action with multiple users.
    The copie script is Use:
    @ECHO OFF
    CLS
    SET sourceDir=\\172.16.200.9\vormgeving\TV\!BrabNieuws 2007\dve
    SET destDir=\\172.16.200.155\dve\BRABANT NIEUWS
    SET jaar=%date:~-4,4%
    SET mnd=%date:~-7,2%
    SET dag=%date:~-10,2%
    SET pse==%1
    IF %mnd%==01 SET maand=Januari
    IF %mnd%==02 SET maand=Februari
    IF %mnd%==03 SET maand=Maart
    IF %mnd%==04 SET maand=April
    IF %mnd%==05 SET maand=Mei
    IF %mnd%==06 SET maand=Juni
    IF %mnd%==07 SET maand=Juli
    IF %mnd%==08 SET maand=Augustus
    IF %mnd%==09 SET maand=September
    IF %mnd%==10 SET maand=Oktober
    IF %mnd%==11 SET maand=November
    IF %mnd%==12 SET maand=December
    ECHO De DVE's van vandaag worden naar de dagmap (%jaar%-%mnd%-%dag%) gekopieerd!
    ECHO .
    COPY "%sourceDir%\%maand% %jaar%\%dag% %maand%\*.psd" "%destDir%\%jaar%-%mnd%-%dag%"
    ECHO Y | DEL "%destDir%\%jaar%-%mnd%-%dag%\dve standaard.psd" > NUL
    if "%1"=="" PAUSE
    I hope there is someone out there that can help me on my way.
    Thanks
    Salvador
    Ps. I already tried working with actions and a simple script that envoked the action file but thats just not stable enough.

    JJMack wrote:
    I still do not understand you showed part of a dos bat file that copies a single psd file from one remote ip  resource to a different remote ip remote resource before the copy some non english message is displayed. the copy is done which should put out a message one file copied then the original file is deleted off the first remots resource hidding the delet message.  I see nothing to do with Photoshop nothing that dose any resize and don't understand why you would slow down the copy by transporting the data across the network twice once woul be faster. I would set up a remote process where remote resource 1 would do the copy to remote resource 2.  At first I tought you were describing a server batch update process the would run on some schedule. Now it looks like distrinuted remote users are moving a file from one machine to an other.  Where does the resize come in where does Photoshop Scripting come in?
    SET sourceDir=\\172.16.200.9\...
    SET destDir=\\172.16.200.155\...
    ECHO De DVE's van vandaag worden naar de dagmap (%jaar%-%mnd%-%dag%) gekopieerd!
    ECHO .
    COPY "%sourceDir%\%maand% %jaar%\%dag% %maand%\*.psd" "%destDir%\%jaar%-%mnd%-%dag%"
    ECHO Y | DEL "%destDir%\%jaar%-%mnd%-%dag%\dve standaard.psd" > NUL
    Hi JJMack,
    Right now the resizing is done maunually. This is the work procces; there are a bunch of .psd files created these get saved in ..\\ntsrob22s\vormgeving\TV\!BrabNieuws 2007\dve\february 2012\07 february\.
    After these files get aproved they get maunualy distorted from 1024*576 to 720*576 and saved as a JPEG in ..\\ntsrob22s\vormgeving\TV\!BrabNieuws 2007\dve\february 2012\07 february\JPEG\. After the person is done they execute this file
    @ECHO OFF
    CLS
    SET sourceDir=\\ntsrob22s\vormgeving\TV\!BrabNieuws 2007\dve
    SET destDir=\\media-storsvr\dve\BRABANT NIEUWS
    SET jaar=%date:~-4,4%
    SET mnd=%date:~-7,2%
    SET dag=%date:~-10,2%
    SET pse==%1
    IF %mnd%==01 SET maand=Januari
    IF %mnd%==02 SET maand=Februari
    IF %mnd%==03 SET maand=Maart
    IF %mnd%==04 SET maand=April
    IF %mnd%==05 SET maand=Mei
    IF %mnd%==06 SET maand=Juni
    IF %mnd%==07 SET maand=Juli
    IF %mnd%==08 SET maand=Augustus
    IF %mnd%==09 SET maand=September
    IF %mnd%==10 SET maand=Oktober
    IF %mnd%==11 SET maand=November
    IF %mnd%==12 SET maand=December
    ECHO The PICs are copied to the BRABANTNIEUWS day folder and are ready to be used by pixelpower (%jaar%-%mnd%-%dag%) gekopieerd!
    ECHO .
    COPY "%sourceDir%\%maand% %jaar%\%dag% %maand%\JPEG\*.jpg" "%destDir%\%jaar%-%mnd%-%dag%"
    ECHO Y | DEL "%destDir%\%jaar%-%mnd%-%dag%\dve standaard.JPG" > NUL
    if "%1"=="" PAUSE
    This looks in the folder ..\\ntsrob22s\vormgeving\TV\!BrabNieuws 2007\dve for the folder of 'today' and copies all the JPEGs to ..\\media-storsvr\dve\BRABANT NIEUWS\ into todays folder.
    What i would like to create is that after they have created all the PSD files and they are aproved, all they have to to is run a Photoshop script or extension that opens all the PSD's that are in the 'today' folder -> then resizes those to 720*576 and save them in the \\media-storsvr\dve\BRABANT NIEUWS\"todays month"\"todays date" and overwrites if there is one with a simular name already.
    Thx,
    Salvador

  • Photoshop scripts within Actions

    Ok so I am currently trying to run a photoshop script within an action specifically Image processor.
    I can include the script by importing menu item although evyerthing i run the action i have to set up the script aka choose folder locations etc.
    My question.. is there a way to set the defaults so that the action automatically runs the script?
    Please help its driving me mad!

    Not sure what you mean exactly, but that the dialog is raised when you trigger Image Processor seems as expected.
    Why an Action anyway and not a proper Script for the whole operation?

  • Run Photoshop script from Bridge

    Hi
    I have a modified version of Image Processor script in photoshop scripting folder (it saves RAW files as smart objects) and would like to run it from Bridge (apply to selected images). Right now I can run script from File > Scripts Photoshop menu but not in Bride Tools > Photoshop
    Thank you
    The help will be appreciated

    Its Not Adobe Code and its not shipped with Photoshop.  Photoshop versions also has bugs in ScriptUI which is used by scripts with a dialog.  Image Processor Pro 2.3.1 has some bugs. Some files formats its saves may have problems.
    Russell Brown works for Adobe but he has been pulled away from Photoshop.  Xbytor is the programmer that wrote Image Processor Pro he does not work for Adobe and he is feed up with Adobe for not fixing bugs in Photoshop scripting.  He stated he will support Image Processor Pro for some time.
    Russell web site has this. The Open Source code is now available for many of my script and panels
    Because of new projects and a changing demand for my time, it will be necessary for me to move on to new projects at Adobe. For this reason I will no longer be able to support, or update many of my scripts and panels. Never fear! – I am releasing the source code for many of my programs and if you are a programmer then you can use this code to modify and change my scripts to meet your needs. If you are not a programmer then I recommend working with anyone on the list of programmers that I have supplied below. However! Let me make it clear that his code is not to be sold. This is an open and free source to be used for the good of humankind and Adobe Photoshop users around the world
    ===========================
    I do not have a Mac or a Windows 8 machine to test on. On my Windows 7 PC Image Processor Pro 2.3.1 and newer versions run on CS6, CC and CC 2014..  X is still working on it

Maybe you are looking for

  • I just upgraded to iTunes 10.6.1 and now my library is not loaded, how do I get it back?

    I upgraded to iTunes 10.6.1 overnight and when I start it now there is no media loaded, no songs, no films and no TV Shows. I have tried starting using the shift key to point iTunes back to my library location, but still no luck. Has anyone got any i

  • Iphone 4 not turning on

    my phone stop working.  need help

  • Alv list printing-dump error

    hai, i get following dump error when tryign to print a alv list report. 'Illegal interruption of the event LOAD-OF-PROGRAM. What happened? Error in the ABAP Application Program The current ABAP program "SAPLSZA12" had to be terminated because it has

  • Running Vista on new MBP.  How can I gt drivers so i can ge vista online?

    Hey guys, i just received my new MBP. This is my first mac so to say I am lost is an understatement =). I am running parallels and vista utimate. I cannot get my vista online its lacking drivers. How can I get this puppy onilne? Thanks ahead!

  • Unable to install WSUS role

    Hi, I'm trying to install WSUS for SCCM purposes for SUP role. Here are the steps I did: 1. Install SQL Server 2012 with instancename: SCCM 2. Installed Configuration Manager 2012 R2 3. Trying to install WSUS but it always says that it requires a res