How do I disable linked smart-object auto-update/refresh?

Working in the CC3D features, I am constantly making changes to my bump map. Every time I step-backwards, or make a significant change to the bump texture (smart object?), CC auto-saves the layer. This specific file is a very very large document (3 gigs in the bump texture layer alone), and the 3D layer has lots of lights and is very complex. This auto-refresh/update really bogs down the time that it would take me to make my changes. I have a very fast machine (I know it's fast, I dont need to list my specs), and I have all shadows disabled.
How do I disable linked smart-object auto-update/refresh?

If you do not like a feature like smart objects there is nothing forcing you to use it. Use some other features to do what you want. Please don't ask Adobe to introduce bug into smart object support.
You could work on your bump maps textures in external files. When your done some time in the future you could edit your project with the smart object layer and use replace smart object. Only then will all smart filters be applied to the smart layer with the replaced smart object.
Or if by CC Auto save Layer you referring to CC Generate feature you can disable that feature.
I have no idea what your referring to when you write "CC auto-saves the layer" being a feature. I know CC Generate will write layers out as web files but that more a Web feature then a 3d feature.  Where do you see your layer being saved?

Similar Messages

  • How do you update the location of linked smart objects?

    The new linked smart object feature was a low-key feature but it's fundamentally changing our workflow for the better!
    Quick question, is there a way to update the paths to linked smart objects or will Photoshop work it out? I can't see a links panel under WIndow or file so am not sure how you do it sorry.
    I'm about to edit these files at home and want to make sure Photoshop can find the links - as well as find everything when I copy it all back to the server and work.
    Cheers
    ben

    Yes, the linked smart object can be either raster or vector, but they will be placed as raster images, just as the embedded SO are.  SO can be embedded or linked to an outside file.  Edits to the original will not update in the original until you select "Update modified content from the menu" when you reopen the file that has the place SO in it.  otherwise it will update when you save the linked file.  Yes, there still is an advantage to having an embedded SO.  You may not want to maintain the links - send a file off and forget to include the linked files.  You may want to alter the SO, but not the original file.
    Ah, thanks. But does this mean that raster and vector smart objects can EITHER be located within the Photoshop file (as they have been since their advent) OR linked to an external file?
    And if so,
    1. Can this linked file be either raster or vector?
    2. Do edits to it automatically update the Photoshop file?
    3. Is ther any longer any advantage to having the smart object data stored within the Photoshop file when it can be linked?

  • Convert an embedded smart object to a linked smart object

    Hey guys,
    love the new "linked smart object" functionality. However, I can not figure out how I can convert (or export) an existing embedded smart object to a linked smart object.
    I have a huge photoshop file with several embedded smart objects that I would like to break down into a lightweigt photoshop with with links to the varios smart object photoshop files.
    Is there any way to do this?
    Thanks,
    Philipp

    Thanks a lot guys.
    I am just now putting a document together with linked smart objects and I'm noticing that the file size of the PSD file still increases quite a bit. I thought the hole point of this was to have lightweigh psd files?
    I currently have 11 1920x1080 linked smart object files in the PSD and the file size is already at 140MB. Any ideas why this is happening?

  • Scripting layer comp property of linked smart object

    How can I through script set the layer comp property of a linked smart object?
    More generally, how can I access a smart object and manipulate it as a document?  I know that I get smart object layers by looking at the kind property, but I don't know what to do with them once I get them.  I'd like to be able to cast the layer to a document object I guess.  Thoughts, anyone?

    Photoshop Feature Requests should be posted over at
    Photoshop Family Customer Community
    But before posting one look around whether one exists already on this issue and add your +1 if it does.

  • How can I duplicate a smart object and then edit it, without affecting the original?

    I have a vector element from illustrator that I am placing in a tshirt mockup in photoshop. I have the layout essentially how I would like, but I am trying different color variations. I would think to just duplicate the first placement and then edit the color of the resulting copy, but this affects both the copy and the original. I looked into it a bit further, and found that I should try the "replace contents" option under smart objects, and that this would change the copy. So I go back to illustrator, made a copy of the original vector, and then made the color change I had in mind, and then saved it as a separate document that I could then use in replacing the contents of the copied. This however, is still affecting both smart objects!
    I have tried this as both linked smart objects and embedded smart objects without success.
    Ultimately, I simply want to maintain the position of the original layer with the duplicated and edited layers. If you know of a better way, please share!

    I'm on CC on a Mac.
    What 21 is talking about is making some sense.
    I am able to create new smart object via copy, then create a variation on the original file linked in the parent smart object. Then I save that from illustrator with a different file name. Then I go back to photoshop and replace contents of the new smart object, linking it to the newer illustrator file.
    This gets around the problem, but it takes a few more steps than the same thing did it in earlier versions of photoshop.

  • Can you extract higher resolutions from Smart Objects or Linked Smart Objects?

    When I am designing at 1x resolution, can I extract assets from smart objects or linked smart objects for 2x or more? If so, how do they scale up?

    Yes with caveats.
    PSD and Illustrator smart objects are also re-rendered and smoothly scaled to the requested resolution.
    Other smart objects (including those with filters) are only scaled up from the resolution they are at within the Photoshop file. If you want them to re-render, you can paste them at 100% resolution into a linked smart object and get the smooth scaling.

  • Open as linked smart object

    Hello,
    iam looking for a solution to open files in a folder
    and copy then into a document.
    Its working good, but i need the files to be linked smart object.
    Anyone knows a solution ?
    Here my Code so far:
    See in line 33. Convert to smart object: ?
    var file = new File('C:/User_MY PATH.PSD'),
    docRef = open(file);
    // Use the path to the application and append the samples folder
    var samplesFolder = Folder('C:/USERS_MY FOLDER');
    //Get all the files in the folder
    var fileList = samplesFolder.getFiles()
      // open each file
      for (var i = 0; i < fileList.length; i++)
      // The fileList is folders and files so open only files
      if (fileList[i]instanceof File)
      open(fileList[i])
      // use the document name for the layer name in the merged document
      var activeDocName = app.activeDocument.name;
      var targetDocName = activeDocName.substring(0, activeDocName.lastIndexOf("."));
      // Copy the Document
      app.activeDocument.selection.selectAll()
      //convertToSmartObject(); THIS ISNT WORKING - CONVERT IT ?
      app.activeDocument.selection.copy()
      // don’t save anything we did
      app.activeDocument.close(SaveOptions.DONOTSAVECHANGES)
      //Select specific layer to paste the copy, this is to make sure the layers are in a specific position
      var doc = app.activeDocument;
      doc.activeLayer = doc.artLayers.getByName("bgr");
      //Paste Document
      app.activeDocument.paste()
      app.activeDocument.activeLayer.name = targetDocName

    Use scriptlistener:
    var idPlc = charIDToTypeID( "Plc " );
        var desc2 = new ActionDescriptor();
        var idnull = charIDToTypeID( "null" );
        desc2.putPath( idnull, new File( "C:\\Photos\\myPhoto.psd" ) );
        var idLnkd = charIDToTypeID( "Lnkd" );
        desc2.putBoolean( idLnkd, true );
        var idFTcs = charIDToTypeID( "FTcs" );
        var idQCSt = charIDToTypeID( "QCSt" );
        var idQcsa = charIDToTypeID( "Qcsa" );
        desc2.putEnumerated( idFTcs, idQCSt, idQcsa );
        var idOfst = charIDToTypeID( "Ofst" );
            var desc3 = new ActionDescriptor();
            var idHrzn = charIDToTypeID( "Hrzn" );
            var idPxl = charIDToTypeID( "#Pxl" );
            desc3.putUnitDouble( idHrzn, idPxl, 0.000000 );
            var idVrtc = charIDToTypeID( "Vrtc" );
            var idPxl = charIDToTypeID( "#Pxl" );
            desc3.putUnitDouble( idVrtc, idPxl, 0.000000 );
        var idOfst = charIDToTypeID( "Ofst" );
        desc2.putObject( idOfst, idOfst, desc3 );
    executeAction( idPlc, desc2, DialogModes.NO );

  • Linked Smart Objects

    When you send a PS file which has a linked Smart Object to a print vendor, will you need to send the linked Smart Object file as well?

    That's what I was afraid of. As a print vendor AND a designer I'm concerned that word has not gotten out that linked objects will need to accompany the file and we will end up dead in the water when we need to open up a photoshop file with a linked smart object. This is a relatively new problem for Photoshop, although InDesign and even many Illustrator users know that links need to be sent. In fact, we're seeing the opposite trend in InDesign, where artists are embedding artwork in their InDesign file rather than linking, which has both pluses and minuses.
    Thanks!

  • Layer Comps should capture changes to a Linked Smart Object's Layer Comp

    Normally, I can move things around or change visibility, and use Layer Comps in my master doc to capture these changes.
    However, changing which Layer Comp displays from a Linked Smart Object cannot be captured by Layer Comps in my master doc.
    Slightly more information: Sorry it's a little convoluted. I have several Linked Smart Objects inside a master doc, and these Smart Objects contain different Layer Comps. It's awesome that I can easily change which Layer Comp each Smart Object displays. But when I make a change, it cascades across the Layer Comps in my master doc. So my master doc's Layer Comps cannot effectively capture a state.
    It would be awesome if Layer Comps were able to capture state changes for the display of Linked Smart Object's Layer Comps. #featurerequest

    Photoshop Feature Requests should be posted over at
    Photoshop Family Customer Community
    But before posting one look around whether one exists already on this issue and add your +1 if it does.

  • Can you replace embedded smart object with linked smart object?

    Hi,
    I'd like to update some document to reflet the new workflow that linked smart object provide. I have made some transformation on those embedded smart object and would like to not have to redo all those so is there anyway way to replace those SO with the linked version of the same SO?
    TIA
    Jeff

    Hi,
    I'd like to update some document to reflet the new workflow that linked smart object provide. I have made some transformation on those embedded smart object and would like to not have to redo all those so is there anyway way to replace those SO with the linked version of the same SO?
    TIA
    Jeff

  • Linked Smart Object:  Allowed File Type and Editor

    Please forgive my lack of knowledge.  I'm evaluating PS CC 2014, own PS 5.1 and am a hair shy of being a novice.  Presently I'm doing Photomerge Focus Stacking.  What I'm hoping is that DNG files can be Linked Smart Objects and that I can modify the merged photo by editing the DNG files in Adobe Camera Raw.  Is this possible?  The Adobe Help article has a rather cryptic "You can’t perform operations that alter pixel data", that leads me to believe no but, I don't understand that fully.
    Thanks.

    Currently you can not use any of the merge options: pano, hdr, or focus stacking with a smart object. So you would not be able to do that with dng files and retain the ability to edit them in Camera Raw. It would be nice though!

  • Linked Smart Object breaks a PSD after sync with Creative Cloud

    After using a linked Smart Object inside a PSD and sync with Creative Cloud, the online version of file does not preview and does not work with any online feature, like Extract, Layers, or Anything else.
    Any suggestion? Thanks in advance.

    Thanks for the example Deryck,
    The preview seemed broken on the comments tab but the image was appearing for me under the Extract one. When I downloaded the original it looked like the linking was preserved. The online version didn't seem to denote in any way that the Cecinas layer contained a Linked Smart Object, which might be helpful, but it did have the preview. Here are some screenshots of what I was seeing. Thanks for posting about it. I'll pass it on to our engineering department.

  • Linked Smart Objects from Photoshop CC

    Hi
    I have a Photoshop file which makes use of the new Linked Smart Objects (introduced in the last major CC update). If I create a Reflow Project out of this .PSD the Linked Smart Objects are not being converted.
    Am I doing something wrong or is it simply not implemented yet?
    Cheers

    If that's the case then keep the main grid container at 100% and then just add two boxes inside it. The outer one also stretch to 100% and have the inner one stop on column on either side and set the max-width on that. You could also just have the inner one strech to 100% with a max-width and have the underneath one show on the side only when it get really wide. I know it feels a little akward to use the grid like that, but we only have one container that the grid is on right now so this is what we can do. Here's an example using yellow for the outer container and red for the inner.
    Hope that helps and thanks again for using Reflow!
    Chris

  • Linked Smart Objects - File Size Question

    Hey guys,
    first time using linked smart objects and I was pretty excited about it at first. I have a large photoshop file with 1920x1080 image assets. The file size is about 1GB and everytime I make a minor change the entire file has to be re-uploaded to my Dropbox.
    So I figured that I could make all these image assets linked smart objects so that I can keep the master file down in file size since most of the actual assets don't change. However, even the PSD that contains nothing by linked smart layer objects is already 400MB large. And that's in addition to the external PSD's it is now linking to.
    Even if I duplicate a linked smart layer object in this PSD file it increased the file size by an additional 10MB per duplicate. Is this supposed to happen? Why does it take so much space to just link to external objects? I was super excited about using linked smart layer objects but this doesn't look like it would be helping much to decrease file size.
    Any thoughts would be much appreciated!
    Thanks,
    Philipp

    Hey Chris,
    thanks again! I guess I just had different expectations. In my mind I was going to see a parent file around 10MB or something with all of the content being dynamically loaded from the linked smart objects.
    Maybe that could be a feature requests for future versions.

  • Linking smart objects with it's layer mask

    ther must be a way to link smart objects with it's layer mask without having to rasterize....isn't there?

    You're pre-CS4 right?
    1) Upgrade to CS4
    2) Put SO in a group, link mask to group
    3) ...
    4) Profit!

