Images smaller printed then edited, help needed

Hello everyone.
I'm using LiveCycle Manager 8.0 on Win XP SP3
When building a new form i got various problems with images being printed smaller then what is defined and shown in the edited and also in preview mode.
The problem occurs with images that are being included with Image Fields.
The problem gets even bigger if i place the images by showing them by the push of a button (script)
Pictures will not be x/y placed and sized as defined in the layout parameter
Here are some details about the pics:
Larger header pic 17.7 x 8.0 cm, 300dpi
Smaller pics bellow 17.7 x 1.6 cm, 300dpi
Here are some screen shoots to show you how it looks.
Any help would be great as I really tried a lot but can't find a solution.
Designmode:
Preview Mode
Final PDF messed up
PS: LiveCycle Manager also seems to run very bugy. Sometimes it crashes when changing a image parameter.

Hi,
OK I am trying to get to grips with what you are trying to achieve.
The preview now shows how the form will look in Acrobat (Form / Properties / Preview / Interactive).
In the top imageField I cannot explain why the displayed image is not as per the design view. Because it works for an image object (rev 1 in previous post), I suspect that it is a bug in the imageField object.
There are workarounds however it would depend on the number of options (images) that the user has to select and if these images will change over time. If there are a small number of options, you could include all of the images in a series of image objects that are hidden and then change the visibility depending on what the user selects. This would be easier for the user because they would not have to browse to an image location.
In relation to the "Geben Sie hier einen Titel ein |" header; if you are looking to change the background colour, then there is a simpler way, which i have included in rev 2.
You can script rectangles for presence, colour, etc. The rectangle cannot contain the script, but you can include script in a button that will affect the presence and appearance (look) of the rectangle.
Hope that helps,
Niall

