Copy and paste adjustment  problem/ possible bug.

Hi all
I have just encountered a very strange problem/ possible bug.
I have been working on a file in photoshop cs5 that had come from lightroom 5.3. This was then saved (automaticaly becomes tiff file in Lightroom). I then wanted to make some more adjustments to it in lightroom (using local adjustment clarity). I then tried to copy the settings of the adjustment brush  from the tiff to the original raw file. This is where it gets very strange. The adjustments are copied but they are rotated ccw by 90 degrees!  I can replicate this every time.
Could someone else try to see if this problem exists on their catalogs or if its a corrpution problem my end.

Noted on the bug, thanks.
1762hd wrote:
Hi Geoff
Heres the summary for bug report - please note this bug also affects radial filter/healing brush and crop
Scenario
1 open a portrait raw image in photoshop using render using lightroom (I am using cs5)
2 back in lightroom make a change using the - adjustment brush/ radial filter/healing brush or crop - to the newly created tiff image.
3 copy and paste this adjustment to the original raw file.
problem
all effects are rotated.

Similar Messages

  • ITUNES COPY AND PASTE ARTWORK PROBLEM

    Ive had a problem ever since I downloaded the newest itunes update and want to see if anyone else is having this issue.  I hope I can explain this accurately.
    When you have the album artwork displayed on the bottom left hand of the itunes screen.  I used to be able to double click on the artwork and copy that album cover art and paste it onto another track.  Ever since Ive updated itunes a couple weeks ago, the double clicking is no longer working.  When I doubleclick, it just doesnt work and doesnt give me the option to cut or copy anymore.  So now I have no ability to cut/copy and paste artwork from one album to another.  I used to always do t his routinely without a problem.  Is anyone else having this issue or have an idea what is going on?  Did a setting accidentally change?
    Im talking about the album artwork on the bottom left of the screen.  Double clicking it no longer works- doesnt give me any options.  (The music is not purchased from itunes so I often manually update the artwork)

    Copy from the artwork panel (and image selection between multiple artwork) is broken on this build. You can still copy art from the artwork tab in Get Info.
    tt2

  • Copy and paste/drag problems

    The copy and paste functions are not working with my macbook and neither is dragging anything. I have used the command v and also edit copy and neither are working. Help please and thank you!

    A similar discussion:
    http://discussions.apple.com/thread.jspa?messageID=5773819
    There's a solution identified there.
    Reboot holding down the Shift Key (you'll hear a little series of tones)
    Utilities->Disk Utility
    Repair Permissions on your system HD
    Reboot.
    You NEED to do the Shift-Key reboot - just doing repair permissions didn't work for me.

  • "copy and paste text within symbol" bug

    I am sure this has been discussed, but have not found it using search.
    Follow these steps to demonstrate a "Symbol Text" bug (CS5 through CC 2014):
    Create Symbol containing editable text.
    Edit symbol by selecting and copying a portion of text at "Character" level in the Symbol
    Paste as point or paragraph text.
    The result is: ALL the text from the Symbol is pasted into the Point or Paragraph text object, NOT just the portion that was copied.
    This bug has been present in AI at LEAST since CS5 and probably before. I'd sure like to see it fixed.

    Ray,
    I'm using C5 also.
    What I get is the copied text plus all the text in the symbol.
    Peter

  • Bug: Copying and pasting a htmlText ignores embed font???

    - Adobe Flash Pro CS4
    - Reproducible in Flash player 9 and 10
    There seems to be a bug when copying a string value from a "htmlText" textfield and then pasting it in a standard "text" textField, and then adding that text back into the htmlText textField, which in turn no longer displays any new text.
    For example:
    1. Type "hello" in input textField, and press [Send] button
    2. "hello" appears in the display textField (as htmlText)
    3. From the display textField, copy the word "hello" and paste it into the input textField.
    4. Press [Send]
    5. Now, if embedFont was enabled and assuming that there is a ArialReg font class defined via library, the display textField does not show the 2nd "hello" message, and it no longer display anything new. This is because it was not able to show the text that was embedded as another font. You can tell this by turning off embedFont. Repeat steps 1-4, note that the 2nd "hello" font differs to the 1st "hello" font - which caused the bug as per above.
    Source code (requires ArialReg and fl.controls.Button defined via Library):
    //Copy and paste into your main timeline.
    import flash.events.Event;
    import fl.controls.Button;
    var enableEmbed:Boolean = false;
    var format:TextFormat = new TextFormat();
    format.font = new ArialReg().fontName;
    format.bold = false
    format.size = 12
    format.color = 0x000000;
    format.align = TextFormatAlign.LEFT
    format.underline = false
    var _chatBox:TextField = new TextField();
    _chatBox.multiline = true;
    _chatBox.selectable = true;
    _chatBox.wordWrap = true;
    _chatBox.multiline = true;
    _chatBox.embedFonts = enableEmbed;
    _chatBox.antiAliasType = "advanced";
    _chatBox.tabEnabled = false;
    _chatBox.mouseEnabled = true;
    _chatBox.defaultTextFormat = format;
    _chatBox.width = 260
    _chatBox.height = 300
    _chatBox.type = "dynamic";
    _chatBox.x = 10;
    _chatBox.y = 30;
    _chatBox.mouseWheelEnabled = false
    _chatBox.background = true;
    _chatBox.border = true;
    format = new TextFormat();
    format.font = new ArialReg().fontName;
    format.bold = false
    format.size = 12
    format.color = 0x000000;
    format.align = TextFormatAlign.LEFT
    format.underline = false
    var _chatInput:TextField = new TextField();
    _chatInput.multiline = true;
    _chatInput.selectable = true;
    _chatInput.wordWrap = true;
    _chatInput.multiline = true;
    _chatInput.embedFonts = enableEmbed;
    _chatInput.antiAliasType = "advanced";
    _chatInput.tabEnabled = false;
    _chatInput.mouseEnabled = true;
    _chatInput.defaultTextFormat = format;
    _chatInput.width = 200;
    _chatInput.height = 50;
    _chatInput.type = "input";
    _chatInput.x = 10;
    _chatInput.y = _chatBox.y + _chatBox.height + 5;
    _chatInput.mouseWheelEnabled = false;
    _chatInput.background = true;
    _chatInput.border = true;
    var _chatSendBtn:Button = new Button();
    _chatSendBtn.y = _chatInput.y;
    _chatSendBtn.x = 215;
    _chatSendBtn.width = 55
    _chatSendBtn.height = _chatInput.height;
    _chatSendBtn.addEventListener(MouseEvent.MOUSE_UP, onChatSendBtn);
    _chatSendBtn.label = "Send";
    this.addChild(_chatBox);
    this.addChild(_chatInput);
    this.addChild(_chatSendBtn);
    function onChatSendBtn(mE:MouseEvent):void
        if (_chatInput.text != "")
            _chatBox.htmlText += _chatInput.text;       
            _chatInput.text = "";

    Note:
    _chatBox.htmlText += _chatInput.text;       
    _chatBox.setTextFormat(format);
    will resolve the problem, but it introduces another bug - Using setTextFormat does not allow bold and regular font for embedFonts for htmlText, however defaultTextFormat does. As I need both bold and regular font for the textField, I can't use that workflow.

  • Copy and paste problem with regions

    I've noticed that occasionally, when I copy and paste a region within the same track, I sometimes paste twice (directly on top of the other region). Or at least that's the end result. When I realize this, I go to delete the region and then there's a region under that one.
    Except, it's very long, sometimes the length of the song. This wouldn't be a problem except it's uneditable. I can't trim it, loop it, cut it etc.
    Besides not pasting it twice in the first place, how can I keep this from occurring? Is it a bug? Why can't I edit the region? Thanx.

    I should probably mention that this happens primarily with audio instrument tracks.

  • Before, when reading PDF files, I was able to copy and paste part of the book. Now it is not possible. I can copy but when pasting gets nothing.  Antes, quando lia arquivos PDF, eu conseguia copiar e colar parte do livro. Agora isso não é possível.

    Before, when reading PDF files, I was able to copy and paste part of the book. Now it is not possible. I can copy but when pasting gets nothing.
    Antes, quando lia arquivos PDF, eu conseguia copiar e colar parte do livro. Agora isso não é possível. Eu consigo copiar, mas quando vou colar o texto, não cola nada.

    Caro Fabiano,
    Obrigado por ter contactado as Comunidades de Suporte Apple.
    Na origem do seu problema podem estar várias causas. Nomeadamente:
    O ficheiro (arquivo) que está a ler pode não ser texto, ou seja, pode ser texto transformado em imagem e exportado como PDF.
    A aplicação de destino (onde está a tentar colar o texto copiado) pode não aceitar a colagem de texto formatado.
    A aplicação que está a utilizar para abrir os ficheiros PDF pode não ser indicada para certo tipo de documentos. Experimente o iBooks, o Dropbox ou até mesmo o seu e-mail.
    No caso de nenhuma destas causas estar na origem do seu problema, forneça, por favor, mais informações sobre a origem do ficheiro (descarga pelo Safari, Mail ou outro) bem como o destino (documento Pages, Keynote ou Numbers ou outra aplicação que não o iWork).
    Atentamente,
    Gonçalo Matos
    Estou aqui para ajudar. Clique no botão "Reply" no caso de ter outra questão ou necessitar de outro esclarecimento para que eu possa ajudar da melhor forma que conseguir.

  • Copy and Paste Bug for Windows 8.1

    Hi while copying over my music library I recently discovered a bug with copy and paste. Say that you want to copy music from folder a to folder b. Folder b already contains some of the music files in folder a. So you when you select all of the files in folder
    a and copy them over to folder a, as soon as the system encounters a duplicate file it will inform the user if it wants to replace the file or skip it. In that same dialogue box at the bottom there is a check box that by clicking it the user is telling the
    system to do the same for all of the next conflicting files. To my understanding what that should do is if the user says that the system should ignore all of the conflicting files, then for all of the conflicting files that it finds those files should be ignored,
    and all of the other non-conflicting files should not be ignored. However, that is not the case, when there is a conflicting file and the box is checked then the system ignores all of the files after the file that was conflicting. That is to say that after
    the first conflicting file in folder a no other non-conflicting files from folder a will be copied into folder b.
    Has anyone else ran into that issue? 
     

    same problem with me !

  • Ios8 copy and paste / Digital AV Cable / internet dropping and other bugs!

    hello -
    so like everyone else else there is a number of bugs I am running into. so here's my list- Yes I've tried to restore, so I am praying that the ios8 update will contain these fixes:
    - copy and paste doesn't work between applications- but it's sporadic! (issue originally found when copying from a webpage to an email, then into notes from another webpage)
    - my Apple lighting to digital AV cable doesn't "read/transfer" to the TV
    - internet randomly drops for a few seconds to minutes for no apparent reason the it being an iPhone 6
    - Facebook and other internet heavy apps like Associated Press are extremely lagging or give me an error unable to connect to server
    - randomly freezes while taking pictures or taking notes- it won't even let me shut down
    - voicemail set up doesn't  work
    I am sure there are more bugs but haven't seen them or I've forgotten about them! If anyone else has these problems please check the box that you do have the same issue. Also any known resolutions would be appreciated!
    With Joy,
    Christina

    Another file?
    Do you mean folder? Inside or outside iPhoto?
    I'm trying to copy photos to a Sony Digital Photo Frame.
    Select the photos you want to use.
    Export them to a folder on the Desktop. File -> Export
    Add that to the device.
    This User Tip
    https://discussions.apple.com/docs/DOC-4921
    has details of the options in the Export dialogue.

  • Copy and Paste InDesigne gives inserted graphic, not object!? Bug or "feature"?

    When I copy and paste any object in Indesign (Vectorgraphics, Rectangle, Textarea, everything) it isn't pasted as another object, it's paster as an inserted Graphic. I use Creative Cloud, updating automatically. Is this a new "feature" or a bug? Copying and pasting an Object -> i want an object again (editable and with the same color etc) and not an inserted graphic. Can I change any settings for that or something? never had this problem before!
    I would really appreciate your help as it's really uncomfortable in the workflow even though i could understand it would increase performance and reduce data volume.

    I have problem like this with indesign cs6 and windows 7, when i copy and paste frames it paste as there is graphic inside with a content grabner, my work around is from windows start>all program >go to indesign and run as administrator. Hope this may help.

  • Is it possible to copy and paste (or replicate) selected sections of a form to reduce form construction time?

    I am building a very large form which will have the same group of question response choices repeated multiple times in the form.  Is it possible to replicate/duplicate these sets of identical response choices (by say, copying and pasting)?  Thank you.

    Hi Ned,                                                                                                                                                                      B"D
    Thank you for giving an idea how to solve my problem.
    You suggested to save a page as an .html in Word.
    This is what I did:
    1. In Word I formated title as Heading 1.( Formating-->Styles and Formating)
    2. Saved the page  as an HTML file.
    3. When I  pasted  this page into Dreamweaver  <h1> TAG was displaced in the source code.
    cheers,
    Dreamer101.1

  • How do you copy and paste an adjustment layer to the center of a new doc?

    Hi,
    I know I can drag an adjustment layer to a new document, but it's never in the center. So I end up with an image with adjustments made, but not across the whole image. Therefore I have to eyeball and properly center the adjustment layer to make sure the adjustment sits in the center and is therefore made across the whole image.
    Is there a way, or a shortcut, to do this whole process much easier? For the steps I have to do and hassle, I usually skip copy and pasting an adjustment layer and just re-create a new one.
    They have to have made a way to do this, but I can't find the instructions online anywhere!
    thanks!
    Liz

    Forgot to add that it would be an adjustment layer with some kind of mask on it already. The mask is uncentered when copy and pasted which throws it off.
    I guess the same question would go towards doing the same for an object. How to copy and paste it over to a new doc, keeping its position within the document? is this possible?

  • Problem with copying and pasting text blocks in Fireworks CS5

    Until recently when I copied and pasted a text block in Fireworks CS5, the block would retain all formatting applied to the copied text block, font, size, color, etc. Now, the pasted block reverts to some default setting. Oddly, if I copy multiple text blocks, the formatting is retained as expected, but not if I copy a single text block. I cannot find a preference that affects this, and I cannot figure out what might have changed. The current behaviour is definitely not desired, and is dramatically affecting my efficiency. Anyone experienced something similar or have any ideas how to correct this? Thanks.

    Sure, thanks for replying so quickly. My workflow is simple. My problem is limited to copying and pasting within Fireworks. I typically select an entire block with the main selection arrow but I sometimes use this one too depending on the context. I usually just use the keyboard CTRL-C then CTRL-V to paste. Previously (and I have been using FW for years, it's always been the same) it would paste an identical text block directly over the top of the copied one, and it looked exactly the same, same font, same color, etc. Now, it pastes a new block in the center of the document and all the formatting has reverted to what I guess is the default, in this case Myriad Pro 12pt. The behavior is the same no matter which arrow I use to select the text block. I tried Edit>Copy and Edit>Paste, the effect was the same. The Duplicate function seems to work as desired, but I had never noticed or tried that command before reading your post. Using the keyboard to copy/paste is such an ingrained habit I'd much prefer to continue using it as I always have instead of trying to retrain myself. (I'm old, retraining is hard!)
    (Selected block)
    (pasted block)
    Most often I copy and paste directly on the canvas, but occasionally will do it within the layers panel. Both now have the same undesired effect. I also tried creating a new document to see if it was a corruption in my current file, but the issue persisted to the new document as well.
    Thanks.

  • Is there a way to change the master text length in FCP? The default length is 10 seconds, which is too long. I can easily adjust the length but I don't want to do it each time, and I don't want to adjust one and then have to copy and paste this length.

    Is there a way to change the master text length in FCP? The default length is 10 seconds, which is too long. I can easily adjust the length but I don't want to do it each time, and I don't want to adjust a text clip and then have to copy and paste this each time. Ideally, there should be something in User Preferences but there is not. Thanks.

    Maybe some one else can pipe up with a solution, but this would literally take 2 seconds to do for a new project.  And you can create a "template project" that includes this "text" clip.  Save this project and then to a get info and check "stationary pad."  When you double click on this file, fcp will open with a copy of this project and you just need to do a save as. 
    I've been working with computer editing systems for longer than i can remember and at a certain point you just have to adapt your workflow to the limitations of the software.  

  • CS4 problems copying and pasting masked items

    The problem: Copying and pasting a placed image combined with other Illustrator art with multiple gausian blurs that have been masked/grouped. Placed image type does not matter. PDF, JPG, TIFF, etc placed in Illustrator CS4 (or 3). Some images are complex and others are not.
    What happens: After copying and pasting, the masked (grouped) image breaks apart into separate components that are no longer masked/grouped. Happens with different files with different images on different computers. WIth or without text in document. Sometimes image pastes correctly but most times it does not.
    Hardware/OS: 3 separate iMacs (20" and two 23") all with intel chips but different processing speeds. All running latest and most updated version of Leopard. All with 4 MB Ram and more than a 100 GB of free hard drive space.
    Software: Illustrator CS4 (latest update) and CS3 on one of the 23" iMacs.
    Solutions tried so far: Ran Onyx, repaired permissions, scripts, cleaned caches, zapped PRAM and on one iMac, ran Disk Warrior. Tried in Safe boot mode and tired with a new user account. Created new files with new images and tried old files. Tried opening files from the server and from the desktop. Threw out illustrator prefs and emptied trash.
    Thought it may have to do with font conflicts but some files don't have fonts. Turned off font management programs (Suitcase on one iMac, Font Explorer Pro on others, all updated to latest version) and restarted so only system fonts loaded. No luck. Turned on fonts used in various documents, still no luck.
    Thought it may have to do with memory issues after copying masked items. Sometimes the copied image would paste correctly and then the next time I pasted it, it would not. Before pasting a second time I would copy a small item (to clear the memory) and then paste it and then recopy the masked item and paste that. Still no luck.
    Checked activity monitor but nothing looks to be a memory hog or out of place. Happens on all three iMacs and while the OS and Illustrator are common to all three, Fonts and font management tools are not. No weird plug-ins or third party extensions installed. Plus it happened in safe boot mode so all extraneous fonts and such should have been deactivated.
    Curiously, if I drag copy the masked item using the option key, the masked item copies fine. I know this can be used as a work-around but I would like to resolve this as sometimes the designers need/want to use command-c/command-v.
    Not sure what else to try. Any thoughts would be greatly appreciated. Thanks you.

    This might work, this might not. I have copy paste problems
    on a regular basis and all that works for me is closing Captivate
    down and then re open and continue. At worst, a reboot tends to
    solve this glitch in my experience.
    Good Luck

Maybe you are looking for

  • For-each loops

    while working in jbuilder2005 i want to use for-each loops i see following error; " for-each loops are not supported in -source 1.2 (try -source 1.5 to enable for-each loops) " i configured the jdk libraries source to jdk1.5 even then i found problem

  • Work scheduling view-material master

    Hi, wht is meant by lot size depenedent parameters and lot size independent parametrs? how to use that data in manufacturing industry? pls advise.

  • Black ink not working after my computer did an update (2 new cartridges put in)

    Black ink stopped working suddenly.  Tried 2 new cartridges and they did not work.  Since the day before their was an automatic 'updates' on my computer I thought it was that, but making copies doesn't work either.  I already cleaned the print heads

  • Contact Notes (use for To Dos) not synching

    I am still desperately trying to find a work around to the lack of To Do synching. I have created Group "To Do" in address book, in which I have a few "contacts" that are actually used as To Do lists. For each contact, I have the name as a company na

  • Doc in new window???????????????

    Cant find any documentation on how to terminate the CS5 default behavior of a document being opened up in the same panel as other open documents. This is ridiculous that such basic information would not be available using simple search terms like "do