[JS][CS5] - Save XMP thumbnails by artboard?

Is it possible to save illustrator XMP thumbnail previews by artboard? It seems like Illustrator saves a single thumbnail with all art regardless of the number of artboards.
Does anyone know if there is a property that can be set to save multiple thumbnails to the XMP packet by artboard when saving to a native Illustrator file?

Sorry I've not actually looked that far yet… I know that ID has the preference to do this as I use it. But AI has not, it may be possible to add custom XMP to include this and that has been on my to do list for a while… What is using this XMP?

Similar Messages

  • CS5 Save to Web; multi-artboard crops do not work

    My custom artboards no longer crop graphics properly. Instead of a specific targeted crop area, it just creates a jpg or png of ALL art on displayed layer. What did I turn on or off? Yeah, exporting the graphics works, but I want to control the final image size and preview too. What happened?

    Thx for your response, however it is still not working the way it has previously.
    I have created a 2nd artboard to crop a specific image with bkgd bleed. In the past, I would select 'artboard 2' (the cropped image area) then go to 'SAVE FOR WEB & DEVICES' which would then provide a preview and further options like PNG, JPEG, final image size, etc, before saving. For some reason it is ignoring my designated crops and saving everything visible. Although the "export" option works, it doesn't have the control options as the SAVE FOR WEB & DEVICES.
    I'm pretty sure I inadvertantly turned something on/off since this was an oft used save command.

  • Possible to generate xmp thumbnails for PDF files in Acrobat?

    Hi,
    Apps from the Creative Suite 5.5 allow to embed a tiny preview (as XMP thumbnail) when saving to some .ai .indd or .pdf file. However, I could not find the option in Acrobat X Pro.
    Such XMP thumbnails prove useful when visually browsing through PDF documents in Windows' explorer. I'm surprised Acrobat X lacks such a feature whereas other apps from the Suite do it fine.
    Please not I'm not talking about embedding page previews, this is a completely different topic.

    sample file, you can use any name and append the xml data elements too...
    <?xml version="1.0" encoding="UTF-8"?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi" type ="bursting">
    <xapi:request select="/MODULE1/LIST_G_EMPNO/G_EMPNO">
    <xapi:delivery>
    <xapi:email id ="123" server="[email protected]" port="25"
    from="[email protected]" reply-to="[email protected]">
    <xapi:message id="123" to="[email protected]" cc="" attachment="true"
    content-type="text/html" subject="Purchase Order Number: ${EMPNO}">Please
    see attached Purchase Order File: ${EMPNO}</xapi:message>
    </xapi:email>
    </xapi:delivery>
    <xapi:document output="PO_${EMPNO}" output-type="pdf" delivery="123">
    <xapi:template type="rtf" location="xdo://CUS.TEST_BURST_1.en.US/?getSource=true"
    filter=""></xapi:template>
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    Edited by: Sattti on Nov 2, 2008 8:26 PM

  • How to hide xmp thumbnail images?

    Is there a way to hide all of the xmp thumbnail images that appear next to the photo image thumbnails? It makes it harder to browse. Thanks!!

    What are you talking about? What version? Have you properly set the View menu not to show hidden or invisible files?

  • Writing XMP Thumbnail Metadata to AE Preset

    Hi guys.
    I am working on a After Effects script to basically insert a gif as metadata into a fx preset file. If you open Adobe bridge and browse to the After effects text presets you will see that you can click on a preset and in the preview there is an animated GIF. So I am attempting to do this for custom presets.
    Basically I think I need to read the contents of a GIF file as data, or text, then encode that as base64 and insert it into the metadata of the preset file.
    I have a come across a couple of problems though:
    1) I can't seem to read in the GIF file as data
         The code I am using is:
    file = new File("C:\\test.gif");
    file.open("r");
    test = file.read();
    alert(test);
    And all I get returned is the first part of the data which is "GIF89aØ", It seems that when white space is encountered After Effects stops reading the data.
    2) I have been testing some code to write thumbnail data to a preset file, but I have come across an issue here too.
    if (ExternalObject.AdobeXMPScript == undefined) {
    ExternalObject.AdobeXMPScript = new ExternalObject('lib:AdobeXMPScript');
    xmpFile.closeFile(XMPConst.CLOSE_UPDATE_SAFELY);
    file = new File("C:\\joshPreset.ffx");
    xmpFile = new XMPFile(file.fsName, XMPConst.UNKNOWN, XMPConst.OPEN_FOR_UPDATE);
    var xmp = xmpFile.getXMP();
    xmp.appendArrayItem( "http://ns.adobe.com/xap/1.0/","Thumbnails",null, 0,XMPConst.ARRAY_IS_ALTERNATIVE );
    This code works, it inserts a Thumbnails array into the metadata, which looks like this:
       <xmp:Thumbnails>
        <rdf:Alt>
        </rdf:Alt>
       </xmp:Thumbnails>
    I then need to add other properties within the Thumbnails array like xapGImg:height and xapGImg:image
    So from what I read in the documentation I need to add a Struct field?
    I add these lines to my code:
    XMPMeta.registerNamespace("http://ns.adobe.com/xap/1.0/g/img/", "xapGImg");
    xmp.setStructField("xapGImg","Thumbnails","xapGImg:height", 0,null );
    The first line is to register the name space. xapGImg is what I found in the after effects text preset file.
    The second line is to add a struct field to the array. But I get an error whenever I run it with the second line. It says:
    XMP Exception: Unregistered schema namespace URI
    I have tried all different combinations of the namespace in the second line but just cannot get it to work!
    If anyone can help that would be great!

    Hi AthorNZ,
    I can only give you some answers regarding question 2.
    First of all you should be aware that XMPFiles does not offer smart handling of AE project files. Instead it uses so called "packet scanning" to work with the XMP within the file. This means that reading of XMP data works fairly well but updating it is rather limited. If no XMP is present in the file, it cannot be newly injected. If XMP is present, it can only be updated within the given space (i.e. padding) that already exists within the file. Otherwise an update is rejected.
    Regarding the thumbnails: Your first snippet of code is correct. But for one you do not need to register the thumbnail related namespace as it is a pre-registered one. So you can use the constants from XMP_Const.h to work with those namespaces.
    Secondly to set a struct field within the array you need to use the namespace URIs and not prefixes. Again you can use constants already defined:
    xmp.setStructField( kXMP_NS_XMP, "Thumbnails", kXMP_NS_XMP_Image, "height", <your value> );
    You got the exception because XMPCore tried to interpret your prefixes as URIs which were not registered, of course.
    Kind regards
    Jörg
    Adobe XMP

  • Writing XMP Thumbnail Metadata to AE Preset (Scripting)

    Hi guys.
    I am working on a script to basically insert a gif as metadata into a fx preset file. If you open Adobe bridge and browse to the After effects text presets you will see that you can click on a preset and in the preview there is an animated GIF. So I am attempting to do this for custom presets.
    Basically I think I need to read the contents of a GIF file as data, or text, then encode that as base64 and insert it into the metadata of the preset file.
    I have a come across a couple of problems though:
    1) I can't seem to read in the GIF file as data
         The code I am using is:
    file = new File("C:\\test.gif");
    file.open("r");
    test = file.read();
    alert(test);
    And all I get returned is the first part of the data which is "GIF89aØ", It seems that when white space is encountered After Effects stops reading the data.
    2) I have been testing some code to write thumbnail data to a preset file, but I have come across an issue here too.
    if (ExternalObject.AdobeXMPScript == undefined) {
    ExternalObject.AdobeXMPScript = new ExternalObject('lib:AdobeXMPScript');
    xmpFile.closeFile(XMPConst.CLOSE_UPDATE_SAFELY);
    file = new File("C:\\joshPreset.ffx");
    xmpFile = new XMPFile(file.fsName, XMPConst.UNKNOWN, XMPConst.OPEN_FOR_UPDATE);
    var xmp = xmpFile.getXMP();
    xmp.appendArrayItem( "http://ns.adobe.com/xap/1.0/","Thumbnails",null, 0,XMPConst.ARRAY_IS_ALTERNATIVE );
    This code works, it inserts a Thumbnails array into the metadata, which looks like this:
       <xmp:Thumbnails>
        <rdf:Alt>
        </rdf:Alt>
       </xmp:Thumbnails>
    I then need to add other properties within the Thumbnails array like xapGImg:height and xapGImg:image
    So from what I read in the documentation I need to add a Struct field?
    I add these lines to my code:
    XMPMeta.registerNamespace("http://ns.adobe.com/xap/1.0/g/img/", "xapGImg");
    xmp.setStructField("xapGImg","Thumbnails","xapGImg:height", 0,null );
    The first line is to register the name space. xapGImg is what I found in the after effects text preset file.
    The second line is to add a struct field to the array. But I get an error whenever I run it with the second line. It says:
    XMP Exception: Unregistered schema namespace URI
    I have tried all different combinations of the namespace in the second line but just cannot get it to work!
    If anyone can help that would be great!

    This question is cross-posted on the XMP SDK forum:
    http://forums.adobe.com/thread/572055

  • PhotoShop CS5 - Save As Won't Window

    I am on Windows 7 Home Premium 64bit SP1 and running PS CS5 12.0.4. When saving a file using 'Save As' I can no longer "window" the screen image, it always opens "full-screen" and can't be resized. I can see the hash-marks in the lower right-hand corner, but they disappear after trying to resize the window.
    Double-click the picture to see full size:
    Both Illustrator CS5 and InDesign CS5 'Save As' dialogue windows can be resized, it's just happening with PS CS5. I tried opening PS with CTRL+ALT+Shift to reset the preferences file, but it didn't fix the problem.

    When saving a file using 'Save As' I can no longer "window" the screen image, it always opens "full-screen" and can't be resized.
    Does that mean that it did work, but now does not?
    If it used to work, then something has changed. The trick is to find out what it was.
    First thing that I check, whenever I have a GUI display issue, is whether there is an update for my video adapter's driver. PS interfaces more closely with the video driver, than some other programs. Simple things, such as OS updates, can render a video driver obsolete, and can cause all sorts of issues. What make/model card do you have? What is the number/date of your installed video driver?
    Hope that it is as simple as going to the ATI/AMD, or nVidia Web site, and downloading, then installing a new driver.
    Good luck,
    Hunt

  • I would like the ability to save a thumbnail preview for use by the OS on image export.

    Hello,
    I have been using Lightroom for about three years and one of the many features I would like to see is the ability to save a thumbnail for the image while exporting an  image.  This is an option available in other leading software, and also happens when you save an image in Photoshop.  It isn't a huge issue when using a Mac because you have the option for the finder to force an image preview.  It is however an issue when your client uses Windows since the OS doesn't allow the user to force a thumbnail preview.
    The client is king, especially with the economy and market the way that it is.  If the client wants thumbnails on their images in their OS, the photographer needs to be able to deliver.  I don't expect myself or any other photographer to have to open files in Photoshop and save them to force a thumbnail for the image.
    This software is in no way as expensive as Photoshop and it does have amazing features, but it is also not cheap and is intended for working professionals.

    Your original links were ok, two JPGs and one PNG.  BTW,the resizing wasn't necessary because the warning about it is only for viewing the photo in the message.  You can always click on the photo and see the full-sized version, as long as it doesn't exceed the filesize limit, of course.
    On my Windows 7, both JPGs show a Windows Picture Viewer program icon when set to the default settings, and both JPGs show a thumbnail icon when the icon-size is increased.  This is a function of Windows, not the contents of the files, as far as I can tell.
    No thumbnail Icons using the default view:
    Thumbnail icons when switching to the next larger sized icons:
    On the Mac the two images act differently, but you're asking for Mac-specific things to occur, and Adobe may choose to not do it based on it not being different on Windows.
    For what Windows scenario does the PS-saved JPG show a thumbnail-icon instead of a program-icon when the LR-saved one shows only the program icon.  I'm not asking about the Mac where your screenshot shows the difference, I'm asking about Windows.  Is it only when you e-mail pictures or is it on the customer's hard-drive, somehow, and what is the customer using the view the images?

  • Double menu's in photoshop CS5 save as menu

    Hi,
    my photoshop CS5 save dialog menu shows double ups of some of the file formats.
    2 BMP's, 2 compuserve gif's, 2 PNG's.
    I have torn my hair out going through the Photoshop CS5 folder, but cant find the plug-ins any where.
    can anyone give me a clue as to where they are hiding so I can get rid of them.
    regards, Sandy

    Hi, yes sounds right EXCPEPT...
    have vetted ALL my photoshop plug-ins, nothing there.
    external plug-in folder , been though that. only my Nik plug-in & filters there, and nothing hidden in them...
    have used 'find file' program (that will look everywhere even in system files, found nothing.
    there are two folders in ~library-application support-adobe-
    that are for CS3 and CS4, un installed from my hard disk now I use CS5, but no plug-ins in there that could do that there either.
    (wonder if I should delete these folders.??)
    have also used 'file buddy' to look for any duplicates... nothing found (except a lot of image files)
    so back to square one.. the enigma/puzzle continues...
    appreciate your thoughs and help.
    by the way, I have never ever been able to find where the Targa plug in is either to get rid of it, as I dont use that and would like to shorten the menu.
    no luck in searching for that, which makes me think that adobe have either made them 'invisible' in a folder, or built all into an unknown file/plug-in.?!?!?
    regards
    Sandy

  • CS6 to CS5 save options

    Hi all,
    I have few CS6 and few CS5 system, if corrections has to be done in my CS5 i am unable to do since the images are saved in CS6.
    CS6 to CS5 save options via javascipt any options are available.
    Regards,
    Vinoth

    Hi Vinoth,
    Please find a sample script for the same below:
    myActiveDoc=app.activeDocument;
    var destfile = new File("C://Users//myusername//Desktop//TestScript_CS5.ai");
    var aisaveOptions  = new IllustratorSaveOptions();
    aisaveOptions.compatibility = Compatibility.ILLUSTRATOR15;
    myActiveDoc.saveAs (destfile, aisaveOptions);
    Hope this information helps. Thanks.
    Regards,
    Yogesh

  • Can Premiere Pro CS5 save in format readable in 32-bit CS4?

    I work on machines in various locations and laboratories and carry all of my output around in a portable HD.  Some of the systems I work with have CS5, and some have CS4.  Is there any way to have Premiere-Pro CS5 save a .prproj file in a format that can later be edited in CS4?
    Thanks in advance for any help.

    This forum is for suite specific issues only. Please post your question in the Premiere Pro forum.
    Bob

  • Illustrator CC: how do I save my svg with artboard size?

    Illustrator CC: how do I save my svg with artboard size?
    It looks right when I open it in Illustrator, but in finder is still letter size.

    In the SVG options untick the responsive option.

  • Exif: pixelxDeminsion not in photoshop cs5 header xmp information?

    I am trying to upgrade a process that uses the EXIF: pixel x and y deminision in the XMP header information in the photoshop cs3 psd files. I am not able to find the same information in the Cs5 files. It has been moved out of the header. The process is a verification that is run on the data of the file before the file is processed in Photoshop without human interaction. If someone could point me the correct direction or shed some light on this change, it would be greatly appreciated.

    I don't think I have an answer for you about exactly what went wrong, but one thing that can help with understanding the messages (and maybe can help you and your IT people figure it out) is this:
    Photoshop saves the information about the last printer the document was printed to as metadata in the document file.  So if you make a print then save the PSD, the printer info is in the PSD.
    If recently you opened an image that had previously been printed at another place (and which didn't have an exact match to the printer available in your current location), then you can start to imagine these error messages making a bit more sense.  Things like "The saved printer information" begin to have meaning.
    Hope this helps.
    -Noel

  • CS5 save for web bug with slices 1 png, the rest gif

    Do me good forum, this is my first post from 112 degree AZ.
    I'm trying to "save for web" slices in illustrator cs5. I optimize the images to transparent .png in the sidebar in the save for web dialog box. Then I click save. And I do the "user slices" option in the NEXT dialog (hello complicated process, but it makes sense to me). 5 slices should be output. 5 are. But only one is a png. The rest are gif files. And not transparent.
    That makes me to throw an anvil through the floor of the USS(R) Adobe.
    But rather than going through such extreme measures, I'd figure I'd post first.
    I guess in the time I researched and wrote this post, I could have saved each individual slice with the proper optimization settings, but what fun would that be? And maybe I'm just plain missing somthing and someone will say, hey "footheadleg" your a total moron. The checkbox to save ALL the slices for your desired setting is at blah blah blah.
    Do it. Shame me. And then, my problem will be fixed at last. MUwhwhwhwahahahaa.
    FREE GIFT: cmd+shift+d changes illustrators white artboard to transparent pixels. I learned that becasue I thought maybe I had a white layer showing on accident. I didn't. That's because I'm perfect. Perfectly human.

    Footheadleg, you have so much to learn, and so little time. Let me teach you my ways. Though while on Illustrator's main canvas it may seem that you can change settings of each slice, you can't. I know, there are little icons top left of each image, one looks like an email symbol, and it would seem you could just email the slice to a friend.
    Pretty soon you'll be able to "Like" the slice on Facebook. Or post it to your del.i.cious account. Or tweet it. Or 17,000 other VERY VALUABLE shares. But Footheadleg, these symbols mean nothing to you, except that they are slices.
    HOWEVER, when in "save for web" mode, you can in fact change the settings of each slice. Here's what you do. Press k. (slice tool selector thingie) then hop over to the sidebar and click on the settings you want. Do this for EACH slice. I know, it would seem easier if there was a checkbox that said "apply to all slices," but why make things easy?
    Plus, Illustrator is a rad program, so don't knock it, unless you can design something better. And you can't. So get over yourself and enjoy the pain
    Yours truly,
    Yourself.

  • Illustrator CS5 - Save for Web

    Hi,
    In Illustrator CS4 when I create a graphic on my artboard and choose Save for Web, the 'export area' is trimmed to fit the artwork exactly.
    After upgrading to CS5, this no longer happens and I have to adjust the size of the artboard manually before using Save for Web.
    Is there a preference somewhere that changes this behaviour or is this new & expected?
    cheers,
    kevin

    Hi Jacob,
    Yes this is still possible - but still an extra couple of steps vs just hitting Command+Option+Shift+S
    I can't find a specific preference for this in CS4 - yet I'm still able to Save for Web and get trimmed art (I just reconfirmed).
    Interesting & annoying...
    It just occurred to me that I could create a custom keyboard shortcut -  so I assigned Command+Option+Shift+1 to Object->Artboards->Fit To Selected Art
    So now 2 key combos give me the same result.
    cheers

Maybe you are looking for

  • Production Order in PP/PS Integration Project

    Hi, In out project, requirement is generated with respect to a Project (WBS Element). I ran MRP, planned orders are generated and converted to Production ORders with respect to WBS Element. I have created the workcenters created using CR01 transactio

  • How do I update my Nvidia graphics drivers on Bootcamp using Windows 8.1

    Hey all, I have been running bootcamp with my MacBook Pro with retina display, mid 2013 model for quite some time, but only recently did the windows 8.1 update from windows 8. I have been prompted by some games, namely Fifa 15, to update to the lates

  • Is the apple time capsule a wireless router

    is the apple time capsule a wireless router

  • AUTONOMOUS TRANSACTION(8I NEW FEATURE)에 대한 소개

    제품 : ORACLE SERVER 작성날짜 : 2003-10-14 AUTONOMOUS TRANSACTION(8I NEW FEATURE)에 대한 소개 ================================================== autonomous transaction은 child transaction이라고도 불리우며 Oracle 8i부터 제공되는 새로운 기능이며 현재까지는 pl/sql을 통해서만 구현이 가능하지만 앞으로는 OCI까지

  • Problems while printing

    I have an application deployed with Java Web Start. Once running on the client machine when I try to print an image to a printer in the local network I get an image with inverted colors. The strange thing is that when I run the same application from