Maybe you are looking for

  • Dynamic image does not work in the template builder plug-in (Apex-BI Intgr)

    Hi all, I posted this problem in the BI Publisher topic but nobody responded maybe this is because mods thought this is an Apex-BI integration issue. If I'm in the wrong place, please do warn me. The documentation says: Direct Insertion Insert the jp

  • How to get multiple elements into one element as multiple occurences

    I can't figure out how to do this. I have an input message that has multiple elements and I need to take those elements and copy them into one element with each new element going in as a new occurence or instance. For example I have this input under

  • AS3 code for Mouse Event

    Hi, I had uploaded jpeg file onto the stage using File->Import. Now, how to access the mouse-events using AS3.0? i.e., when we click with mouse on the stage it should display the x and y co-ordinates of the point being clicked. These x and y coordina

  • Time Shift During Import from Canon  Vixia HF S21

    I imported video from my Canon Vixia HF S21. All time stamps indicated in iMovie '09 are 7 hours early. That is, video shot at 10:57 AM (in the real world) is shown by iMovie '09 (following import) as having been shot at 3:57 AM. Here's the "weird" p

  • OSX 10.4.6, 10.4.8 Not Connecting LinkSys WRT54G

    Problem: MacBooks running 10.4.6 and 10.4.8 don't connect to the internet, wired or wireless. Problem appears to be in DHCP. MacBooks only show the 169.124.167.29. Linksys shows the Mac has been issued a 192... address. If I manually enter the 192...