Exporting linked images with overlays

Hi,
I'm using InDesign CS5.5 on OS X Lion.
I have linked images in my InDesign document that I want to export as JPG and maintain the original file naming scheme. That part is easy (export as HTML, look in the images folder; export as ePUB, look in the images folder of the archive; etc.). But what I'm struggling with is when there are overlays added in InDesign. Some examples of overlays: part labels (e.g., "a", "b", "c"), text labels, arrows, lines, etc. The only way I've found to export the overlays is to do this:
-Group the placed image and overlay items together
-Apply Object Export Options to the grouped item such that Custom Rasterization is checked
-Export via one of the options (e.g., HTML, ePUB)
I get one image per group, which is what I want. The problem is that the filename for that image is now a random number. What I really need is the filename for the original image to be used.
I've also tried exporting to other formats, e.g., PDF (and using the extract all image options) but that doesn't preserve the overlays in the extracted images (which makes sense since the PDF sees the letters as text).
I figure to do this I have to write a script. So before I embark on that quest, I was hoping to get opinions on whether a) such a script is possible and b) whether there is a better way. For specific workflow considerations, moving the adding of these overlays to the images outside of InDesign (e.g., via Photoshop) is not an option.
I envision a script that does the following:
-Set custom rasterization on every grouped object
-Export all grouped objects and other linked images as JPG (with certain settings)
-The exported images for the links would preserve the original filename (adding "_fmt" like InDD does now would be okay) and for the grouped items it would use the filename of the linked image that is part of the group (and fallback to a random number if there is no such image). In the case that the filename could not be specified, then embed the original filename of the linked image in the group
Obviously, if a script could also do the grouping of objects (e.g., finding a linked image, checking to see if there is anything on top of it, grouping it all together), then that would be even better, but I'm not holding my breath. :-)
Thanks,
Steve

This is where the Adobe DNG could shine.
http://www.adobe.com/products/dng/index.html
Worth the read ... this can save the changes that one
makes.
DNG does NOT help in this case.
There is a huge misunderstanding that this is part of what DNG can or should do.
But if you think about it, what good are the adjustments being stored in DNG if you have to use a particular program to open it anyway?
Think about Aperture's Edge Sharpen for a second. Lets say you store that value in a DNG. Fine, what other program is going to able to reproduce that result EXACTLY to how you were previewing it at 100% on your monitor?
Lighroom is trying to do something along these lines by passing editing commands off to Bridge through DNG. But here you run into another problem - it constrains what editing any one program can do. If Lightroom is limited to only ever having editing commands that are the same as what Bridge offers, and no other program on earth supports them, then what have you really accomplished? Will unknown editing commands simply be dropped without warning?
That's why I think simply exporting projects, which hold master images alongside sidecar files (very like XMP) that describe edits are about as good as you are going to get. If you want to truly preserve editing work and you care about quality, nothing beats a TIFF file where 100% of the pixels are exactly as you reviewed them during editing. I personally trust Aperture enough to back up master images along with edits, and am fine with that.

