the a linked smart object bounding box is larger than the file

I met an annoying problem, in which the framework encompassing the linked file is bigger than its content while in scaling

Someone knows how to fix this?

Screenshot Example < < -.

It's a work plan, "Plan Working Group...". ", I studied this a little further, it seems that the plans of work and paintings are not 'limit' content in the same way (by limiting the work area). even if you have a work plan, it will include the default spacing between work under the file plans.

Now, it's a bug or a feature, probably a bug, because the idea was that put a file will place all work plans in it (including spacing), but when you have a work plan you don't need spacing.  My hypothesis is that some developers attached Adobe spacing of the artboard in the wrong point of the chain, causing spacing to be always present, even for a work plan.

Tags: Photoshop

Similar Questions

  • Linked smart objects nested within the smart object, not automatically update

    I notice that if I have a smart object bound or smart, group with other layers in a new smart object feature updates of content updated the stops working and has to be done manually.

    This would be the creation of a mobile application by saying where I need the same key throughout all my 10 files.

    Say I have a button throughout several documents and would like to be able to easily change the color in all documents. I'd create an object bound and intelligent color sample. Then in my paper, I put this object linked above my shape of button and create a clipping mask. Then create a dynamic object out of these 2 layers.  I place this same button in all my documents. In my mind, I would always open the object bound and smart (color chart), change the color and it should be updated for the buttons in all of my open documents.

    This is not updated in the document all. Need to go in the dynamic button object and update updated content.

    Using Photoshop | Working with dynamic objects

    The link above

    Note:

    While the detection of changes to the linked smart objects or update a linked Smart object, Photoshop examines the immediate linked file. Links embedded within dynamic objects are not updated.

  • How update you the location of linked smart objects?

    The new feature of the linked smart object has a discrete function but it fundamentally changes our workflow for the better!

    Quick question, is possible to update the paths to the linked smart objects or Photoshop it will work to? I can't see a links under window or file panel so do not know how do you sorry.

    I am about to change these files at home and want to make sure that Photoshop can find the links - but also find everything when I copy everything back on the server and work.

    See you soon

    Ben

    If a link is moved from its location, when you open the file that contains the link, you will get a dialog box asking to located the missing file.

  • Where are my linked smart objects linked too?

    So, I spent an hour looking online for what I thought was going to be a simple answer. Did not find.

    I work with a large team and we use linked smart objects. Us link to change some of the smart objects related to others. Normally I the old version of archives and solve the problem when I noticed the broken link, but I can't take the risk of a person including bad assets before that he go to dev.  Y at - it a simple dialog box or something that tells me that it is other files my linked smart objects linked too?

    I think that a Scripting solution is possible, but no default option for that comes to mind.

    Edit: An approach to script can use the filePaths listed in the XMP metadata but that gets refreshed only to save, it seems, so if the files have been placed as connected or associated SO deleted since the last save those not translate correctly.

    Including registration in the Script might however, make much of time and with 'Save in the background' it could still be problematic.

  • Photoshop: Edit a linked smart object in Illustrator

    I've created a few vector shapes and text in Illustrator and paste in Photoshop as a vector object smart. I re - uses these elements, so I the converted to a linked smart object. Awesome. But now, when I double-click items in Photoshop to edit in Illustrator, the linked file just opens preview (I use Mac OS). It is possible to manually edit the linked file by double-clicking it in the Finder and selecting open in Illustrator. It is possible but not very effective. Converted into a dynamic linked object removes the ability to quickly open/edit my Photoshop vectors?

    Yes, it removes only the ability. To be able to do what you want, you must integrate the smart AI object in your file. It is inefficient.

  • How to add metadata to a linked smart object?

    Hello

    I would like to add metadata custom linked smart objects. This metadata should not be visible in the Photoshop application but should only be accessed from javascript in extensions CEP. Also it must be registered with the PSD file so that when it is reopened I've always read. How can I do? Thank you!

    This is my adaptation of the Adobe settings Generator plugin methods. Either it is intended for generator plugins store settings in the PSD, but should work even if there is no plugin because it is just a json string and IDs payload

    Generator Adobe of base (see get/setGeneratorSettings.jsx) at Github: generator-core/lib/jsx to the master of adobe-photoshop/generator-core · GitHub

    setPluginSettings: function(layer, settings) {
      if (layer && settings) {
      var settings_desc = new ActionDescriptor()
      settings_desc.putString(stringIDToTypeID("json"), Globals.encodeJson(settings))
    
      var ref = new ActionReference()
      ref.putProperty(charIDToTypeID("Prpr"), stringIDToTypeID("generatorSettings"))
      if (layer.typename == "Document") {
      ref.putIdentifier(charIDToTypeID("Dcmn"), layer.id)
      } else {
      ref.putIdentifier(charIDToTypeID("Lyr "), layer.id)
      }    
    
      var action_desc = new ActionDescriptor()
      action_desc.putReference(charIDToTypeID("null"), ref)
      action_desc.putObject(charIDToTypeID("T   "), charIDToTypeID("null"), settings_desc)
      action_desc.putString(stringIDToTypeID("property"), "YOUR_PLUGIN_ID")
      executeAction(charIDToTypeID("setd"), action_desc, DialogModes.NO)
      }
    },
    getPluginSettings: function(layer) {
      if (layer) {
      var ref = new ActionReference()
      ref.putProperty(charIDToTypeID("Prpr"), stringIDToTypeID("generatorSettings"))
      if (layer.typename == "Document") {
      ref.putIdentifier(charIDToTypeID("Dcmn"), layer.id)
      } else {
      ref.putIdentifier(charIDToTypeID("Lyr "), layer.id)
      }    
    
      var action_desc = new ActionDescriptor()
      action_desc.putReference(charIDToTypeID("null"), ref)
      action_desc.putString(stringIDToTypeID("property"), "YOUR_PLUGIN_ID")
    
      var desc = executeAction(charIDToTypeID("getd"), action_desc, DialogModes.NO)
      // var result = Photoshop._parseActionDescriptor(desc)
      if (desc) {
      var generator_id = stringIDToTypeID("generatorSettings")
      if (desc.hasKey(generator_id)) {
      var generator_data = desc.getObjectValue(generator_id)
      var json_id = stringIDToTypeID("json")
      if (generator_data.hasKey(json_id)) {
      var json_data = generator_data.getString(json_id)
      if (json_data) {
      return Globals.decodeJson(json_data)
      }
      }
    
      }
      }
      }
    }
    
  • How to place a linked smart object?

    Hello

    It is possible to place linked smart object in photoshop document uses Photoshop plugin SDK or CEP extension sdk? Thank you!

    Yes. Here is the JavaScript code to do this via the extension of the CEP.

    // =======================================================

    var idPlc = charIDToTypeID ("Plc");

    var desc11 = new ActionDescriptor();

    var idIdnt = charIDToTypeID ("Idnt");

    desc11.putInteger (idIdnt, 2);

    var idnull = charIDToTypeID ("null");

    desc11.putPath (idnull, new file ("C:\\Users\\notme\\Desktop\\Untitled-1.psd"));

    var idLnkd = charIDToTypeID ("Lnkd");

    desc11.putBoolean (idLnkd, true);

    var idFTcs = charIDToTypeID ("CIE");

    var idQCSt = charIDToTypeID ("QCSt");

    var idQcsa = charIDToTypeID ("Qcsa");

    desc11.putEnumerated (idFTcs, idQCSt, idQcsa);

    var idOfst = charIDToTypeID ("Ofst");

    var desc12 = new ActionDescriptor();

    var idHrzn = charIDToTypeID ("Hrzn");

    var idRlt = charIDToTypeID ("#Rlt");

    desc12.putUnitDouble (idHrzn, idRlt, 0.000000);

    var idVrtc = charIDToTypeID ("Vrtc");

    var idRlt = charIDToTypeID ("#Rlt");

    desc12.putUnitDouble (idVrtc, idRlt, 0.000000);

    var idOfst = charIDToTypeID ("Ofst");

    desc11.putObject (idOfst, idOfst, desc12);

    executeAction (idPlc, desc11, DialogModes.NO);

  • Display linked smart object problem?

    I was really kissing linked smart objects recently. However I found on a few occasions, there are cases where a linked smart object seems to strangely, and I see pixels rounded curiously - almost as if she started scaling the picture a bit.

    Screen Shot 2015-12-16 at 08.03.04.png

    The smart object linked above is correct, but the one below (linked the same file) is rendered differently. Two smart objects have been placed with identical dimensions, any scaling that occur here. Whenever I for now, place this file in the PSD I have this display problem. Around him, my only way is by duplicating that rendered correctly.

    Has anyone else encountered this problem?

    I worked on it.

    Essentially, when you insert the linked smart object even if I was seized to display 100% width & height (by default, that it has been globally as the source PSD has a smaller width/height), I had to then move the smart object after setting width & height 100% in order to then render correctly.

  • Open as smart object bound

    Hello

    IAM looking for a solution to open the files in a folder

    and then copy into a document.

    His good work, but I need the files linked smart object.

    Someone knows a solution?

    Here is my Code so far:

    See 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
    
    
      }
      };
    

    Scriptlistener of use:

    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 );
    
  • You can extract higher resolutions of Smart Objects or linked smart objects?

    When I design at resolution of x 1, can I retrieve assets of smart objects and smart objects related to 2 x or more? If so, how they evolve upward?

    Yes, with reservations.

    PSD and Illustrator smart objects are also a new made and scaling smoothly to the requested resolution.

    Other dynamic objects (including those with filters) are only intensified since the resolution they are running in the Photoshop file. If you want to perform a new rendering, you can paste 100% resolution in a linked smart object and get the scaling smoothly.

  • No linked smart objects are loaded in the RAM of the Scratch disk or storage?

    Building a computer and I need to know where to invest.

    If a graphic artist made use of the dynamic in a file objects, and then when they "open" one of these smart objects, will be that load into memory (assuming that it has enough memory allocated), the disk scratch or - given that the dynamic object is 'stored' in the original file - the file work constantly read and writing directly from the drive the main file is saved to?

    I'm certainly not an expert but I understand that Photoshop has always the image in RAM to be able to work on it. (SO or something else)  If this RAM is not enough then Photoshop uses the drive working to "expand" the RAM. But even if it is enough will always be used the drive working. That's why most people use SSDS for zero and regular hard drives for storage.

    Remember that Photoshop is not the only one who is eating your memory. The operating system and a myriad of other programs and background processes all want their share...

  • How to find info for Missing Linked Smart Object

    I received a file from another vendor, and they have a layer of dynamic object bound within the photoshop file that is missing.

    Is it possible to determine the layer file name/path/owner? In Illustrator and InDesign, it's possible, but I see no way to determine any info on the link. I need to communicate to the seller, what lack us.

    Hello

    You do not get the missing link dialog box?

    Another place to look is in the properties panel with the targeted layer.

    Steve

  • location of linked smart objects

    I have several PSD with a bunch of smart objects linked files that are organized in different folders. I am trying to replace a bunch of them (they all share a folder) in all my PSD and I that this change of name the chip original object file location to something else and by creating a folder with the name of old and new smart objects would automatically do this. It turns out that my PSD is still tied to the old smart objects despite the change in name of folder!

    I am very confused about what rename files has always broken links to files in other software (for example: indesign)

    How is photoshop followed by my folder name change? I even tried to move the location of the entire record without result, he still finds the photoshop.

    Is there a simple way to do what I want?

    It is finally worked after the addition of ' ~ ' at three levels of different folders

  • Linked smart objects scripts

    Does anyone know a way using available for Photoshop, preferred AppleScript script languages, to convert a smart object embedded in a dynamic linked object?

    Use only registered by ScriptingListener.plugin such action handler code.

    But you can use JavaScript if you're serious about automating tasks with scripting Photoshop.

  • Copy a project with many levels of linked smart objects

    Hello colleagues!

    Expected Of OBJECTS INTELLIGENT LIES have become available as soon as I started again to use them in all of my complicated projects. And really improved workflows. Thanks adobe for this feature!

    But here's the question: How can I copy my PSD master which has several level of connected SO both? This PSD master linked PSD they have also linked PSD and so on...

    Looking at the structure of the file I don't know what are the files to take (there are lots of files which are not connected or that they have never been) and I need to copy only those that are important the integrity of my project from my PSD master.

    Photoshop does not provide us with a few cards of link, which can be traced back and show us all the necessary files...

    Any idea?

    Perhaps only the script will help...

    Use the package command to group all of the linked files.

Maybe you are looking for

  • What safe Air Shou

    So, I would like to start recording my screen on my iPhone and I've heard of what is called Air Shou. First of all, I would like to know if it is safe. It would damage my phone somehow? Secondly, is it legal. Why is it not on the app store? Finally,

  • Firefox has become very slow for the last days.

    I didn't something for my system. I always clear the cache. I ran antivirus/malware and nothing was found. I've tried Chrome and it works very well.

  • Integrated webcam has stopped working on my laptop Satellite

    My laptop integrated webcam has stopped working, I tried to check the properties of the device and uninstall and reinstall the driver, but all I get in the device status is This device cannot start. (Code 10) The I/O device is configured incorrectly

  • Bookmarklets don't work but open dozens of tabs

    With some software bookmarklets, as in Yojumbo, use it causes dozens of tabs open in Firefox for Mac. This has happened Each time Firefox opened == I installed Yojimbo, but it has happened with other software using bookmarklets

  • "cooling fan does not work correctly.

    Product name: HP Pavilion dv6 Notebook PC Product number: LZ801PA #ACJ Operating system: Windows 7 64-bit Erroe message: "The system has detected a cooling fan does not work correctly. . Continued operation is not recommended and can result in unpred