Similar Messages

  • How to select entire PDF document (scanned image content) and then edit?

    I have a PDF file of a booklet that was created by scanning the pages as images. Whoever did the job aligned everything nicely, but for some reason ended up with an output where the pages are all too dark. The white parts of the pages are gray. I can go into the Advanced Editing toolbar and use the tool on the far right, right click the page and choose Select All, then Edit Image and it opens in Photoshop. There, I just change the brightness/contrast and save it. Then when I go back to the PDF the page looks great. Problem is, it only does one page at a time under the "Select All" option, and the booklet has more than 40 pages. Is there a way to select all the pages then edit them in Photosop all at once somehow?

    I tried the other things suggested, but they didn't work, either. I ended up creating a new document and copying all of the text into the new document where it can be selected like normal. Go figure...

  • Manual Router CFG editing Help Needed!!

    Ok so what I'm trying to do is to configure my Linksys WRT54GL by either editing the .CFG file that I can download from it or by maybe uploading a configuration file to it through tftp. I have not found an editor that will let me work with the .CFG file!
    Ultimate goal: I need to put more port forwarding options in then the 10 that it will let me on the web page. Please help!!

    Linksys firmware is limited to 10 port forward slots.  You can not change it.

  • Simple Narration Editing Help Needed

    Hello,
    I am brand new to audio editing and SB. I have recorded a narration. There was a little bit of background noise and the peak levels were a little too high (going into the red a little too often). I selected a piece of the background recording where no narration exists and used the "Capture Noise Print" in the Clean Up Audi0 - Noise panel to get rid of the background noise. Then I "Equalized Volume Level" to take care of the peaking problem. However, now the voice is a little on the tinny side. Can anyone suggest how I can get rid of that tinny sound and bring back the richness? Or perhaps a tutorial?
    Any suggestion on how to record with proper levels would be helpful as well.
    Thanks,
    Mike

    I have the same problem.
    Did you ever figure this out?
    Using the Effect Fix:Remove Hiss seemed to work better, but there is still a significant amount of background noise when no one is talking.
    It did seem to help to set the Noise -> Reduction value down to 30 or so using the Preview and Green switch to hear the difference.
    I'm still looking for the best workflow to cleanup a group discussion setting and would appreciate anyone else's experience.

  • A small but very usefull help needed!

    Hello,
    I am not sure if i have posted this toppic in the correct forum but i want to write a small javascript command.
    I have an application in which i have to always press some and then enter so that it can refresh. Can anyone show me or write a small command to help me out?
    It would be very usefull.
    Thank you in advance!

    This is not the correct forum for your question. You should direct it to a development forum.

  • If/then JavaScript help needed

    Hello,
    I am trying to write a script for a fillable PDF in Adobe Acrobat, but I don't have much experience with JavaScript and I need some help!
    Basically I have five fields as follows:
    A1 = a checkbox
    B1 = a field with a number value in it
    C1 = a field with a number value in it
    D1 = a field with a number value in it
    E1 = a field where the sum calculation will be.
    I want to write a script that will enter the sum of values of B1+C1+D1 into E1 if the checkbox in A1 is checked yes.
    If it is not checked yes, then it will enter the sum of values of B1+C1+ the value of D1 divided by 2 (and rounded down) into E1.
    Can anyone help??
    Thanks!

    This should do it as the custom Calculate script for E1:
    // Custom calculate script
    (function () {
        // Get the field values, number fields as numbers
        var a1 = getField("A1").value;
        var b1 = +getField("B1").value;
        var c1 = +getField("C1").value;
        var d1 = +getField("D1").value;
        // Set this field (E1) value based on the state of the check box
        if (a1 === "Off") {
            event.value = b1 + c1 + d1;
        } else {
            event.value = b1 + c1 + Math.floor(d1 / 2);

  • Images with hyperlink in javascript - help needed

    Hai,
    I am having two hyperlinks say, "Good Morning" and "Good Evening". When I am clicking "Good Morning", a small arrow or a picture should display with the hyperlink.
    When I am clicking "Good Evening" this one should have the small arrow or a picture and "Good Morning" will be displayed normally (without picture).
    How can I do this using javascript?
    Did anyone has the code? Pls help me.
    <html>
    <head>
    <title>
    Moves the Arrow When Clicked the Headings for Sorting purpose
    </title>
    <SCRIPT language="JavaScript">
    function remove_picture() {
    function set_picture() {
    </SCRIPT>
    </head>
    <body bgcolor="peachpuff" width="90%" align="center">
    <table>
    <tr>
    <td align="left">Good Morning</td>
    <td>Good Evening</td>
    </tr>
    </table>
    </body>
    </html>
    - yogee

    <html>
      <head>
        <style type="text/css">
          #notclicking .highliter {
            display: none;
          #clicking .highliter {
            display: inline;
        </style>
        <script type="text/javascript">
          function showHighliter(elem) {
            elem.id="clicking";
          function hideHighliter(elem) {
            elem.id="notclicking";
        </script>
      </head>
      <body>
        <a href="#" id="notclicking"
           onfocus="showHighliter(this);"
           onblur="hideHighliter(this)">
          <img border="0" class="highliter"
               src="http://forum.java.sun.com/im/duke.gif"/>
          Good Morning
        </a><br/>
        <a href="#" id="notclicking"
           onfocus="showHighliter(this);"
           onblur="hideHighliter(this)">
          <img border="0" class="highliter"
               src="http://forum.java.sun.com/im/duke.gif"/>
          Good Evening
        </a><br/>
      </body>
    </html>

  • Adobe digital editions (help needed asap)

    I keep getting an error message saying adobe digital editions 2.0 has stopped working, How do i fix

    Depends why it stopped working.  You could try uninstall and reinstall.
    Unfortunately, ADE2.0/2.0.1 is a terrible program riddled with bugs,
    unless you need a feature it does not have the best solution is to install 1.7.2.
    There are lots of bugs in ADE2.0 (and 2.0.1).  Try replacing ADE2.0 with the older but more reliable v1.7.2.
    (You can have them both installed at once if you like.)
    Version 1.7.2, it is a little difficult to find, available on Adobe site for Windows and for Mac.
    http://helpx.adobe.com/digital-editions/kb/cant-install-digital-editions.html
    The forum software is sometimes corrupting the link above.  There shouldn't be a blank in 'editio ns.html'.  The following redirects to the same page: http://tinyurl.com/diged172
    Some people have found ADE trying to upgrade automatically. 
    It appears (not 100% sure) that if you install ADE2.0 as a new install (not as an upgrade) that your 1.7.2 will continue to run.
    Probably best to say no if 2.0.x installation asks if you want to migrate your library.

  • I can't print DL envelopes - help needed please

    Hi
    I have the 7500A office jet, all set up & running with office 2010 lovely printer but I just can not work out how to print DL sized envelopes, I can feed to envelopes into the printer select the size in say Word to DL but the printer will not print but just spits the envelope out with an error to say wrong size.
    Any help would be great

    We are also having the same problem.  We use Stamps.com software to print our postage.  During set up, we tell it we want to print a #10 envelope.  The printer just spits it out blank saying that it's the wrong size.
    If this thing can't print envelopes, it's going back.

  • Image swap code and flex -- HELP NEEDED

    Hello Folks,
    I am still new at programming and having a major issue and wondered if anyone know a simple way to do a photogallery by using some code to create an image swap
    Thumbnail ( here )                                             Large image here
    Next Thumbnail (here )                                      Large Image changes
    Next Thumbnail (here )                                      Large Image changes
    Someone suggested I use PHP to load all the images at once but it was over my head... any one got some simple explained solutions... Really trying to learn this...
    Thanks

    Hi 123tron,
    For these type of requests you should post a cookbook recipe request to Adobe's cookbook site: http://cookbooks.adobe.com/flex
    Good luck!

  • I ordered Photoshop Elements 13 and Premiere 13 unfortunately of the Windows version (small print). Instead I needed the Mac version for my new iMac. The order was on December 2nd. 2014. Order no.: AD014937726.

    I contacted Adobe and they recommended the Forum to speed up the process!!! I need to know who to contact.

    Please see this post:
    <returns>
    It has got a link to contact Adobe Customer Service where you can explain your situation.

  • Expert editing help needed

    OK, so here is the situation. I filmed my friends son's christening. The ceremony was a feast for the eyes and ears. The audio track is beautiful, and a complete record of the ceremony.
    I want to preserve the audio track and much of the video, while I overlay video clips (without their audio), and stills in places where my camera faltered.
    My problem is, how do I put video/pics over the audio, and cut back to the video of the ceremony while maintaining the synch between the audio/video of the original footage?
    I only know how to trim/split/crop clips, and it seems like it would be near impossible to get the audio and video to match-up every time I splice in new footage.
    I am extracting the audio from the original footage as we speak.
    Thanks in advance
    -Tim

    Under the Advanced menu, use "paste over at playhead" instead of manually cropping/splitting/pasting. Prior to using this command, you will need to copy your clip into memory (command-c).
    This command pastes your clip into your movie, while not affecting the audio track. The movie will get automatically cut the same exact length as the clip you are pasting.

  • *HELP* why are "edit in photoshop" images smaller?

    Ok, for the life of me (I've searched this forum high and low and can't find an answer) I cannot figure out why when I go to "edit in phototshop" my images end up being around 7x13 instead of full size. I always import the images in full resolution (from my Canon 5D).
    Of course I can select the entire catalog and "export" and change the size to whatever I want to but I'm afraid when I'm opening them up in CS5 from LR3 that I'm losing image quality.
    So I guess I have 2 questions:
    Is there an adjustment that will allow me to "edit in" in FULL file size in CS5?
    If not and I save the files in CS5, then I see them edited in my LR catalog and I go to export them and make the image size larger (say 20x30 from the 9x13) that it opened up as in CS5, is there IQ loss?
    Hope that made sense.
    Any help is appreciated!

    You are not the only person who has been confused by this.
    For digital images, the resolution in pixels per inch, or pixels per centimeter, are truly meaningless. They do not affect the exported photo in any way. The same is true for the Edit In ... dialog box. The result of an "Edit In ..." is always a digital file.
    If you are exporting with the goal of printing an image, then you could set the units to inches, and select pixels per inch, and for example, if you wanted to print a 4x6, you could set the long edge in the Export dialog box to 6 inches and the resolution to 300 pixels per inch, and voila you get an image that has 1800 pixels on its long edge, this downsamples the image, and may not be strictly necessary if your image is actually larger than you need.
    A "Better" way to think about this is the following example — my image is going to be printed at 8x10 inches, I want it to print at 300 pixels per inch, therefore I multiply 8x10 time 300 and discover that I need 2400x3000 pixels (or more!) in order to print properly.
    So with the above explanation, I still have no idea why Edit In ... contains a resolution box, as you can always change the final size in your auxiliary editor. Having a resolution field in the Export Dialog box might make some sense in printing situations.

  • I need your help with a decision to use iPhoto.  I have been a PC user since the mid 1980's and more recently have used ACDSee to manage my photo images and Photoshop to edit them.  I have used ProShow Gold to create slideshows.  I am comfortable with my

    I need your help with a decision to use iPhoto.  I have been a PC user since the mid 1980’s and more recently have used ACDSee to manage my photo images and Photoshop to edit them.  I have used ProShow Gold to create slideshows.  I am comfortable with my own folder and file naming conventions. I currently have over 23,000 images of which around 60% are scans going back 75 years.  Since I keep a copy of the originals, the storage requirements for over 46,000 images is huge.  180GB plus.
    I now have a Macbook Pro and will add an iMac when the new models arrive.  For my photos, I want to stay with Photoshop which also gives me the Bridge.  The only obvious reason to use iPhoto is to take advantage of Faces and the link to iMovie to make slideshows.  What am I missing and is using iPhoto worth the effort?
    If I choose to use iPhoto, I am not certain whether I need to load the originals and the edited versions. I suspect that just the latter is sufficient.  If I set PhotoShop as my external editor, I presume that iPhoto will keep track of all changes moving forward.  However, over 23,000 images in iPhoto makes me twitchy and they are appear hidden within iPhoto.  In the past, I have experienced syncing problems with, and database errors in, large databases.  If I break up the images into a number of projects, I loose the value of Faces reaching back over time.
    Some guidance and insight would be appreciated.  I have a number of Faces questions which I will save for later. 

    Bridge and Photoshop is a common file-based management system. (Not sure why you'd have used ACDSEE as well as Bridge.) In any event, it's on the way out. You won't be using it in 5 years time.
    Up to this the lack of processing power on your computer left no choice but to organise this way. But file based organisation is as sensible as organising a Shoe Warehouse based on the colour of the boxes. It's also ultimately data-destructive.
    Modern systems are Database driven. Files are managed, Images imported, virtual versions, lossless processing and unlimited editing are the way forward.
    For a Photographer Photoshop is overkill. It's an enormously powerful app, a staple of the Graphic Designers' trade. A Photographer uses maybe 15% to 20% of its capability.
    Apps like iPhoto, Lightroom, Aperture are the way forward - for photographers. There's the 20% of Photoshop that shooters actually use, coupled with management and lossless processing. Pop over to the Aperture or Lightroom forums (on the Adobe site) and one comment shows up over and over again... "Since I started using Aperture/ Lightroom I hardly ever use Photoshop any more..." and if there is a job that these apps can do, then the (much) cheaper Elements will do it.
    The change is not easy though, especially if you have a long-standing and well thought out filing system of your own. The first thing I would strongly advise is that you experiment before making any decisions. So I would create a Library, import 300 or 400 shots and play. You might as well do this in iPhoto to begin with - though if you’re a serious hobbyist or a Pro then you'll find yourself looking further afield pretty soon. iPhoto is good for the family snapper, taking shots at birthdays and sharing them with friends and family.
    Next: If you're going to successfully use these apps you need to make a leap: Your files are not your Photos.
    The illustration I use is as follows: In my iTunes Library I have a file called 'Let_it_Be_The_Beatles.mp3'. So what is that, exactly? It's not the song. The Beatles never wrote an mp3. They wrote a tune and lyrics. They recorded it and a copy of that recording is stored in the mp3 file. So the file is just a container for the recording. That container is designed in a specific way attuned to the characteristics and requirements of the data. Hence, mp3.
    Similarly, that Jpeg is not your photo, it's a container designed to hold that kind of data. iPhoto is all about the data and not about the container. So, regardless of where you choose to store the file, iPhoto will manage the photo, edit the photo, add metadata to the Photo but never touch the file. If you choose to export - unless you specifically choose to export the original - iPhoto will export the Photo into a new container - a new file containing the photo.
    When you process an image in iPhoto the file is never touched, instead your decisions are recorded in the database. When you view the image then the Master is presented with these decisions applied to it. That's why it's lossless. You can also have multiple versions and waste no disk space because they are all just listings in the database.
    These apps replace the Finder (File Browser) for managing your Photos. They become the Go-To app for anything to do with your photos. They replace Bridge too as they become a front-end for Photoshop.
    So, want to use a photo for something - Export it. Choose the format, size and quality you want and there it is. If you're emailing, uploading to websites then these apps have a "good enough for most things" version called the Preview - this will be missing some metadata.
    So it's a big change from a file-based to Photo-based management, from editing files to processing Photos and it's worth thinking it through before you decide.

  • Need help creating movies in Snapz Pro and then editing them in FCE

    I'm in the process of creating a series of training videos on a software application that will ultimatley be on a DVD accompanying a book. I'm trying to use SnapZ Pro to capture the video (with audio) and then edit the sound in FCE. I have no clue what settings to use in Snap Z Pro for the best quality and that will be compatible with FCE. I tried a few samples and used the Animation codec (and various audio compressions). The audio tract was fine in FCE when I listened to it alone, but jumpy with lost segments when combined with the video. I'd appreciate some ideas of what settings to use at every step of the process for best results.
    When I tried saving a segment using the Apple Intermediate codec in Snapz Pro, FCE repeatedly crashed when importing the file.
    Any help would be greatly appreciated!
    Thanks!

    FCE is a fixed resolution video editing application. It will only work in DV or HDV. 10fps is not a frame rate used by either of those. The material needs to be in a standard frame resolution and frame rate. The standard for DV is 720x480 at 29.97fps. If you capture at 10fps you're going to have to save the material using the DV NSTC codec, set the frame size to 720x480 and the frame rate to 29.97. You may have pixel aspect ratio issues requiring capture at 720x540, but I don't know enough about SnapzPro to know how that product handles frame resolution and frame rate conversion.

Maybe you are looking for

  • Streaming video in from Windows PCs?

    Hello all- I am buying a Mac mini, for use as a media PC. Ideally, what I'd like to do is set the mini up on my TV, and be able to use it to stream media from my rather extensive collection, located on 2 other PCs, one running Windows XP Pro, and one

  • ITunes 11.4 Crashing Mac OS X 10.6.8

    iTunes keeps crashing on mac....here is the most recent report...anyone know what is wrong? Process:    iTunes [35616] Path:       /Applications/iTunes.app/Contents/MacOS/iTunes Identifier: com.apple.iTunes Version:    11.4 (11.4) Build Info: iTunes-

  • Firefox will not maximize. Covers about 1/2 of my monitor and will not max, no matter what method I use. How do I correct this?

    My firefox screen is filling only about 1/2 my monitor screen. I cannot maximize it no matter what method I use (F11, manual click & drag on corner). I have rebooted; no change. == This happened == Just once or twice == I opened Firefox this morning.

  • Network scan not working

    I have a wrt54g-tm router and a Dell 1815dn multifunction networked printer. Before I was using a Netgear router and everything was working fine. Now I can print over the network (the 1815dn is plugged directly into the router via Ethernet) but I can

  • Anybody got the 500GB Hard Drive?

    Hi, I'm buying a 24" iMac shortly but i was wondering if there is any kind of performance hit by opting for the 500gb HD? I've heard of cases where bigger hard drives make machines run slower so i'd like some users experiences of the 24" imac with th