Similar Messages

  • When I export an image with a Green label, it exports with a "Green" keyword! How do I prevent this?

    I've added a Green color label to an image. When I export the image as a JPEG and then upload it to Flickr, I find a "Green" keyword that I don't want. How can I turn off this behavior -- i.e., exporting color labels as keywords -- while preserving the ability to export all the keywords I added manually?
    I know the keyword is coming from Lightroom because I temporarily changed the Color label's legend to "GGreen" and the keyword "GGreen" appeared in the Flickr upload dialog.
    I inspected the IPTC data of the exported JPEG image with a 3rd-party program (Irfanview) but could not find "Green" (or "GGreen") in the file, but all my manually-added keywords are there.
    I've tried all of Lightroom's Export dialog Metadata settings.
    Thanks,
    -- Sam

    New information and some screen grabs!
    The new information is that the unwanted label "Green" (or whatever color label is selected) appears as a Flickr Tag only when no manually entered keywords are attached to the image in Lightroom. Adding even one keyword in Lightroom and repeating the export-from-Lightroom-then-upload-to-Flickr process results in no "Green" tag in Flickr.
    The images are a) the Flickr upload screen showing the "Green" tag; b) my Lightroom Metadata presets -- everything unchecked; c) my Lightroom Export dialog panel.

  • Saving Binary Image with Overlay?

    Hi
    I'm having some issues saving an image with overlay information. I'm using IMAQ Find Circles to measure the radii of holes in a binary image. The hole data is then used with IMAQ Overlay Oval, to draw on ovals to highlight the circles detected. Works fine and the image is shown as expected in the image output on screen, pallette is set to binary. (See second image of 3, below)
    When I try and save the image to PNG I just get a blank (black) image. If I use the IMAQ Merge Overlay tool, I just get the green circles on the black (see last image of 3 below). Is there something I'm missing with pallettes/merging? Any help much appreciated. Snapshot of (messy) code attached.
    Solved!
    Go to Solution.
    Attachments:
    forum2.PNG ‏47 KB

    The problem is the binary image is all zeroes and ones.  A normal image goes up to 255, so a value of 1 looks black.
    One solution is to multiply the binary image by 255, which makes the image black and white.
    Bruce
    Bruce Ammons
    Ammons Engineering

  • Captuer image with overlay view

    Hi.
    i m on this for last 2 or 3 days.
    i have a UIImagePicker and set its source type to UIImagePickerControllerSourceTypeCamera. and i have an overlay view on it. Now i want to capture image with overlay view.
    i m not using camera controls picker.showsCameraControls = FALSE; and have my custom toolbar with camera button. code i tried is
    //btnCameraTaped
    -(void)btnCameraTaped:(id)sender
    CGRect contextRect = CGRectMake(0, 50, 320, 430);
    UIGraphicsBeginImageContext(contextRect.size);
    [picker.view.layer renderInContext:UIGraphicsGetCurrentContext()];
    viewImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    //above code save overlay view in viewImage
    [picker takePicture];
    - (void)imagePickerController:(UIImagePickerController *)picker1 didFinishPickingMediaWithInfo:(NSDictionary *)info {
    UIImage *camImage = [info objectForKey:@"UIImagePickerControllerOriginalImage"];
    //trying to merge viewImage and camImage i don't know what it is doing i found it on stackoverflow
    UIGraphicsBeginImageContext(camImage.size);
    [camImage drawAtPoint:CGPointMake(0,0)]; //crash on this line
    [viewImage drawAtPoint:CGPointMake(0,0)];
    UIImage *newImage = UIGraphicsGetImageFromCurrentImageContext();
    UIGraphicsEndImageContext();
    //saving it in photo library
    UIImageWriteToSavedPhotosAlbum(newImage, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);
    but code crashes on [camImage drawAtPoint:CGPointMake(0,0)];
    if any one have any idea what i m doing wrong. or is there any better way to do this.
    Usman

    finally found the solution from http://trandangkhoa.blogspot.com/2009/07/iphone-os-drawing-image-and-stupid.html
    - (void)imagePickerController:(UIImagePickerController *)picker1 didFinishPickingMediaWithInfo:(NSDictionary *)info {
    UIImage *camImage = [info objectForKey:@"UIImagePickerControllerOriginalImage"];
    int width = camImage.size.width;
    int height = camImage.size.height;
    CGSize size = CGSizeMake(width, height);
    //create the rect zone that we draw from the image
    CGRect camImageRect;
    if(camImage.imageOrientation==UIImageOrientationUp
    || camImage.imageOrientation==UIImageOrientationDown)
    camImageRect = CGRectMake(0, 0, width, height);
    else
    camImageRect = CGRectMake(0, 0, height, width);
    UIGraphicsBeginImageContext(size);
    CGContextRef context = UIGraphicsGetCurrentContext();
    //Save current status of graphics context
    CGContextSaveGState(context);
    //Do stupid stuff to draw the image correctly
    CGContextTranslateCTM(context, 0, height);
    CGContextScaleCTM(context, 1.0, -1.0);
    if(camImage.imageOrientation==UIImageOrientationLeft)
    CGContextRotateCTM(context, M_PI / 2);
    CGContextTranslateCTM(context, 0, -width);
    else if(camImage.imageOrientation==UIImageOrientationRight)
    CGContextRotateCTM(context, - M_PI / 2);
    CGContextTranslateCTM(context, -height, 0);
    else if(camImage.imageOrientation==UIImageOrientationUp)
    else if(camImage.imageOrientation==UIImageOrientationDown)
    CGContextTranslateCTM(context, width, height);
    CGContextRotateCTM(context, M_PI);
    CGContextDrawImage(context, camImageRect, camImage.CGImage);
    //After drawing the image, roll back all transformation by restoring the
    //old context
    CGContextRestoreGState(context);
    //For viewImage
    CGRect viewImageRect;
    if(viewImage.imageOrientation==UIImageOrientationUp
    || viewImage.imageOrientation==UIImageOrientationDown)
    viewImageRect = CGRectMake(0, 0, width, height);
    else
    viewImageRect = CGRectMake(0, 0, height, width);
    CGContextSaveGState(context);
    CGContextTranslateCTM(context, 0, height);
    CGContextScaleCTM(context, 1.0, -1.0);
    if(viewImage.imageOrientation==UIImageOrientationLeft)
    CGContextRotateCTM(context, M_PI / 2);
    CGContextTranslateCTM(context, 0, -width);
    else if(viewImage.imageOrientation==UIImageOrientationRight)
    CGContextRotateCTM(context, - M_PI / 2);
    CGContextTranslateCTM(context, -height, 0);
    else if(viewImage.imageOrientation==UIImageOrientationUp)
    else if(viewImage.imageOrientation==UIImageOrientationDown)
    CGContextTranslateCTM(context, width, height);
    CGContextRotateCTM(context, M_PI);
    CGContextSetAlpha (context,0.5);
    CGContextDrawImage(context, viewImageRect, viewImage.CGImage);
    //After drawing the image, roll back all transformation by restoring the
    //old context
    CGContextRestoreGState(context);
    //DO OTHER EFFECTS HERE
    //get the image from the graphic context
    UIImage *outputImage = UIGraphicsGetImageFromCurrentImageContext();
    UIImageWriteToSavedPhotosAlbum(outputImage, self, @selector(image:didFinishSavingWithError:contextInfo:), nil);
    //commit all drawing effects
    UIGraphicsEndImageContext();
    Usman

  • Export PNG images with alpha channel from flash

    Hi,
    I have this FLA with animation and when played, the animation has alpha channel. I can’t understand why when I look in the library I see the frames without the alpha channel and also when I try to export/extract the image again the image don’t have alpha channel.
    How is it that in flash this image has alpha channel and how to get it out like that into PNG?
    Here is the link to download the FLA:
    http://download759.mediafire.com/nb749r29220g/e0636ab0ru6ouoa/Untitled-1.fla

    "when played, the animation has alpha channel"
    how are you playing the animation? control/enter in Flash, Publishing to a Web page or what?
    How can you tell that the animation has the alpha channel? What exactly are you seeing?
    What is the aniimation? a series of images, one image moving? Are teweens imvolved?
    " when I try to export/extract the image again the image don’t have alpha channel"
    How are you exporting the image? is it a single image? or a series of frames that makes up an animation?
    What was the file format of the original image? you brought that image into Flash and animated it? Now you want to export as a .png with transparency?
    Have you ever tried to export a  simple .png before so that you see and understand the dialog box that pops up during export? are you chosing "24 bit with alpha channel" in the "Colors" choice?
    For those of us who may not want to download your file, please provide a more detailed describtion of everything related to this question.
    Best wishes,
    Adninjastrator

  • Linked Image with border on hover

    I have a page of tiled image that link to project pages on the website. My boss found a website that he likes how the images appear when you hover over them with the mouse. I know of a way to do this, but I'm not sure what the best way would be: 1) create a rollover image that has the first image without a border, and the second image with a border... this seems like it would take the longest but give me the look I want because there are 55 little images. I have been trying to figure out how to apply the border for a linked image thru a CSS style, but the only thing it will give me is a border that appears all of the time (not just on hover). I'm wondering if there would be a quicker way to do this. Here is a link to the page that I would like to apply the style to: http://stateline7.com/index_files/Page532.htm , and here is the page that my boss liked the appearance of: http://holmes.zenfolio.com/

    a img { border:1px solid white; }
    a:hover img { border:1px solid green; }
    Assuming your background color is white, this will give you a green border on hover with no change in the image's effective size due to the appearance of the border.

  • Export Simplified Image, with color markers

    Hi,
    I have a few graphs that i'd like in a report, they need to look neat and will get resized along the way. So i need to export them as vector based graphics (.eps or .emf), i have been using Export Simplified Image (Object Shortcut Menu -> Data Operations ->Export Simplified Image). For most plots this has worked fine.
    Problem comes when i make plot with just markers no lines, when i do the export the marker points are always black. I would like to show the differences between some data sets using colour not just marker shape. When i do the same plot but with lines and markers, then both the lines and markers come out in color. Exporting to .eps and and .emf has identical results.
    An example is attached, with the two plots (with lines and without). I am using LabView 8.0 on WinXP could it be a version thing? Anyone willing to test on other versions?
    Thanks
    Tim (LabRat1)
    Attachments:
    ExportTest.vi ‏126 KB

    Hi Topher,
    How are you doing this?  Are you going to right-click>>Export Simplified Image.  I have done this with the code attached on the forum above and this works fine for me using 8.6.1f1.  You could try installing the patch for 8.6.1 if you haven't already to ensure we are on the same version.  This is available at  http://joule.ni.com/nidu/cds/view/p/lang/en/id/1276 although it should not fix anything to do with this.  Does this also not work by using the property node as described in the KB at http://digital.ni.com/public.nsf/allkb/5AE4ADCBB65A6D8F86256FBF007A1AC1?OpenDocument
    Regards,
    James Mc
    ========
    CLA and cRIO Fanatic
    wiresmithtech.com/blog

  • AI CS3 "link images with transparency" issue

    i created .AI file with CS2 everything works perfectly.
    when the file opened with AI CS3 some link images (.PSD files with image transparency) not appear
    and gives me a error saying it cannot find or link the images.
    when i replace with new link or i ignore it, still can't display the missing images
    but if i opened the file with AI CS5 everything okay
    how to solve this problem ?
    is there any patchs for AI CS3 ??
    NEED HELP

    Open it in CS5 and do a save as to overwrite the older file
    or save it from CS 5 as a CS 3 file.
    Then try to open it in CS 3

  • How to export my image with transparent bkground (CC)

    Before I ask my question, I want to point out I am currently exporting my image by going to File>Export>.PNG>(72PPI+Transparent)
    The issue im running into is; for example when I am exporting text, I am also exporting a certain amount of area around my image. How can I export the exact outline of my image? I have posted a screen shot of what im refering to.
    When I wanted to use my text image for a website I was building I noticed I couldnt get the image to center. I opened the image in paint and noticed I was exporting the area around my image aswell and not just the image itself. Hopefully the screen shots can explain my scenario a little better...
    I would like to export the text outline only. As you can see in paint I am exporting a fixed area around my image.
    ANY HELP IS GREATLY APPRECIATED!!!!!!!! THANK YOU -JON-

    The image was created in Illustrator. I opened the file in Photoshop and I see that area around my image aswell. I would like to just export the highlighted area. When im exporting through Illustrator, I would like to export a tighter area the image, not so much area around

  • Linked AI with overlays looks fine on PC when exported to PDF, but Mac horribly distorts the color?

    I'm pulling in an .AI file into my .INDD on PC, and it looks beautiful! I export the PDF, send it to my supervisor, who is on a Mac, and it looks like garbage!
    Magnificent, beautiful, bright!
    I think this got pulled out of a dumpster...
    What is going on?  When my supervisor tried to print it, it still came out that way, but when I print it, it's fine.
    A bit about the .AI file:  It's a gradient mesh with multiple layers of semi-transparent, "soft-light" overlaid patterns.  The files are placed as links into the InDesign file.  They have matching color profiles. I also tried embedding the link in case that was the issue.  I am at a loss.
    P.S. The quote above is not an indication of my feelings toward Adobe. It just happened to be in the document I'm working on.

    Yup, she was using Preview.  Looking at it in other programs solved the issue.  Sheesh, what a mess!
    Thank you (and Peter) for your timely responses!

  • AI CS 6 crashes when I try to export  an image with layers to PS CS6

    Hi guys!
    well, I'm completely newbie on Illustrator. I only have to use it to create level on pdf images to work with it in Photoshop.
    So I installed Illustrator yesterday for the first time and immediately the problems started.
    Ay the first opening I had more than one error
    Immediately following this (before the program started for its first time)
    Then I opened a pdf file in it, select > all , Object >  clipping mask > release, Layers, release to layers (Sequence).
    Till here all went OK.
    At this point All i nedd it's to export in Photoshop CS6.
    So File > export >save as *psd.
    At this point Illustrator crashes every time!
    I did all the update with Adobe Application Updater, my PC is new and a really good PC.
    It runs Win8 64 and with PS all goes like a charme.
    What have I to do? I see many posts about the plugins problem (and still no solution by Adobe).
    I ignore the problem for the plugin errors, and after some reload now I don't have that error but this one:
    Same thing when I relaunch, each time and every time.
    I need to solve this problem and it's impossible for me to call Adobe customer assistence As you can see my English is pretty bad and I can write but not speak by phone.
    Can you guys hep me please?
    Thanks in advance
    Lio

    Have you tried trashing the prefs?

  • Can I save an IMAQ image with overlayed tools and text/ROI graphics.

    I am using LabVIEW 6.0.2/IMAQ 2.5 on WinNT.
    Thanks, Jeff

    Hi Jacy,
    Yes, you will need to use "IMAQ Write Image and Image Info" vi to save the extra information. This VI allows you to save overlay, pattern match, and calibration information associated with an image.
    Hope this helps.
    Ken Sun
    Applications Engineering
    National Instruments

  • Export multiple images with random layers

    I have this texture file that has many different variations to it. (3 different kinds of pants, different hairpieces, some optional items, etc...)
    What i want to do, is export it with random layers selected. (there are also folders inside, it's fine if i have to merge the folder into a single layer, but it would be better if it could treat the folders as a layer)
    There are 2 layers that must always be on,
    then there are 6 other layers that can be mixed and matched completely at random.
    Finally: there are 3 layers that only one of them can be active at one time (if one is active, the other 2 cannot be). Those last 3 layers I wouldn't mind if i had to go through manually and remove the combinations that couldn't work, but it would be much better to have it automatic.
    Is there any way to script this so that it exports all of these textures as *filename*_*variation#*.png

    -the first 8 lines just make sure there is a valid document open, and if there is, find out the file path and everything
    Correct.
    But I cut corners, if I were more diligent I would also check for the existence of more than one layer and that the file has been saved at all (otherwise it has no path and an error occurs) etc.
    -line 14 just makes sure it outputs no more than 20 images (which i find odd. the texture files are extremely small ~6.82 kb each, so loading them won't be a problem. it would be good if it got stuck in an infinite loop)
    Feel free to change it to a higher number.
    To create 100 files change to
    for (var p = 1; p < 101; p++) {
    Why is thearray2 put in thearray, but then never used separately?
    The function RandomShow checks if the elements in the Array are Arrays themselves
    if (theObject.constructor != Array) {
    and just assumes it is a Layer if it is not an Array.
    But when it is an Array the function RandomShow is run with that Arrays elements as arguments.
    This is intended to enable the various rules – for example if you have two or more Layers of which only one may be visible you could put them in such an Array with minimal and maximal set to 1, which should only make one visible.
    But – and again I should have included checks for this – you should not put a Layer in more than one Array.
    In the example changing theArray2 to
    var theArray2 = [[theLayers[0], theLayers[1], theLayers[2]], 1, 1, "no"];
    would mean that 7, 8 and 9 would only be visible individually.
    But as theArray2 is itself part of theArray it may be visible or not unless it is set as the baseLayer.
    Or rather it would if I had not forget to check the baseLayer item for being an Array itself …
    So please change the affected if-clause (should be about line 34) to
    // show the baselayer;
    if (baseLayer.constructor == Number) {
              var theObject = theArray[baseLayer];
    // show baselayer if layer;
              if (theObject.constructor != Array) {
                        theObject.visible = true;
    // run function if baselayer is an array;
              else {
                        RandomShow (theObject[0], theObject[1], theObject[2], theObject[3])
              maximal--
    -baselayer is defined (but i can't find out where to input what it is, do i put it in place of the "no" on line 15?)
    The function takes four arguments,
    • the Array
    • the minimum number of visible elements
    • the maximum number of visible elements
    • a layer that should always be visible identified by its place in the Array
    So when invoking the function RandomShow and wanting the first layer in the Array to be visible it would be:
    RandomShow (theArray, 1, 5, 0);
    -for the layer array do I put in the actual layer names?
    If you want to address a layer with teh name »Layer 1« by name (top level layers that is, layers in Groups are filial to the Group) you can use
    myDocument.layers.getByName("Layer 1")
    -If I currently have layers hidden, how would i tel it to not add those to be randomly shuffled and made visible (it was randomizing the texturemap and the other layer that is there for future reference into the compiled pngs)
    Whether a Layer is visible or not is irrelevant in the curren tform of the Script, the Layers are addressed in the Array.
    Introducing a check for visibility would be possible, but make the function a bit more convoluted as this would also affect the maximum number for example.
    I don’t think I answered all questions, but maybe you’ve made progress on your own already and you can always post again if matters are still unclear.
    Maybe the function is more complicated than it would need to be or maybe it will not be able to accomodate all your needs currently, but one could for example extend the baseLayer argument to an Array itself to have more than one element (either Layer or another Array) that will always be visible … there are still possibilities but the issue might be a bit complicated.

  • Stitching images with overlays

    I am stitching one large imaq image from several smaller images using image to image copy.  The small images each have several overlays.  After the image to image copy the overlays from the small images are lost. How can this be avoided.  Or at least how can I get the overlay image information to manipulate it and reapply the data.
    Is this possible, it seems that it should be.
    Paul Falkenstein
    Coleman Technologies Inc.
    CLA, CPI, AIA-Vision
    Labview 4.0- 2013, RT, Vision, FPGA

    The image overlay data is lost when performing the image to image copy because you lose the origin (0,0) of the small image, to which all overlays are relative.
    You are going to need to user the IMAQ set overlay properties VI to configure the behaviors of the overlays before you copy them.
    An easier method would be to merge the overlay with the picture before copy, but you would lose pixel data under the overlay, and the image would convert to RGB.
    Machine Vision, Robotics, Embedded Systems, Surveillance
    www.movimed.com - Custom Imaging Solutions

  • Exporting master images WITH adjustments

    Hello,
    I have a simple question about exporting images.
    Let's say I have imported a bunch of raw images into my Aperture Library (but they are referenced files, located in the folder specified by me). Then I have worked on them. And now I want to backup my work - all my adjustements. But I don't want to export them as new versions (jpgs), but just export the raw files together with adjustments I have just made.
    How do I do that?
    Any help would be really appreciated.
    Best greetings,
    Tomasz
    iMac G5 17'' Flat Panel   Mac OS X (10.4.8)  

    This is where the Adobe DNG could shine.
    http://www.adobe.com/products/dng/index.html
    Worth the read ... this can save the changes that one
    makes.
    DNG does NOT help in this case.
    There is a huge misunderstanding that this is part of what DNG can or should do.
    But if you think about it, what good are the adjustments being stored in DNG if you have to use a particular program to open it anyway?
    Think about Aperture's Edge Sharpen for a second. Lets say you store that value in a DNG. Fine, what other program is going to able to reproduce that result EXACTLY to how you were previewing it at 100% on your monitor?
    Lighroom is trying to do something along these lines by passing editing commands off to Bridge through DNG. But here you run into another problem - it constrains what editing any one program can do. If Lightroom is limited to only ever having editing commands that are the same as what Bridge offers, and no other program on earth supports them, then what have you really accomplished? Will unknown editing commands simply be dropped without warning?
    That's why I think simply exporting projects, which hold master images alongside sidecar files (very like XMP) that describe edits are about as good as you are going to get. If you want to truly preserve editing work and you care about quality, nothing beats a TIFF file where 100% of the pixels are exactly as you reviewed them during editing. I personally trust Aperture enough to back up master images along with edits, and am fine with that.

Maybe you are looking for

  • Problem of TimedObject in AppServer 9

    Hi Experts, I have created a TimedObject ejb to generate a text file periodically. It worked in App Server 8.1. However, after I have upgraded to App Server 9.0, it does not work any more. The following exception appears when I try to schedule to exe

  • Unable to install Elements 11 on OS 10.8.2

    I am having the same problem when trying to install Elements 11 on an iMac with OS 10.8.2 Have also tried with My new Macbook Pro Retina - same result  Error: DW046: ShellExtLoader Used avtivity monitor to shut off but did not cure the problem

  • Cannot enable acrobat 8.1.3 addin in Word 2007

    Hi, I cannot enable acrobat 8.1.3 addin in Word 2007.  In Word 2007 I go to the top left circle, word options, Add-Ins, Disabled Application Add-ins,  Acrobat PDFMaker Office COM Addin, and then "Go". I then see Acrobat PDFMaker Office COM Addin is u

  • From JavasSript called signed (FileDialog) Applet Problems...

    Hallo, I want to read a by JavaScript opened selected file with the FileDialog in a Byte[], and give this Byte[] back to JavaScript. I have this code for my unsigned applet working fine without reading the selected file in a byte[], but give the file

  • Effect 3D Extrude&Bevel

    hello everyone where can i found this menu ? Effect>3D>Extrude&Bevel it's a step of many 3D tutorials but i cannot find it in PS menus