Inserting Images into Acrobat Pro Form And using java script calculation to change it

Hi,
I am trying to create a form witch shows text results bassed of tick boxes and I have managed to be able to do that but I need to have icons shown along side them based upon the result and I am not even sure how to input images in the first place.
I read somewhere that I have to use the content pane but I dont have it and it is not selectable in the view options.
Also the image I am trying to insert is .ai will it need to be .jpg or .png?
any help would be greatly aprectiated!
Thanks,
Bruce

That works the only thing is that when another one is selected it stays visible i have tried this
this.getField("Button1").display = event.target.value=="Off" ? display.hidden : display.visible;
this.getField("Button2").display = event.target.value=="On" ? display.hidden : display.visible;
this.getField("Button3").display = event.target.value=="On" ? display.hidden : display.visible;
this.getField("Button4").display = event.target.value=="On" ? display.hidden : display.visible;
and alternated them between which one needs to work but that didnt work either, any ideas?
Thanks,
Bruce

Similar Messages

  • Hello there! i am using Adobe acrobat pro DC and using windows 8.1. Recently I was trying to convert a web page (includes greek letters) into pdf. I noticed that the conversion is not accurate, some words are missing, some are misplaced. Especially greek

    hello there! i am using Adobe acrobat pro DC and using windows 8.1. Recently I was trying to convert a web page (includes Greek letters) into PDF. I noticed that the conversion is not accurate, some words are missing, some are misplaced. Especially Greek words are not accurately converted or even not converted. Please give me some suggestions to improve this issue. Regards

    Hey quantum info,
    Thank you for posting at Adobe forums. We would love to help you out.
    Could you please let me know if you have tried converting other web pages to PDF and checked if the same issue persists.
    How have you been trying to convert the web page to PDF?
    Are you trying to convert to PDF directly via browsers or using "File > Create > PDF from Web Page"  option in Acrobat.
    Let me know more so that I can analyze where actually the issue persists.
    Hope to hear from you.
    Regards,
    Anubha

  • Splitting a Flattened Image into Layers so I can use the Paint Bucket to change colors

    I have what I think is a flattened image that is part of a Website template. (I'm assuming the image is flattened, because when I use the paint bucket to change the color, it colors the whole thing; and when I use the magic wand, the whole image is selected). I need to be able to use the paint bucket to change the colors. What do I have to do to make the image work that way? The image is made to look like you're looking left to right at four file folders. The folder labels are a different color. Is there some way to separate the folders (now in green), the folder labels (now in yellow), and the white background from each other, so I can apply the paint bucket to different layers later? I've worked on this for hours now, and can't seem to find the answer. I'll have to change the colors in the image at least 10 different times, so I was hoping I wouldn't have to resort to using the brush or pencil tools.

    Darlene,
    Another way is to use the Replace Color Tool. The Hue/Saturation method is probably easier, but I thought I'd mention Replace Color for your information.
    http://www.pixentral.com/show.php?picture=18IBCKnJchzoxfLEaw7Bu93j9W5jS
    In my example I changed the 3rd label in your picture to red.
    1. Roughly select the label using the Lasso tools.
    2. Enchance>Adjust Color>Replace Color.
    3. Click on the label in the picture; it will appear in the box as white on black background. In general you would move the fuzziness slider until just the portion you wish to change appears white. In this case since the yellow is uniform with sharp border the fuzziness slider had minimal additional effect, but I did move it all the way right to capture the fringe pixels.
    4. Play with the 3 Transform sliders to get the desired result.
    In this next example I changed the top of the lighthouse from red to green (why I would want to do that, I don't know!).
    http://www.pixentral.com/show.php?picture=1XhqCAvgc0zVWReJDkUB2OLDQChSy
    Note that in this case I didn't have to move the fuzziness all the way right.

  • Creating order form and need Java Script to calculate unit price and quantity in Acrobat Pro.

    Hi,
    I am creating order form in Acrobat Pro , and I have
    code
    Order Quantity
    Unit price $
    201
    500
    $ 0.52
    201
    1000
    $ 0.36
    202
    300
    $ 0.26
    202
    500
    $ 0.2
    How make Subtotal and Total price with Java script.
    I do not know how to write java script.
    Anyone can help me?
    Thanks,

    Thanks for your response. I have 2 quantities and 2 Unit price for each code, I know a simple sum in calculation it works for 1 unit price and quantity.  Can you please let me know how to do it? One of the expert sent m this:
    //change field names as needed
    var qt1 = this.getField("qt1").value;
    var up1 = this.getField("up1").value;
    var qt2 = this.getField("qt2").value;
    var up2 = this.getField("up2").value;
    event.value = (qt1 * up1) + (qt2 * up2);
    I put this in total text field (calculation tab , Custom script) , but it  did not worked.
    I appreciate it if anyone can help or give me  suggestion.

  • Acrobat standard 9.0 error while enabling commets option using Java script object

    I'm using the below java script code in my VB 6.0 application for enabling commets options in the PDF file
    Dim oJSO As Object
    Set oJSO = mPDDoc.GetJSObject
    oJSO.Collab.showAnnotToolsWhenNoCollab = True
    It is working fine till Acrobat 8.0. Now I'm trying with Acrobat 9.0 standard edition, it is throwing scripting error 'An unhandled Win32 exception occured in Acrobat.exe[308].
    Can anyone suggest the way to enable 'comment' options in Acrobat Standard 9.0 using Java Script Object?
    Thanks

    I get much the same problem with VB6, Acrobat 9 Pro and WinXP SP3. When I single step the line:
    oJSO.Collab.showAnnotToolsWhenNoCollab = True
    in debug I go to the error handler for my Sub. Inspecting the VB Err object has Number = -2147417851 and Description = "Automation error
    The server threw an exception." I get a Microsoft crash notice about Acrobat a short while later.
    I've experimented with the JavaScript debugger in Acrobat and you can execute Collab.showAnnotToolsWhenNoCollab = True and reference the value of Collab.showAnnotToolsWhenNoCollab in the console. The problem appears only when accessing Acrobat Javascript through the Interapplication Communication API.
    If anyone can help it would be appreciated. I tried Adobe's Acrobat support and they were no help at all.

  • Inserting images into form.

    Hi, i am new to midlet programming.
    Can anybody help me in inserting images into forms.
    And how do we set a thumbnail view in a form.
    Thanks.

    Hello,
    use
    Image tmp = Image.CreateImage ("/com/...../t.jpg");
    Form f = new Form ("title here");
    f.append (tmp);
    //if u want to insert it after loading the form use
    f.insert (index,tmp);
    Good Luck,
    Rawad

  • Forms compatibility between Acrobat Pro 8 and Reader 9

    Hi everyone. I have a problem to resolve as quick as I can. I haven't find any answers yet, maybe someone will know what's going on with my forms.
    I'm working on a document made by another graphic designer, I can't reach this person. When I use his forms, it works in Acrobat Pro 8 and Reader 9, users can fill out forms and save a copy. BUT, I have to made a modification in the forms. I use the Touch Up tools in Acrobat Pro 8, made a copy, but this copy have a problem: users cannot fill forms and save a copy in Reader 9. They can only print the form and fill it by hand. I can't find any options to made my forms compatible with Reader 9 when I save the copy.
    Do you have any idea why the original forms of the guy works but not mine?? My client is a bit mad
    Thank you!
    Karine

    I am having a similar issue where I created a form and when I sent it to my team members (who only have reader) they are not able to fill in the form.  It is like a document for them.  I  have done the "extended rights" several times in trying to figure out what is going on and it is still not working.  Do you have any thoughts of what else I might try?  I am very new to this all and very confused and frustrated right now.
    Thanks!
    Mary

  • Insert image into a .pdf using InDesign

    Can I insert image into a .pdf using InDesign....

    You can place a PDF as an image in InDesign, then add more content and export a new PDF.
    There are also commercial plugins available that will allow you to open a PDF as editable objects in InDesign.

  • I purchased and downloaded Acrobat Pro XI and have installed it.  I want to create a reinstall disk should I ever need it.  I planned on using a DVD.  I'm running Win 7 Pro w/SP1.

    I purchased and downloaded Acrobat Pro XI and have installed it.  I want to create a reinstall disk should I ever need it.  I planned on using a DVD.  I'm running Win 7 Pro w/SP1.

    Hi halb10567672,
    You can download the setup file again from this Link (Download Acrobat products | Standard, Pro | XI, X ) and Burn it to a DVD Disc using Windows Explorer.
    Please revert back for any further query or assistance.
    Regards,
    Rahul

  • I purchased an annual subscription to Acrobat Pro XI and installed two days ago. I cannot open PDFs. I keep getting a dialogue box saying my trial has ended and asking if I want to buy the software. Was using Acrobat Pro 9 previously. It appears even that

    I purchased an annual subscription to Acrobat Pro XI and installed on my Mac two days ago. I cannot open PDFs. I keep getting a dialogue box saying my trial has ended and asking if I want to buy the software. Was using Acrobat Pro 9 previously. It appears even that won't open. SOS!

    Hi Margot ,
    You can click on accept or buy ,which ever option you see on that dialog box.It will prompt you to type in your Adobe Credentials.You can license it by doing the same.
    If it still doesn't work ,follow these steps and see how it goes .
    Delete all the files from following folders:
    [Home]/Library/Application Support/Adobe/SLStore
    [Home]/Library/Application Support/Adobe/SLCache
    And, delete all files from following folder except cache.db
    [Home]/Library/Application Support/Adobe/AdobePCD
    Then launch Acrobat and try to activate and check.
    Regards
    Sukrit Dhingra

  • I'm trying to delete multiple pix in iPhoto that i stupidly made duplicates of without knowing, I've tried going into the applications folder and using image capture but i think I've missed a step , can anyone send the correct info / steps pls thanks

    I'm trying to delete multiple pix in iPhoto that i stupidly made duplicates of without knowing, I've tried going into the applications folder and using image capture but i think I've missed a step , can anyone send the correct info / steps pls thanks

    again image capture is not involved with deleting photos from iPhoto in any way ever
    the paid version of iPhoto Library Manager is very good for finding duplicates as is Duplicate Annihilator
    And I have no idea who told you this - or what it means - but re-read both of my opening statements
    I was told I could delete multpiles thru image capture by transferring my iPhoto library etc
    LN

  • Help Please: White strips in printout using Illustrator CS5  Acrobat pro 9, and Adobe reader X

    Hallo,
    I have a big problem with printing PDF file using Illustrator CS5  Acrobat pro 9, and Adobe reader X , I get  a white strip in printout. if I convert the PDF file to JPEG I get normal printout. Thanks in advance
    OS: windows7 32 bit. 2 GB ram
    Printer: HP C6280

    Illustrator
    File > Save As > Adobe PDF

  • Can I download a trial version for acrobat pro 11, and then use purchased license to register it?

    as the title: can I download a trial version for acrobat pro 11, and then use purchased license to register it?

    You should find the licensing info and download at https://licensing.adobe.com/ then.

  • Acrobat Pro XI and ScanSnap iX500

    I use a ScanSnap iX500 on Mac running OS !0.10.2. The ScanSnap uses an ABBYY built-in ocr engine and it generates an excellent ocr layer. I can see the OCR layer in other apps and I know it is excellent. And other apps that handle pdfs (PDFpenPro and Skim) can word search the layer perfectly. Recently, however, Acrobat Pro XI cannot word search files scanned and ocr'd by the ScanSnap, even though the layer is complete and excellent. Does anyone know what is going on or how to fix this? I have re-installed Acrobat Pro XI and the ScanSnap software (including the ABBYY part) from scratch, and all software is fully updated. This is occurring on two Macs; it is not confined to one machine.    

    I'm having the exact same problem with both my Macbook Pro and my iMac 5k Retina. I was ready to return my ScanSnap iX500 thinking the OCR was broken but it's Acrobat that has the problem. My ScanSnap iX500 scans the document and I have the OCR setup correctly but both Adobe Acrobat Pro XI and the Adobe Reader barely pick up any of the OCR text in the document. Pure text documents seem to be OCR readable with Adobe Acrobat Pro XI but keyword searching  bills or bank statements or anything that the text is broken up into sections seems to be useless as most of the words don't show and are not searchable.
    I can see the that the documents are properly OCR searchable as Mac Yosemite will index all the keywords so I can find the document in finder but acrobat can't search them. I can also keyword search properly the documents using Macs built in Preview app.
    I've also tried OCR indexing the documents using the ScanSnap iX500's built in hardware, ABBYY Finereader express, Scansnap receipt, Searchable PDF converter but Acrobat won't properly keyword search any of them.
    The only solution I've found is to scan the documents with or without OCR then open Adobe Acrobat Pro XI and rescan the OCR again. You can do this on one document or a Batch of documents so you could fix all your PDF's overnight. After that then Adobe Acrobat Pro XI and Adobe Reader can OCR search the documents properly.
    Here's the solution I'm using until Adobe fixes Acrobat on the Mac. Just have Acrobat rescan the OCR and save the file to fix is. Instructions below:
    http://www.adobe.com/content/dam/Adobe/en/products/acrobat/pdfs/adobe-acrobat-xi-scan-pape r-to-pdf-and-apply-ocr-tutoria…
    Scan paper to PDF and apply OCR with Adobe® Acrobat® XI
    Scan and convert paper documents and forms to PDF. Make scanned text searchable automatically with optical character recognition (OCR), and then check and fix suspected errors.
    Scan to PDF
    Apply OCR to a scanned PDF document
    Open the PDF file.
    2. In Acrobat select View>Tools>TextRecognition. TheText Recognition panel in the Tools pane opens.
    3. Click In This File. Designate the desired pages and click OK. Acrobat applies OCR to the scanned document.

  • Inserting Image into a BLOB column in Oracle9i

    Hi,
    I am unable to insert image into a BLOB column. I am using Forms 6i REL 2 and Oracle 9i. But I could do it on Oracle 8i with same Forms version.
    Same thing is true for CLOB in 9i.
    Would you please try with this code?
    TABLE
    Create table x
    (Id number,
    Name CLOB,
    Pict BLOB);
    WHEN-BUTTON-PRESSED trigge
    declare
         x varchar2(265);
    begin
         x := get_file_name;
         read_image_file (x, 'GIF', 'picture.pict');
    end;
    Take care,
    Tarek

    Forms 9i and Oracle 9i work fine together for this case.

Maybe you are looking for

  • How to delete a DAC block inside a sub-block by using script?

    Hello, how can I delete a DAC block that's inside a sub-block diagram using a script? The command call SCHEMELOAD("xxx") call BlDel("yyy") only deletes blocks that are in the highest level of the actually loaded block diagram, not blocks that are in

  • Itunes wont open on my Mac

    My itunes icon in the dock will not open the program???  Help

  • How to raise an event from a program

    Hi, I am creating a workflow for HR, the person will request a basic pay change than, this will start the workflow. For this i am making a screen from where i need to triger the event for the workflow. Does anybody has any idea? of how to raise an ev

  • Regarding SAP SRM Inbox configuration

    Hello Guys, We are in the process of configuring the SRM workflow approvals in Portal. We made the basic mandatory configurations and we are able to see the workitems in the UWL. But unfortunately, we need configure the Inbox iView comes with the SAP

  • Google calendar as HTML snippet

    I'm trying to embed my Google calendar to my site. It worked once, and then suddenly it stopped working. Now when anyone visits my website they see only a "sign in to Google calendar" window instead of my personal calendar. I used an HTML snippet to