The layer properties. Visible, but unprintable

Hello

I have a PDF file with layers. I want some of that time to be visible but not printable. Is this possible?

Thank you

Yes, it is perfectly possible. Right-click on the layer name in Acrobat, and choose Properties. Then you have the visibility controls, printing and exporting.

Tags: Acrobat

Similar Questions

  • Check if the layer is visible and run a function according to the answer

    Hey guys,.

    I have a question that has been racking my brain these days.

    If I want to run a script when I press a button that will check if a specific layer is visible. If so, it performs another function that shows additional layers. If the specific layer is not visible, it checks the next layer to see if it is visible. This continues until it checks all the necessary layers and is a visible layer.

    Here's the script in question:

    #target photoshop

    //

    clthTopTt.jsx

    //

    cTID = function (s) {return app.charIDToTypeID (s) ;};}

    sTID = function (s) {return app.stringIDToTypeID (s) ;};}

    //

    //==================== actnStd ==============

    //

    function checkactnStd() {}

    Select

    function step 1 (enabled, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "actnStd");

    DESC1.putReference (cTID ('null'), ref1);

    DESC1.putBoolean (cTID ('MkVs'), false);

    var list1 = new ActionList();

    List1.putInteger (17011);

    DESC1.putList (list1, cTID ('LyrI'));

    executeAction (desc1 cTID ('slct'), dialogMode);

    };

    If

    step2 function (activated, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    DESC1.putEnumerated (cTID ('null'), ('Cndt') cTID, cTID ('Ahsvs'));

    var ref1 = new ActionReference();

    Ref1.putName (cTID ('Actn'), 'select actnStd');     <-if the actnStd layer is visible, rather than performing this action, it runs the function selectactnStd().

    Ref1.putName (cTID ('ASet'), 'clthTopTt');

    DESC1.putReference (cTID ('then'), ref1);

    ref2 var = new ActionReference();

    ref2.putName (cTID ('Actn'), "check actnWlk");  <-if the actnStd layer is NOT visible, it executes the next layer checks (via the function checkactnWlk(). )

    ref2.putName (cTID ('ASet'), 'clthTopTt');

    DESC1.putReference (cTID ('else'), ref2);

    executeAction (desc1 sTID ('conditional'), dialogMode);

    };

    Step1();      Select

    Step2();      If

    };

    function selectactnStd() {}

    Show

    function step 1 (enabled, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var list1 = new ActionList();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "topStdTt");

    Ref1.putName (cTID ("'Lyr"), "topMskStd");

    List1.putReference (Ref1);

    DESC1.putList (list1, cTID ('null'));

    executeAction (cTID ("'Shw"), desc1, dialogMode);

    };

    Hide

    step2 function (activated, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var list1 = new ActionList();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "topWlkTt");

    Ref1.putName (cTID ("'Lyr"), "topMskWlk");

    Ref1.putName (cTID ("'Lyr"), "topRunTt");

    Ref1.putName (cTID ("'Lyr"), "topMskRun");

    List1.putReference (Ref1);

    DESC1.putList (list1, cTID ('null'));

    executeAction (desc1 cTID ("Hd"), dialogMode);

    };

    Step1();      Show

    Step2();      Hide

    };

    //

    //==================== actnWlk ==============

    //

    function checkactnWlk() {}

    Select

    function step 1 (enabled, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "actnWlk");

    DESC1.putReference (cTID ('null'), ref1);

    DESC1.putBoolean (cTID ('MkVs'), false);

    var list1 = new ActionList();

    List1.putInteger (17012);

    DESC1.putList (list1, cTID ('LyrI'));

    executeAction (desc1 cTID ('slct'), dialogMode);

    };

    If

    step2 function (activated, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    DESC1.putEnumerated (cTID ('null'), ('Cndt') cTID, cTID ('Ahsvs'));

    var ref1 = new ActionReference();

    Ref1.putName (cTID ('Actn'), 'select actnWlk');

    Ref1.putName (cTID ('ASet'), 'clthTopTt');

    DESC1.putReference (cTID ('then'), ref1);

    ref2 var = new ActionReference();

    ref2.putName (cTID ('Actn'), "check actnRun");

    ref2.putName (cTID ('ASet'), 'clthTopTt');

    DESC1.putReference (cTID ('else'), ref2);

    executeAction (desc1 sTID ('conditional'), dialogMode);

    };

    Step1();      Select

    Step2();      If

    };

    function selectactnWlk() {}

    Show

    function step 1 (enabled, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var list1 = new ActionList();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "topWlkTt");

    Ref1.putName (cTID ("'Lyr"), "topMskWlk");

    List1.putReference (Ref1);

    DESC1.putList (list1, cTID ('null'));

    executeAction (cTID ("'Shw"), desc1, dialogMode);

    };

    Hide

    step2 function (activated, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var list1 = new ActionList();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "topStdTt");

    Ref1.putName (cTID ("'Lyr"), "topMskStd");

    Ref1.putName (cTID ("'Lyr"), "topRunTt");

    Ref1.putName (cTID ("'Lyr"), "topMskRun");

    List1.putReference (Ref1);

    DESC1.putList (list1, cTID ('null'));

    executeAction (desc1 cTID ("Hd"), dialogMode);

    };

    Step1();      Show

    Step2();      Hide

    };

    //

    //==================== actnRun ==============

    //

    function checkactnRun() {}

    Select

    function step 1 (enabled, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "actnRun");

    DESC1.putReference (cTID ('null'), ref1);

    DESC1.putBoolean (cTID ('MkVs'), false);

    var list1 = new ActionList();

    List1.putInteger (17013);

    DESC1.putList (list1, cTID ('LyrI'));

    executeAction (desc1 cTID ('slct'), dialogMode);

    };

    If

    step2 function (activated, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    DESC1.putEnumerated (cTID ('null'), ('Cndt') cTID, cTID ('Ahsvs'));

    var ref1 = new ActionReference();

    Ref1.putName (cTID ('Actn'), 'select actnRun');

    Ref1.putName (cTID ('ASet'), 'clthTopTt');

    DESC1.putReference (cTID ('then'), ref1);

    ref2 var = new ActionReference();

    ref2.putName (cTID ('Actn'), "check actnAc");

    ref2.putName (cTID ('ASet'), 'clthTopTt');

    DESC1.putReference (cTID ('else'), ref2);

    executeAction (desc1 sTID ('conditional'), dialogMode);

    };

    Step1();      Select

    Step2();      If

    };

    function selectactnRun() {}

    Show

    function step 1 (enabled, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var list1 = new ActionList();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "topRunTt");

    Ref1.putName (cTID ("'Lyr"), "topMskRun");

    List1.putReference (Ref1);

    DESC1.putList (list1, cTID ('null'));

    executeAction (cTID ("'Shw"), desc1, dialogMode);

    };

    Hide

    step2 function (activated, withDialog) {}

    If (enabled! = undefined & &! activated)

    return;

    var dialogMode = (withDialog? DialogModes.ALL: DialogModes.NO);

    var desc1 = new ActionDescriptor();

    var list1 = new ActionList();

    var ref1 = new ActionReference();

    Ref1.putName (cTID ("'Lyr"), "topStdTt");

    Ref1.putName (cTID ("'Lyr"), "topMskStd");

    Ref1.putName (cTID ("'Lyr"), "topWlkTt");

    Ref1.putName (cTID ("'Lyr"), "topMskWlk");

    List1.putReference (Ref1);

    DESC1.putList (list1, cTID ('null'));

    executeAction (desc1 cTID ("Hd"), dialogMode);

    };

    Step1();      Show

    Step2();      Hide

    };

    After he checks the last layer, then end the script.

    'clthTopTtLoop.jsx '.

    EXPRESSIONS OF FOLKLORE

    Any help is appreciated seriously. Thank you guys!

    Hey guys, I promised that I would update this post to help others if I got the answer, so here:

    Firstly, the developer has created a function to automatically get the layer. I had problems to find ways to select layers, especially because the layers were nested in groups inside groups. This helped solve that. The function was this:

    function selectLayer(name) {
      var desc = new ActionDescriptor();
      var ref = new ActionReference();
      ref.putName( charIDToTypeID('Lyr '), name );
      desc.putReference( charIDToTypeID('null'), ref );
      desc.putBoolean( charIDToTypeID('MkVs'), false );
      executeAction( charIDToTypeID('slct'), desc, DialogModes.NO );
      return
    };
    

    Then call the layer using layer real name (assuming that your layer names are unique. If they aren't, you'll find yourself only to select the first layer with the same specific name) throughout your script file.

    IE. In my case, selectLayer ("actnStd"); or selectLayer ("actnWlk");

    You then set the visibility by using the following code:

    // show
    app.activeDocument.activeLayer.visible = true;
    // hide
    app.activeDocument.activeLayer.visible = false;
    

    Then use a function to check whether a layer is visible. If the layer is visible, you run the function show/hide layers respective:

    function CheckactnWlk() {
      selectLayer("actnWlk");
      if  (app.activeDocument.activeLayer.visible == true) {
      SelectactnWlk()
      }
      else  {
      CheckactnRun();
      }
    };
    

    So in the end, the final script looks like this:

    #target photoshop
    
    app.bringToFront();
    CheckactnStd();
    
    function CheckactnStd() {
      selectLayer("actnStd");
      if  (app.activeDocument.activeLayer.visible == true) {
      SelectactnStd()
      }
      else  {
      CheckactnWlk();
      }
    };
    
    function SelectactnStd() {
      selectLayer("topMskStd");
      app.activeDocument.activeLayer.visible = true;
    
      selectLayer("topStdTt");
      app.activeDocument.activeLayer.visible = true;
    
      selectLayer("topWlkTt");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topMskWlk");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topRunTt");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topMskRun");
      app.activeDocument.activeLayer.visible = false;
    }; 
    
    function CheckactnWlk() {
      selectLayer("actnWlk");
      if  (app.activeDocument.activeLayer.visible == true) {
      SelectactnWlk()
      }
      else  {
      CheckactnRun();
      }
    };   
    
    function SelectactnWlk() {
      selectLayer("topMskStd");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topStdTt");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topWlkTt");
      app.activeDocument.activeLayer.visible = true;
    
      selectLayer("topMskWlk");
      app.activeDocument.activeLayer.visible = true;
    
      selectLayer("topRunTt");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topMskRun");
      app.activeDocument.activeLayer.visible = false;
    
    };
    
    function CheckactnRun() {
      selectLayer("actnRun");
      if  (app.activeDocument.activeLayer.visible == true) {
      SelectactnRun()
      }
      else  {
      alert ('There is no Selected Layer', 'Please select a layer', 0);
      }
    };
    
    function SelectactnRun() {
      selectLayer("topMskStd");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topStdTt");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topWlkTt");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topMskWlk");
      app.activeDocument.activeLayer.visible = false;
    
      selectLayer("topRunTt");
      app.activeDocument.activeLayer.visible = true;
    
      selectLayer("topMskRun");
      app.activeDocument.activeLayer.visible = true;
    
    };
    
    function selectLayer(name) {
            var desc = new ActionDescriptor();
            var ref = new ActionReference();
            ref.putName( charIDToTypeID('Lyr '), name );
           desc.putReference( charIDToTypeID('null'), ref );
           desc.putBoolean( charIDToTypeID('MkVs'), false );
           executeAction( charIDToTypeID('slct'), desc, DialogModes.NO );
           return
    };
    
    app.preferences.rulerUnits = rUnit;
    app.preferences.typeUnits = tUnit;
    
    selectLayer("actnStd");
    

    Guys good luck! Now to find how to select random layers via the script.

  • Check if the layer is visible

    Hey,.

    is there a way to check whether a layer is visible in given time? I don't know about the two methods:

    . audioActiveAtTime() and .activeAtTime (time), which could be useful, but rather to check if the layer is turned on I would like to check if it is visible / audible (regardless of .enalbed, State of .audioEnabled).

    Thanks in advance!

    This can help to spark an idea. Perhaps.

    Free layersAtCurTime function Friday by David Torno - ProVideo Coalition

  • Copy the layer properties

    Hi all

    I had this frustration some time and thought there was nothing I can do about it as I don't want to buy a script just for this, if this is the case, but that's.

    If two layers are both 100% scale, but a single layer is 100 x 100 px, and the other is 200 x 200 px, is it possible that I can make one match on the other?

    I know that you can transfer the parent, but that seems to only affect that ladders, etc., I want especially to use it in the way I have a form for a piece of the video to go, normally a vector from illustrator as a placeholder, I don't then want to copy the shape and the parent to this.

    Is this possible?

    Thanks for any help!

    Expressions can return the height and width of a layer. You can write an expression that divides the target layer height and width and the width by the height of the source layer. There are two ways to write this expression. One using a table, one using individual values.

    This is option 1:

    sLayer = [width, height]; source layer

    tLayer = [thisComp.layer("target_layer").width, thisComp.layer("target_layer").height]; target layer

    [tLayer [0] / sLayer [0], tLayer [1] / sLayer [1]] * 100

    Here are 2 option:

    tlWidth = thisComp.layer("target_layer").width;

    tlHeight = thisComp.layer("target_layer").height;

    slWidth = width;

    slHeight = height;

    SX = tlWidth / slWidth;

    Sy = tlHeight / slHeight;

    [sx, sy] * 100

    Apply expressions of the scale property of the source layer. The outside dimensions of the source and the target will be now. If the layer 'target' is the parent that the source layer will react normally. If the source layer

    is the parent, you cannot adjust the pair scale without changing the expression with a value more than the statement. Here is an example of project CS6.

  • Reveal the layer properties in the timeline panel

    Hi, I'm working on a script where I selected all masks on a layer. It works fine, when I type 'm' on the keyboard, it shows all the masks and they are selected. I was wondering if there is a way in Extendscript to reveal masks selected for the user does not have to go find them after that that they have been chosen?

    Don't reveal native attribute of ExtendScript real estate. You have this:

    MaskPropertyGroup

    assets

    canSetEnabled

    Color

    elided

    activated

    reversed

    isEffect

    isMask

    isModified

    locked

    maskFeatherFalloff

    maskMode

    maskMotionBlur

    Remove

    name

    numProperties

    %{ParentProperty/}

    propertyDepth

    propertyIndex

    propertyType

    Rotobezier

    selected

    addProperty()

    canAddProperty()

    Duplicate()

    moveTo()

    Property()

    propertyGroup()

    Remove()

    PropertyGroup

    assets

    canSetEnabled

    elided

    activated

    isEffect

    isMask

    isModified

    Remove

    name

    numProperties

    %{ParentProperty/}

    propertyDepth

    propertyIndex

    propertyType

    selected

    addProperty()

    canAddProperty()

    Duplicate()

    moveTo()

    Property()

    propertyGroup()

    Remove()

  • Copy the name of the layer to the Clipboard?

    Hi, I was looking for a way to copy the name of the active layer in the Windows Clipboard, I hope this a quick solution. What I managed to do up to now, it is to open the Layer Properties dialog box, and then press 'CTRL + C' to copy the layer name (because the name of the layer is already highlighted at this stage), and then it correctly copy the name of the layer in the Windows Clipboard.

    But I found that when the system is under load, the Layer Properties dialog box is sometimes slow to open, and despite this, it seems that it is an additional step that could be eliminated.

    I searched through keyboard shortcuts and also in all the menus layer for a keyboard shortcut for just 'copy layer to the Clipboard name' but cannot find anything.

    Anyone know if there is a quick shortcut to do this or maybe a quick script that will copy just the name of the layer?

    Thanks in advance...

    Bingo! Thank you Philippe/csuebele/pixxxel, it's the "clip.exe" that was the problem for me. I pasted in system32 and now it works. It's awesome - now I am able to view a tool tip with the name of the layer, whenever I change the layers (with the help of my other app left 3rd) - this is especially useful when working in mode full screen when you don't see the palette layers. It will update your tool tip with the name of the layer whenever you use keyboard shortcuts to select the different layers.

    If someone thinks they would find useful, I had me more than happy to share it... but it's using a different script software, so I may or may not be able to talk about it here. Shoot me a private message if I can't talk about it here and you would like it to be.

  • I installed the new version of LIghtroom (2015) compared to the creative clouds.  Creative cloud said that I installed the new version.  However, the shortcut icon that has been installed does not start the new version.  Also, I went to the link propertie

    I installed the new version of LIghtroom (2015) compared to the creative clouds.  Creative cloud said that I installed the new version.  However, the shortcut icon that has been installed does not start the new version.  I also went on the link properties itself, but without success in starting.  How to launch the new version?

    Thank you, toinimj59.  I did this part and the installation is complete (there is apparently not earlier--included an acceptance of the general terms and conditions...)

    Solution 1: Disconnect from the desktop creative cloud app and reconnect

    1. Disconnect from and to, the app Office creative Cloud click here for instructions to return in
    2. Launch of Lightroom.
  • Opacity of the layer in Photoshop Touch iPhone5

    How can I change the opacity of a layer?

    Thank you

    Hello!

    Steps in how to change the opacity of a layer:

    1. select the layer + icon at the bottom right.

    3 this will open the layer properties. Select the icon of the layer.

    4 you can adjust the opacity of each layer you have selected.

    Please let us know if you have any other questions,

    Janelle

  • Resize the layer with smart filter without affecting the Smart Filter layer appearance

    I made a wax seals on photoshop with lots of embossing, bevelment and a dynamic filter. It's done and I just need to make it smaller so it fits well on my certificate. When I resize (Ctr + T) it appears a messgae which reads:

    ______________________________________________

    Adobe Photoshop CS6 extended

    "The dynamic filters applied to the layers contained in this group will be disabled at the temprarily while conversion is in preview. They will be applied after commit the transformation. »

    Ok

    [] Do not show

    ______________________________________________

    I click OK and I resize the layer with free transform, and then press ENTER. The layer is resized, but my smart filter that cretaes affect a shower around the joint is completely distorted.

    How to resize my layer with smart filter without affecting the appearance of dynamic filter of the layer

    Right-click on the name of the layer to smart object in the layers panel to get the menu below. Choose "Convert to Smart Object" to encapsulate the er and its smart filter and Layer Styles within a new KIND that can be resized without appearance changes.

  • JS CS4: Create the variable for the active layer, and then select the layer at the end of a script

    I'm come white with the verbiage and spin my wheels with OMV guide and script.

    var myOriginalLayer = app.activeDocument.layers.item (0);
    Alert (myOriginalLayer)

    Returns "layer object" and not the name of the layer.

    var myOriginalLayer = app.activeDocument.layers.lastItem () .name;

    Returns the name of the layer I want but not by choice.

    I am challenged on how to select the layer.

    Hi John,.

    The difference lies in that the [Object Layer] is the real object, and the 'name' is a property - like color.

    You can use one of these two approaches:

    var myOriginalLayer = app.activeDocument.layers.item (0);
    Alert (myOriginalLayer.Name);

    hosts the original layer object, and you can see the name if necessary :-)

    For re - select the layer, use

    app.activeDocument.activeLayer = myOriginalLayer;

    You can also select name goes like

    var myOriginalLayerNAME = app.activeDocument.layers.lastItem () .name;

    ...

    app.activeDocument.activeLayer = app.activeDocument.layers.item (myOriginalLayerNAME);

    I also noted the following:

    app.activeDocument.layers.item (0) points to the first layer of your document; not the 'active'. Similarly, app.activeDocument.layers.lastItem () points only to the very last. I don't know if the order of the activeDocument.layers array mimicks the order as shown in the tags palette, but I hope for it :-)

    To get/set the active layer, use app.activeDocument.activeLayer as shown above.

  • How to make the layer visible on and outside

    Hi, experts

    This is my script:

    docs var = app.documents.

    for (var i = docs.length - 1; i > = 0; i--) {}

    docs [i].layers.item ("Chi") .visible = true;

    docs [i].layers.item ("Chi") .locked = false;

    docs [i].layers.item ("Eng") .visible = false;

    docs [i].layers.item ("Eng") .locked = true;

    }

    Alert ("Done.")

    But how do the layer

    1. If the 'chi' layer visible = true; everything in "eng" visible = false

    'chi' locked = false; While 'eng' locked = true

    just to put the

    layer 'chi' visible = false; everything in "eng" visible = true

    'chi' locked = true; While 'eng' locked = false

    like two switch layers;

    respect of

    John

    Try this,

    var docs = app.documents;
    for (var i = docs.length-1; i >= 0; i--) {
        if(docs[i].layers.item("Chi").visible == true && docs[i].layers.item("Chi").locked == false)
        {
            docs[i].layers.item("Chi").visible = false;
            docs[i].layers.item("Chi").locked = true;
            docs[i].layers.item("Eng").visible = true;
            docs[i].layers.item("Eng").locked = false;
        }
        else if(docs[i].layers.item("Eng").visible == true && docs[i].layers.item("Eng").locked == false)
        {
            docs[i].layers.item("Chi").visible = true;
            docs[i].layers.item("Chi").locked = false;
            docs[i].layers.item("Eng").visible = false;
            docs[i].layers.item("Eng").locked = true;
        }
    }
    alert("Done.")
    
  • Open a new file in photoshopcc and the name of the file is displayed but no Web white work. You can see it as a layer in the layers panel and if I pull on the grey area I see int on the layer, but not on the main screen.

    Open a new file in photoshop cc and the name of the file is displayed but no Web white work. You can see it as a layer in the layers panel and if I pull on the grey area I see int on the layer, but not on the main screen.

    Nice day!

    Could you please post a screenshot with the relevant panels visible?

    Not turning off"use graphics processor" in the Performance preference and restarting Photoshop have a bearing on the issue.

    Kind regards

    Pfaffenbichler

  • Move the layer but keep anchor still

    Hi, I know that I can use the Pan behind tool to move a layer anchor point. Now for adjustment purposes that I need to move the layer, but keep the anchor point where it is... otherwise it changes the path of the animation. Is this possible?

    Kind regards

    Frank

    I guess you have your animation path and you want to change the position of the layer to this track. If you simply position keyframes adjust anchor point values in the timeline panel. You can click and drag on the values, so that you can see the movement of the layer from the path.

    If you have animated a layer by setting keyframes in the anchor point so that you can change the relative position of the layer by rubbing through the position values in the timeline panel.

    If you have animated the two position and anchor, then you can open the layer in the layer panel, reveal the path of the anchor, select all the keyframes of an anchor in the scenario, click and drag on any keyframes the anchor to drag all this without creating a new keyframe. You can see and move keyframes from the plug-in position which has properties of position in the layer window and do the same thing.

    You can use the same select all the keyframes in the technical timeline to recover and move a path any position in the composition window.

    If this doesn't give you a solution I don't understand your problem.

  • When I go to a particular Web site, certain content (in this case phone number) appears briefly and then disappears. But when displaying the same Internet site in safe mode, the content is visible.

    Question

    I have another type of problem with Firefox

    Description

    When I visit a particular Web site some content (the phone number in this case) appears briefly and then disappears. But when you view the Web site even in safe mode its ok the content is visible

    This has happened

    Each time Firefox opened

    3 days ago

    Troubleshooting information

      Application Basics
            Name         Firefox
            Version         3.6.7
            Profile Directory
              Open Containing Folder
            Installed Plugins
              about:plugins
            Build Configuration
              about:buildconfig
    
      Extensions
            Name
            Version
            Enabled
            ID
            Microsoft .NET Framework Assistant         1.1         true         {20a82645-c095-46ed-80e3-08825760534b}
            Skype extension for Firefox         3.3.0.3971         true
            Xmarks         3.6.7         true         [email protected]
    
      Modified Preferences
          Name
          Value
            accessibility.typeaheadfind.flashBar         0
            browser.history_expire_days.mirror         180
            browser.history_expire_days_min         3
            browser.places.importBookmarksHTML         false
            browser.places.importDefaults         false
            browser.places.leftPaneFolderId         -1
            browser.places.migratePostDataAnnotations         false
            browser.places.smartBookmarksVersion         2
            browser.places.updateRecentTagsUri         false
            browser.startup.homepage         http://www.google.co.uk
            browser.startup.homepage_override.mstone         rv:1.9.2.7
            dom.max_script_run_time         1800
            extensions.lastAppVersion         3.6.7
            general.useragent.extra.microsoftdotnet         (.NET CLR 3.5.30729)
            network.cookie.lifetimePolicy         2
            network.cookie.prefsMigrated         true
            places.last_vacuum         1279193068
            print.print_printer         Samsung ML-2010 Series
            print.printer_CutePDF_Writer.print_bgcolor         false
            print.printer_CutePDF_Writer.print_bgimages         false
            print.printer_CutePDF_Writer.print_command
            print.printer_CutePDF_Writer.print_downloadfonts         false
            print.printer_CutePDF_Writer.print_edge_bottom         0
            print.printer_CutePDF_Writer.print_edge_left         0
            print.printer_CutePDF_Writer.print_edge_right         0
            print.printer_CutePDF_Writer.print_edge_top         0
            print.printer_CutePDF_Writer.print_evenpages         true
            print.printer_CutePDF_Writer.print_footercenter
            print.printer_CutePDF_Writer.print_footerleft         &PT
            print.printer_CutePDF_Writer.print_footerright         &D
            print.printer_CutePDF_Writer.print_headercenter
            print.printer_CutePDF_Writer.print_headerleft         &T
            print.printer_CutePDF_Writer.print_headerright         &U
            print.printer_CutePDF_Writer.print_in_color         true
            print.printer_CutePDF_Writer.print_margin_bottom         0.5
            print.printer_CutePDF_Writer.print_margin_left         0.5
            print.printer_CutePDF_Writer.print_margin_right         0.5
            print.printer_CutePDF_Writer.print_margin_top         0.5
            print.printer_CutePDF_Writer.print_oddpages         true
            print.printer_CutePDF_Writer.print_orientation         0
            print.printer_CutePDF_Writer.print_pagedelay         500
            print.printer_CutePDF_Writer.print_paper_data         9
            print.printer_CutePDF_Writer.print_paper_height         297.00
            print.printer_CutePDF_Writer.print_paper_size_type         1
            print.printer_CutePDF_Writer.print_paper_size_unit         1
            print.printer_CutePDF_Writer.print_paper_width         210.00
            print.printer_CutePDF_Writer.print_reversed         false
            print.printer_CutePDF_Writer.print_scaling         0.70
            print.printer_CutePDF_Writer.print_shrink_to_fit         true
            print.printer_CutePDF_Writer.print_to_file         false
            print.printer_CutePDF_Writer.print_unwriteable_margin_bottom         0
            print.printer_CutePDF_Writer.print_unwriteable_margin_left         0
            print.printer_CutePDF_Writer.print_unwriteable_margin_right         0
            print.printer_CutePDF_Writer.print_unwriteable_margin_top         0
            print.printer_Samsung_ML-2010_Series.print_bgcolor         false
            print.printer_Samsung_ML-2010_Series.print_bgimages         false
            print.printer_Samsung_ML-2010_Series.print_command
            print.printer_Samsung_ML-2010_Series.print_downloadfonts         false
            print.printer_Samsung_ML-2010_Series.print_edge_bottom         0
            print.printer_Samsung_ML-2010_Series.print_edge_left         0
            print.printer_Samsung_ML-2010_Series.print_edge_right         0
            print.printer_Samsung_ML-2010_Series.print_edge_top         0
            print.printer_Samsung_ML-2010_Series.print_evenpages         true
            print.printer_Samsung_ML-2010_Series.print_footercenter
            print.printer_Samsung_ML-2010_Series.print_footerleft         &PT
            print.printer_Samsung_ML-2010_Series.print_footerright         &D
            print.printer_Samsung_ML-2010_Series.print_headercenter
            print.printer_Samsung_ML-2010_Series.print_headerleft         &T
            print.printer_Samsung_ML-2010_Series.print_headerright         &U
            print.printer_Samsung_ML-2010_Series.print_in_color         true
            print.printer_Samsung_ML-2010_Series.print_margin_bottom         0.5
            print.printer_Samsung_ML-2010_Series.print_margin_left         0.5
            print.printer_Samsung_ML-2010_Series.print_margin_right         0.5
            print.printer_Samsung_ML-2010_Series.print_margin_top         0.5
            print.printer_Samsung_ML-2010_Series.print_oddpages         true
            print.printer_Samsung_ML-2010_Series.print_orientation         0
            print.printer_Samsung_ML-2010_Series.print_pagedelay         500
            print.printer_Samsung_ML-2010_Series.print_paper_data         9
            print.printer_Samsung_ML-2010_Series.print_paper_height         11.00
            print.printer_Samsung_ML-2010_Series.print_paper_size_type         0
            print.printer_Samsung_ML-2010_Series.print_paper_size_unit         1
            print.printer_Samsung_ML-2010_Series.print_paper_width         8.50
            print.printer_Samsung_ML-2010_Series.print_reversed         false
            print.printer_Samsung_ML-2010_Series.print_scaling         0.70
            print.printer_Samsung_ML-2010_Series.print_shrink_to_fit         true
            print.printer_Samsung_ML-2010_Series.print_to_file         false
            print.printer_Samsung_ML-2010_Series.print_unwriteable_margin_bottom         0
            print.printer_Samsung_ML-2010_Series.print_unwriteable_margin_left         0
            print.printer_Samsung_ML-2010_Series.print_unwriteable_margin_right         0
            print.printer_Samsung_ML-2010_Series.print_unwriteable_margin_top         0
            privacy.clearOnShutdown.downloads         false
            privacy.clearOnShutdown.formdata         false
            privacy.clearOnShutdown.history         false
            privacy.clearOnShutdown.sessions         false
            privacy.cpd.siteSettings         true
            privacy.item.cookies         true
            privacy.sanitize.migrateFx3Prefs         true
            privacy.sanitize.sanitizeOnShutdown         true
            privacy.sanitize.timeSpan         0
            security.warn_viewing_mixed         false
    

    Version of Firefox

    3.6.7

    Operating system

    Windows XP

    User Agent

    Mozilla/5.0 (Windows; U; Windows NT 5.1; en - us; RV:1.9.2.7) Gecko/20100713 Firefox/3.6.7 (.NET CLR 3.5.30729)

    Plugins installed

    • -Version 1.2.0.0
    • NapsterLink
    • 6.0.12.1675
    • RealPlayer LiveConnect-Enabled plug-in
    • Netscape Plugin RealJukebox
    • Adobe PDF plugin for Firefox and Netscape
    • The QuickTime Plugin allows you to display a wide variety of multimedia content in Web pages. For more information, see the Web of QuickTime site.
    • Default plugin
    • Google update
    • Shockwave Flash 10.0 r42
    • Adobe Shockwave for Director Netscape plug-in, version 11.5
    • Plugin Picasa
    • Windows Presentation Foundation (WPF) plugin for Mozilla browsers
    • Npdsplay dll
    • DRM Netscape Plugin store
    • DRM Netscape Object network

    Problems with phone numbers does not display correctly can be caused by the Skype extension (Tools > Modules > Extensions)

    See Troubleshooting extensions and themes and problems of hardware acceleration to resolve common Firefox problems

  • Hi, I bought a new Iphone 6 s and made a backup of my old Iphone 5. The backup is visible in my new phone, but it is not clickable. Help someone?

    Hi, I bought a new Iphone 6 s and made a backup of my old Iphone 5. The backup is visible in my new phone, but it is not clickable. Help someone?

    Are you trying to access the backup during the initial installation or you have already install the new phone? If you already have the first installation, refer to the instructions below to transfer content from an iPhone, iPad or iPod touch to a new device - Apple Support

    To transfer a backup on a device, you have already configured, you need to clear the device: tap Settings > General > reset > erase all content and settings. This erases all the data that is currently on your device. After you erased, your device will restart and you will see the screen of 'Hello '. Now, you can transfer a backup of your device.

Maybe you are looking for

  • Best Safari?

    My Safari is Version 9.1.2 (11601.7.7). I think I had 10 Version before installing El Capitan.

  • Unique identifier of the display.

    Hello Is it possible to display the unique identifier for the step instead of or in addition to the name of the step? How to display this unique identifier in the sequence editor? K.

  • Whats playing virus pickle

    What is pickle game virus

  • Windows Explorer stopped working

    I had OOVOO on my PC. When I clicked on this subject recently, I was suggested to download the last update, I did. After that, I'm not able to access anything on my desk (Control Panel, my documents, even the trash) with the exception of Internet. Up

  • Reformat C: with HP Advisor...

    Hi guys,. I need help. Acted for about three months when I bought this bad boy stage monitors were not working, and Windows 7 kept gel etc. A geek came round to HP to fix - first he tried restoring the system which does not-Microsoft wound't just let