Work plans: selection of the artboard and unlock automatic disabling shapes in the work plans - possible?

Hello

I easily through the General work plan, and I saw immediately, so I thought I'd put it out there. Here are my two questions:

1. is there a way to disable the ability to move a work plan while working in it? Essentially, to block the plan in place, but not the items it contains? If you use the automatic selection and slightly approach the edge of the plateau, then swipes the entire Board rather than just a few layers / items you want.

2 is there a way to auto unlock all layers, including forms? It can be really frustrating for fish through the layers to find the form locked in order to remove a work plan. Command + / has not worked for me when I closed a single object manually.

Thank you very much! I hope that these are not repeated questions.

1. Yes. Use 'Position Lock' on the layer of the artboard properly said.

2. Yes. Select the parent group or the artboard. While holding down the alt/option key, choose "Lock all layers in artboard...» "in the drop-down menu Layers Palette.

This should unlock all layers inside this group or the artboard.

(Probably, the fact that the menu does not change when you hold down the alt key is a bug, but it does not)

Tags: Photoshop

Similar Questions

  • Insert select on the same table: possible without side effects?

    I have a very large table T1 containing millions of records. I need to treat its lines and create a few new lines based on selection.

    Table T1 contains events and one of them, with the code 100, is created by the further development of other events inside the table.

    My code is as follows:

    insert /*+append */ into T1 (code,...) values (100, c1,c2,...)
    select c1,c2... from T1 where (code=20 or code=10) and <other conditions>...
    
    

    as you can see I'm extract T1 lines to insert again in T1 with a different code and I use the direct path in order to get good performance.

    My fear is: choose is made from the same table I risk data loss? In general it is a good practice? Or is it better to create another table?

    Hello

    No I don't think that there may be loss of data. But that may depend on the behavior of the application and your where clause.

    I will explain how it is treated, so you can see if it's ok:

    1. the table is locked because of the insert add, (as)

    2 lines are read by select and make compatible from the State that was at the beginning of the query - 1.

    3 rows are inserted at the end, after the high-water line

    4 columns for new lines are sorted to be merged in the index

    5. high watermark is adjusted - visible new lines and lock is released

    Note that 2. and 3. occur at the same time: rows are inserted all read.

    Note that anyone can choose in the table during the operation - they see the changes committed only - if the State 1.

    all other DML are waiting for the lock being released, and will see new ranks and then

    If you have things that prevent the direct-path insert, append the hint will be ignored. So, if you must rely on close to 1. then the best lock explicitly with table lock. But I don't think that you need.

    Kind regards

    Franck.

  • JS - selection of the center of the artboard / New Document with some dimensions of the artboard

    TL; DR:

    How do I Center my current selection to the artboard?

    as well as hitting the "align horizontal center" and the «align vertical center» buttons

    Hello

    I searched for the last two hours and before my head hit the keyboard I wanted to ask for help.

    What I am struggling with:

    in my init function, I create a new document and then copy all the layers of the previous document step by step to the new document and then save it as SVG.

    Init

    (function() {}

    Destination = Folder.selectDialog ("selecting a folder for files SVG.', docPath");

    If (! destination) {return ;}

    holderDoc = app.documents.add ();

    stepThroughAndExportLayers (docRef.layers);

    }());

    My problem is that holderDoc = app.documents.add (); always creates a document that is not the same size as my original document where the layers are copied from.

    so, I want the same artboard size as in my original document.

    I am fine with the fact that fixed values or directly take the values of the initial RFSO.

    I tried this on the segment where I create the new document:

    Init

    (function() {}

    Destination = Folder.selectDialog ("selecting a folder for files SVG.', docPath");

    If (! destination) {return ;}

    holderDoc = app.documents.add ();

    holderDoc.artboards [0] .artboardRect = [0,0,128,128];

    stepThroughAndExportLayers (docRef.layers);

    }());

    and receive this error message:

    "Error 1200: Illustrator error: 1346458189 ("PARM").

    Online: 83

    -> holderDoc.artboards [0] .artboardRect = [0,0,128,128]; »

    what I read on the web means that illustrator does not know what to choose document. but I called him directly. so, what could be the problem?

    to clearify: I don't want to adapt to the artboard for the images/layer. the work plan must always be a certain size. (for me 128px by 128px)

    Thank you for helping me to each fixing of my approach highly or offer a completely new.

    Thank you very much in advance.

    Edit: workaround solution


    (function() {}

    Destination = Folder.selectDialog ("selecting a folder for files SVG.', docPath");

    If (! destination) {return ;}

    var activeArtboard = app.activeDocument.artboards [app.activeDocument.artboards.getActiveArtboardIndex ()];

    var ABRect = activeArtboard.artboardRect;

    holderDoc = app.documents.add ();

    holderDoc.artboards.add (ABRect);

    holderDoc.artboards.remove (0);

    holderDoc.artboards.setActiveArtboardIndex (0);

    stepThroughAndExportLayers (docRef.layers);

    }());

    now, I added a new work plan to the new document with the same size as the work plan on the original document.

    I have remove the work plan predefined on the new doc and the new work plan as active.

    BUT!

    now, the work plan is not centered in the window. Illustrator that allows to place my image with ctrl + c-> ctrl + v somewhere outside the artboard.

    Now I need to align my selection in the center of the artboard. but I can't find any reference on how to Center a selection to the artboard.

    I don't know if I understand you right.

    If you want to create a new document with a fixed width and height, you can do this:

    var doc = app.documents.add(DocumentColorSpace.RGB, new UnitValue ("128", "px"), new UnitValue ("128", "px"));
    

    If you want to only align your objects selected on the artboard, you can try this:

    Note that the result may be different, if the clipping masks are exist in the document.

    Please test it first on copies of your documents. Use it at your own risk.

    // ArtboardCenterAroundSelectedPaths.jsx
    // works with CS5
    // http://forums.adobe.com/thread/1336506?tstart=0
    // (title: script to align selected objects to artboard)
    // quick & dirty, all selected items will be centered at the active artboard
    // (include clipping paths  !visible result can be different)
    
    // regards pixxxelschubser  19.Nov. 2013
    
    var aDoc = app.activeDocument;
    var Sel = aDoc.selection;
    
    if (Sel.length >0 ) {
        var abIdx = aDoc.artboards.getActiveArtboardIndex();
        var actAbBds = aDoc.artboards[abIdx].artboardRect;
    
        var vBounds = Sel[0].visibleBounds;
        vBounds_Li = vBounds[0];
        vBounds_Ob = vBounds[1];
        vBounds_Re = vBounds[2];
        vBounds_Un = vBounds[3];
    
    if (Sel.length >1 ) {
        for (i=1; i vBdsI[0] ) {vBounds_Li = vBdsI[0]};
            if( vBounds_Ob < vBdsI[1] ) {vBounds_Ob = vBdsI[1]};
            if( vBounds_Re < vBdsI[2] ) {vBounds_Re = vBdsI[2]};
            if( vBounds_Un > vBdsI[3] ) {vBounds_Un = vBdsI[3]};
            }
    
        aDoc.artboards[abIdx].artboardRect = [vBounds_Li +((vBounds_Re - vBounds_Li)/2-(actAbBds[2]-actAbBds[0])/2), vBounds_Ob -((vBounds_Ob - vBounds_Un)/2+(actAbBds[3]-actAbBds[1])/2), vBounds_Li +((vBounds_Re - vBounds_Li)/2-(actAbBds[2]-actAbBds[0])/2)+(actAbBds[2]-actAbBds[0]), vBounds_Ob -((vBounds_Ob - vBounds_Un)/2+(actAbBds[3]-actAbBds[1])/2)+(actAbBds[3]-actAbBds[1])];
        }
        } else {
            alert ("No selection");
            }
    

    Hope this is useful for you.

    Have fun

  • How to duplicate the artboard and move it over the original?

    Basically, I have a document open and want to duplicate its work plan and then move it to a new location (the X axis, the original 50pixels). Doesn't seem too hard, but I can't understand it. This is for CS5.

    var app.activeDocument = docRef;

    var abSrc = docRef.artboards [0];

    var abSrcX = abSrc.artboardRect [0];

    var abSrcY = abSrc.artboardRect [1];

    var abSrcW = abSrc.artboardRect [2];

    var abSrcH = abSrc.artboardRect [3];

    abSrcX = abSrcX + 1221;

    var abSrcRect = [abSrcY, abSrcW, abSrcX, abSrcH];

    dupAB var = docRef.artboards.add (abSrcRect);

    The above works a bit. Original work plan is 17 "x 11" (1224px x 792px) and when I put abSrcX to the foregoing 1221, extendscript throws an error PARM. During one of my sessions of trials and errors, I decided to see what was the document geometricBounds:

    $.writeln (docRef.geometricBounds); = 45-12, 1221.154296875,-780

    So now, I see a bit where I can't go more than 1221, but why can't I?

    I moved the artboard for everything at the top left of the document and I got the geometricBounds again and they were - 6754.5,7038.5,-6463.5, 6736.5, but still can not abSrcX anything about 1221.

    the error is "error Illustrator: 1246458189 ("PARM").

    I tried to understand this is what courses I can think, but nothings working. Any input or help would be GREATLY appreciated!

    EDIT:

    So I tried this for the hell of it:

    var abSrcX = 0;

    var abSrcY = 1224;

    var abSrcW = 1224;

    var abSrcH = 792; (for some reason any 792 translates into 6 "inside the Illustrator, so I put this 432 to make 11")

    var abSrcRect = [abSrcY, abSrcW, abSrcX, abSrcH];

    dupAB var = docRef.artboards.add (abSrcRect);

    and it adds a new work plan and move to X, Y, such that designated. Not exactly what I want, but narrowing down the issue.

    I'm trying

    var abSrcX = 1224;

    var abSrcY = 0;

    var abSrcW = 1224;

    var abSrcH = 792;

    var abSrcRect = [abSrcY, abSrcW, abSrcX, abSrcH];

    dupAB var = docRef.artboards.add (abSrcRect);

    and he throws that error PARM still once, then now there is really no sense!

    Edit2: I changed abSrcY to 10000 and now the height of the artboard is really long, which is insane even more... I don't have the (x, y, width, height) artboardRect down wrong?

    Edit3: If after one more google search, I found out what the problem is. artboardRect is HIGH, LOW, LEFT, RIGHT; and when I do:

    var abSrcX = 1368;

    var abSrcY = 0;

    var abSrcW = 2592;

    var abSrcH = - 792;

    var abSrcRect = [abSrcY, abSrcW, abSrcX, abSrcH];

    top down right and left;

    dupAB var = docRef.artboards.add (abSrcRect);

    This works. BUT I have no idea what the numbers are in relationship with. The center of the artboard? The document Centre? And if I run it again and change... oh dear.

    I think that I just thought of it.

    abSrcX is on the LEFT;

    abSrcY is HIGH;

    abSrcW is RIGHT;

    abSrcH is DOWN;

    Considering that if I add (1224 + 144) to abSrcX and abSrxW, it creates another work plan 2 "away from the previous 17" x 11 ". If I want to run again, I just have to add (1224 + 144) abSrcX and abSrxW again. Now to find a way to do it dynamically on the fly.

    I still like to hear comments on the question of whether this is good or bad, and how I can improve!

    @clrx01,.

    Why do you work with width and height work plan?

    IMHO you need what only once.

    Try something like this:

    // ArtboardCopy.jsx
    // http://forums.adobe.com/thread/1320239?tstart=0
    //        How to duplicate artboard and move it relative to original?
    // regards pixxxelschubser
    
    var docRef = app.activeDocument;
    //var abSrc = docRef.artboards[0];
    var abIdx = docRef.artboards.getActiveArtboardIndex ();
    var abSrc = docRef.artboards[abIdx];
    
    var moveX = 50;
    
    var abSrc_L = abSrc.artboardRect[0];
    var abSrc_T = abSrc.artboardRect[1];
    var abSrc_R = abSrc.artboardRect[2];
    var abSrc_B = abSrc.artboardRect[3];
    
    var next_ab_L = abSrc_R + moveX;
    var next_ab_T = abSrc_T;
    var next_ab_R = next_ab_L + (abSrc_R - abSrc_L) ;
    var next_ab_B = abSrc_B;
    
    //top left right bottom;
    
    var next_ab = docRef.artboards.add([next_ab_L, next_ab_T, next_ab_R, next_ab_B]);
    

    Have fun

  • Whenever I start my computer with Windows XP, I get the message "it is necessary to restart your computer. If I select 'YES', the system restarts and I get the same message.

    Original title: "RESTART YOUR COMPUTER IS REQUIRED" MESSAGE LOOP

    Whenever I start my computer with Windows XP, I get the message "it is necessary to restart your computer.  If I select 'YES', the system restarts and I get the same message.  Always shut up if I keep you select 'YES '.  I can work around the problem by choosing 'NO '.  How can I avoid that this message that appears constantly when I start the computer?

    http://forums.techarena.in/Windows-Update/1095335.htm

    read the above and follow the tips on adobe updater and maybe this will help.

    If this is not the case after return and include information about your machine, svc pk and IE #.

  • Odiconsole error cannot connect to the specified repository. Please select a different alias and try again.

    Hello

    My tool odi 11g client is in linux server.

    ODI 11 g cilent (linux) and the server is linux server.

    I can not connect on behalf of the repository only job as workrepo210. His connection with success.

    err12.jpg

    I created two more workrepository11 wprkrepo211and repositories.

    To do this, I created two different users. I gave permissions also. I configured workrepositories details in odiconsole & admin console

    But I'm unable to connect to in odiconsole workrepository11 wprkrepo211and.

    When I try to these wprkrepo211and workrepository11

    I get the error message like

    Unable to connect to the specified repository. Please select a different alias and try again.



    err11.jpg

    Please help me.

    Thanks in advance,

    A.Kavya.

    Hello

    now its works well.

    I configured with default details repository work & maste rreposiory in the administration console.

    I configured the url jndi in odi console with the correct data.

    Thank you best regards &,.

    A.Kavya.

  • Error: could not connect to the specified repository. Please select a different alias and try again?

    Hi, I was able to connect to the master repository in the console of the odi.

    When I'm trying to connect to the repository of work, I get the error as

    "Unable to connect to the specified repository. Please select a different alias, and then try again. ».

    I tried so many times. I had and I have not solved.

    Please help me.

    Thanks in advance,

    A.Kavya.

    Hello

    To create a JNDI, connect to the Weblogic administration Console > go to Services (on the left panel) > Data Sources
    You will see the list of configured JNDI names already. You must add one more favorite JNDI for your schema repository work connection. You can see already existing repository work connection JNDI (odiWorkRepository) for the sample of settings, same values, you can change this existing odiWorkRepository JNDI in user =<> this parameter in the Connection Pool tab. Mention the name of user/schema of your repository of work in this article and also provide the schema appropriate in the section password password.

    Kind regards

    Parag

  • Select and mask | Problems with the selection in the process of disappearance - CC 2015.5

    Hi all!

    I've just updated Photoshop 2015.5 CC version.

    I am currently working on a design that needs cutting contours.

    So I picked all the areas belonging to the background of the image and then click on the "select and mask" to refine the edges and then clear my selection as I usually did.

    But instead, my selection disappeared...

    My steps were:

    1. Selection of the areas to clear with "themagic wand tool.
    2. Click on 'select and mask' (output parameters: output to the selection).
    3. Click on 'OK'.
    4. Selection has disappeared!

    I have provided all the tools to their default settings, but nothing has changed.

    I tried to close and reopen the case, repeat the steps to delete the background, but I always feel the question.

    It is a big problem for me!

    I hope that there is someone who could help me/us with this!

    Best,

    Joanna

    I actually asked the new workspace me first thing after update, because I wasn't getting.  It's different enough that you need to learn everywhere, I'm afraid, but it is definitely an improvement when you become familiar with it.  See Julianne Kost guide below, but I suspect that you may need to adjust the sliders that control the opacity of the background.  Or simply click on the transparent part to start the selection.

    Select and mask "Julieanne Kost's Blog

  • I try to register with a mixer via a usb connection. I can tell I have the settings correct, selected in the hardware Audio section. It worked before, but it's not. Any ideas? It's driving me crazy!

    I try to register with a mixer via a usb connection. I can tell I have the settings correct, selected in the hardware Audio section. It worked before, but it's not. Any ideas? It's driving me crazy!

    That entry of casings do you use on the Yamaha and what you've plugged into them? With the whole level at about 01:00 controls, as Neil suggests, increase the Gain until the red LED on the channel starts flashing. And then put it down a bit so that it no longer lights except very occasionally. You should then see the green signal LED flashes but not the red. You should then have reasonable level in hearing.

  • construction method and method of selection of the face under the router tool are not active

    Dear professional Illustrator,

    Anyone know how to activate the mode of construction and the method of selection of the face under the shaper tool?

    work environment:

    my system is Windows 7 Professional

    Illustrator CC

    I tried to search for the related topic, but I couldn't find an answer, thanks for your advice.

    Masako

    Masako Ku,

    You can read about them here:

    Illustrator help | New forms of building with Shaper tools and a generator of form

  • I use a PC and I used LR3. I'm a newcomer to LR, so patient with me! My problem is related to the import function. I have a photo library on an external hard drive. I slowly imported previews of the photos selected from the library in

    I use a PC and I used LR3. I'm a newcomer to LR, so patient with me! My problem is related to the import function.

    I have a photo library on an external hard drive. I've slowly been import previews of the photos selected from the library in my catalog, adding them during the import process - well. But now, I hit a problem. Another folder in my library contains several subfolders, each containing a number of photos (a mixture of RAW steals (naves) and jpg). I was importing found in my catalog each Subfile in turn, using the Add function, usually of the jpgs only from each Subfile. It works fine, until I reached a particular Subfile. For some reason when I try to import from it and select the secondary file as a Source, only the RAW (NEF) images appear in the preview pane (sorry, forgot the correct term for it!). I know that jpg files are in this auxiliary file on the external hard drive, because when I view its content in Windows, they are all there. But try as I can (choose the file under source, select the folder parent as a source, try to copy or move them, instead of adding them), nothing seems to work. Since they do not appear in the preview pane, I can't import them. It does appear that this a Subfile where the problem exists, but I don't see anything that is different from the others (names of files under all use the same structure - yyyy-mm-dd_custom name, and pictures in all subfolders are adopting the same denomination structure too - yyyy-mm-dd_sequential number_custom name.) NAVE/JPG. So what I am doing wrong? Any ideas please.

    It is possible that the images in this particular subfolder were taken in your camera in RAW + JPEG.  If so, you will need to go to preferences under the general tab and make sure the box "processing JPEG files files next to raw as separate photos" is checked.

    However, assuming that this is the case, there is really no reason to import the JPEG file if you already have the RAW file.

  • Is he or she has never been possible to select several PDF files and print in a single print streams using the player

    We have several users who claim that they have been able to select several files PDF and select print. He would then send a single stream and end up in a single document. These are the users of reader.

    We have tested under 10.1.4 and 11.0.06 player and were not able to make it work. Is it still possible?

    Not possible with Acrobat Reader.

  • Update, and select from the same table

    Hello

    I have this selection - I've tested and work

    [code]

    Select
    case
    When DTF_REEW_201301.KTMO = 1 then DTF_REEW_201301.KTBT
    of other DTF_REEW_201301.KTBT - CTF_REEW_KUM_201301.KTBT
    end

    as KTBT_ISO,

    case
    When DTF_REEW_201301.KTMO = 1 then DTF_REEW_201301.KTZN
    of other DTF_REEW_201301.KTZN - CTF_REEW_KUM_201301.KTZN
    end

    as KTZN_ISO,

    case
    When DTF_REEW_201301.KTMO = 1 then DTF_REEW_201301.KTAB
    of other DTF_REEW_201301.KTAB - CTF_REEW_KUM_201301.KTAB

    end as KTAB_ISO,

    DTF_REEW_201301.brnrn,
    DTF_REEW_201301.ktat

    Of

    reewcore. CTF_REEW_KUM_201301 CTF_REEW_KUM_201301,
    reewdq. DTF_REEW_201301 DTF_REEW_201301

    where

    (DTF_REEW_201301.BRNRN = CTF_REEW_KUM_201301.BRNRN
    and DTF_REEW_201301.KTAT = CTF_REEW_KUM_201301.KTAT)
    and CTF_REEW_KUM_201301.KTMO = (DTF_REEW_201301.KTMO - 1).

    [/ code]

    With the result of KTBT_ISO, KTZN_ISO and KTAB_ISO I want to update the table 'reewdq. DTF_REEW_201301' - and this picture is in the select statement.

    I think I've tried every update statement - but no update does not work.

    I need something like this:

    [code]

    Update reewdq. DTF_REEW_201301 set t1 t1. KTBT_ISO =

    (

    Select
    case
    When DTF_REEW_201301.KTMO = 1 then DTF_REEW_201301.KTBT
    of other DTF_REEW_201301.KTBT - CTF_REEW_KUM_201301.KTBT
    end
    as KTBT_ISO

    Of

    reewcore. CTF_REEW_KUM_201301 CTF_REEW_KUM_201301,
    reewdq. DTF_REEW_201301 DTF_REEW_201301

    where

    (DTF_REEW_201301.BRNRN = CTF_REEW_KUM_201301.BRNRN
    and DTF_REEW_201301.KTAT = CTF_REEW_KUM_201301.KTAT)
    and CTF_REEW_KUM_201301.KTMO = (DTF_REEW_201301.KTMO - 1).

    ),

    T1. KTZN_ISO =

    (

    Select

    case
    When DTF_REEW_201301.KTMO = 1 then DTF_REEW_201301.KTZN
    of other DTF_REEW_201301.KTZN - CTF_REEW_KUM_201301.KTZN
    end
    as KTZN_ISO

    Of

    reewcore. CTF_REEW_KUM_201301 CTF_REEW_KUM_201301,
    reewdq. DTF_REEW_201301 DTF_REEW_201301

    where

    (DTF_REEW_201301.BRNRN = CTF_REEW_KUM_201301.BRNRN
    and DTF_REEW_201301.KTAT = CTF_REEW_KUM_201301.KTAT)
    and CTF_REEW_KUM_201301.KTMO = (DTF_REEW_201301.KTMO - 1).

    ),

    T1. KTAB_ISO =

    (

    Select
    case
    When DTF_REEW_201301.KTMO = 1 then DTF_REEW_201301.KTAB
    of other DTF_REEW_201301.KTAB - CTF_REEW_KUM_201301.KTAB
    end as KTAB_ISO

    Of

    reewcore. CTF_REEW_KUM_201301 CTF_REEW_KUM_201301,
    reewdq. DTF_REEW_201301 DTF_REEW_201301

    where

    (DTF_REEW_201301.BRNRN = CTF_REEW_KUM_201301.BRNRN
    and DTF_REEW_201301.KTAT = CTF_REEW_KUM_201301.KTAT)
    and CTF_REEW_KUM_201301.KTMO = (DTF_REEW_201301.KTMO - 1).

    )

    [/ code]

    But this isn´t of the labour code. Someone an idea please? Can someone help me please.

    Best regards

    Heidi

    Use MERGE:

    Fusion

    in reewdq. DTF_REEW_201301 t1

    a_l'_aide_de)

    Select the case sensitive option

    When DTF_REEW_201301.KTMO = 1 then DTF_REEW_201301.KTBT

    of other DTF_REEW_201301.KTBT - CTF_REEW_KUM_201301.KTBT

    end as KTBT_ISO,

    case

    When DTF_REEW_201301.KTMO = 1 then DTF_REEW_201301.KTZN

    of other DTF_REEW_201301.KTZN - CTF_REEW_KUM_201301.KTZN

    end as KTZN_ISO,

    case

    When DTF_REEW_201301.KTMO = 1 then DTF_REEW_201301.KTAB

    of other DTF_REEW_201301.KTAB - CTF_REEW_KUM_201301.KTAB

    end as KTAB_ISO,

    reewdq. ROWID that RID

    of reewcore. CTF_REEW_KUM_201301 CTF_REEW_KUM_201301,

    reewdq. DTF_REEW_201301 DTF_REEW_201301

    where DTF_REEW_201301.BRNRN = CTF_REEW_KUM_201301.BRNRN

    and DTF_REEW_201301.KTAT = CTF_REEW_KUM_201301.KTAT

    and CTF_REEW_KUM_201301.KTMO = DTF_REEW_201301.KTMO - 1

    ) t2

    on)

    T1. ROWID = t2.rid

    )

    When Fachhochschule

    then

    Update

    the t1 value. KTBT_ISO = t2. KTBT_ISO,

    T1. KTZN_ISO = t2. KTZN_ISO,

    T1. KTAB_ISO = t2. KTAB_ISO

    /

    SY.

  • Yesterday, I installed Photoshop CC (2014) through the creative cloud app. Now, when in Lightroom when I go to "change in" and select Photoshop CC (2014) and click on "edit copy with Lightroom adjustments", it opens Photoshop CC (2014) but my picture does

    Yesterday, I installed Photoshop CC (2014) through the creative cloud app. Now, when in Lightroom when I go to "Edit in" and select Photoshop CC (2014) and click on "edit copy with Lightroom adjustments", it opens Photoshop CC (2014) but my picture does not appear?  My picture is displayed when I click on "copy edit" or "edit original".

    How can I fix this so that I can open a photo in Lightroom WITH Lightroom adjustments? Thank you!

    My problem has been resolved by Adobe engineers. It seems that automatic resettlement carried out by sets of upgrade to win 10 everything to "run as Administrator". The simple solution, they told me was to disable this limitation and now everything works as it should.

  • All selections in the menu Filter and settings in the picture menu appear in gray"

    A colleague scanned a photo he sent to me to change it and try to improve it, but all I want to do is grey so I can't select it and I can't understand why. Maybe it has to do with how she has scanned?

    It is CMYK, 300 dpi and 8-bit.

    I want to sharpen and adjust the hue/saturation, but they are greyed out.

    No one knows why this is happening and how I can work around this problem so I can make the changes I need to do?

    Thank you

    I just thought of it. The layer was not selected in the layers palette. Once I chose it, everything I needed was not dimmed more.

    Still, I can't help but think that a picture that has only one layer this layer selected by default.

Maybe you are looking for