Adobe LiveCycle and Graphics

Hi all.  I have a form that I'm creating, that has an area in it called "Sketch."  The size is  2 x 6.75.  In this area, the user needs to be able to insert a graphic or a picture.  I've never set up a form this way before, so I am wondering what kind of field would I use for this?  (i.e., text field, signature field, etc) and how does it work?
Thanks much for your help.
Connie

Use an image field

Similar Messages

  • Hi - I created a form in Adobe Livecycle and have a button on it to send the form via email.  t worked, but only for those with PC.  I could not get it to work with Apple Yosemite even with reader installed .  is there a way i can make it work for apple /

    Hi - I created a form in Adobe Livecycle and have a button on it to send the form via email. It worked, but only for those with PC. However,  I could not get it to work with Apple loaded with Yosemite even with reader installed .  Is there a way i can make it work for apple / Mac? It worked fine on a mac using Mountain Lion and reader
    Thanks

    LiveCycle = XFA forms.
    afaik - These cannot be used in Apple OSs.
    Be well...

  • Hi - I created a form in Adobe Livecycle and have a button on it to send the form via email.  the button did not work and i looked online and saw where you could change it to a regular button and enter the email for it to go.  it worked, but only for thos

    Hi - I created a form in Adobe Livecycle and have a button on it to send the form via email.  the button did not work and i looked online and saw where you could change it to a regular button and enter the email for it to go.  it worked, but only for those with adobe pro.  i could not get it to work with reader.  is there a way i can make it work for reader?

    Noted.
    The LiveCycle user to user forum is across town at:
    Adobe LiveCycle 
    Be well...

  • How to invoke PEGA Rules Service from Adobe LiveCycle and vice versa

    Hi,
    I have new requirement..... I have to invoke pega service from livecycle....
    Do we have any interface to integrate these 2 tools?
    Pls help me out on this
    Its Urgent...
    Regards-Sekhar

    In this case the LiveCycle services are exposed as web services that can be consumed by any application language that can interact with web services. While the sample published are for c# and Java there is no reason that other web service aware languages (C++, Perl, etc) wouldn't work.
    I'm not a Microsoft C++ expert, but as far as I understand all you need to do is create a web reference and then have your C++ classes interact via the generated proxy classes. The syntax will be different, but the concept is the same

  • Adobe Livecycle and SQL Server Conditional Dropdowns

    Hello All,
    I am trying to figure it out but have a little difficulty.
    I have two dropdowns connected to a SQL database (for this purpose DD1 and DD2). I need to be able to make the dropdowns conditional.
    Example:
    SQL DB
    Fruit | Color
    Apple | Green
    Apple | Red
    Apple | Purple
    Apple | White
    Plum | Purple
    Plum | Light Purple
    Plum | Black
    DD1 will ask what the fruit will be. DD2 will ask the color depending on DD1.

    Hi Dang_Randy,
    Doing the following might help.
    1) On the enter/initialize event of DD1, call a servlet that fetches all the fruits. Split and add the fruit items to DD1.
    2) Once the fruit is selected from DD1, on the exit or change event of DD1, call another servlet (pass fruit selected in DD1) that fetches the colors of the fruit.
    Hope this helps.
    Thanks,
    VJ

  • Updating Tag Name using Adobe Professional for PDF form created with Tags in Adobe Livecycl Designer

    I have created a form using Adobe Livecycle Designer. These PDF forms have Tags on them when created and generted from Adobe livecycle designer.
    I am able to open the PDF form in the Adobe Profesional 9.0.
    I want to edit / Update the Tags on the PDF form using Adobe Professional 9.0. I am not seeing any option to view the Tags on the forms so that I can edit it while I have open the PDF in the Adobe Professional. The PDF document was created in Adobe Livecycle Designer 9.0
    Please let me know how can I edit the Tags on a PDF form using Adobe Professional for a Form that was created using Adobe livecycle and tags added.
    Thanks,
    Siva.

    Edit the tags in Adobe Livecycle Designer.

  • Read/write xml data from/to adobe livecycle forms (pdf)

    Hello,
    I need some help reading xml data from pdfs created by Adobe LiveCycle and also writing xml data back to the form.
    The forms have been created using PROD LC 8.2 and in the future they will be created using PROD LC 9.5.
    I am using Visual Basic .NET to access the data programatically.
    Can anyone help me with some hints? A library, SDK? Any information would be very helpful.
    I am quite new with this Electronic Forms issue and I do not even know where to start.
    Thank you,
    Ionel

    Hi lonel,
    Do you want an online solution?
    I mean, it follows this workflow:
    1. The user will open the PDF by clicking a link, and a server-side program will generate the PDF and prepopulate it with data from some data sources, and render the PDF to the client (Browser),
    2. The user will fill the PDF.
    3. The user will click a Submit button and save the PDF and Data on the server.
    4. If the user wants to edit the Submitted Form, he will click a link to open the save PDF and possibly prepopulate some fields with data from other data sources, and complete the cycle of filling and saved the PDF and Data on the server.
    5. While the user is filling the PDF (inside a Browser), there might be a need to perform some lookup on the server, and update the form parts accordingly as a result of the lookup process.
    For 1-4 above, I have developed a complete base library using ASP.NET which helps you to perform the above.
    You can goto my Google Workspace and you will find a bunch of documents, sample PDFs, collections and VB Classes. To best view them, login using some Google Account.
    For point 4 above, one way to perform this effect, is to regenerate the required XML Data (which has the saved data before and the new lookup data), remerge the entire XML result with and empty PDF Form, and render the XFA (PDF Form) back to the client. But, if the PDF has one or more signatures, it will not work. So, in this case, you can update the Form Fields of a Saved PDF Form with new Data from the server, but the net effect is that you will have to loose all the signatures that were added on the PDF before.
    For 5 (above) there are 3 methods:
    1. Using a Web Service as a Data Connection. This is very easy if you have a traditional Web Service. I have used this method several times and will use it again if the need be. But, there is a problem. If the result of the Web Service is an Array of some Data, and you want to remerge the XFA to get the required effect after executing the web service ... and ... if there are some Drop-Down-List (DDL) fields, the bindings of the DDL Items of those fields will be lost. But, you can rebuild them (on enter event of the DDL Field)  if you have saved them in the embedded XML Data.
    2. You can update few (not many) fields while the PDF is opened (under the Browser via IFRAME) by passing the new field values using the URL Query String method. I have not done this, but I like this method, and I think it is cool. You need to write a server side code to ensure the the new filed values are passed back to the client using the correct URL with the Query String, and you need to write some javascript code inside the PDF to parse the URL and get the new field values and update them accordingly. See this as an example:
    http://www.halnesbitt.com/pages/pdfqs.php
    3. This method is very advanced and uses message communication ques between the Browser and the PDF (which is opened inside IFRAME element) using HostContainer object. This method will enable 2-way communication between the Browser and the PDF on the client side using javascript. I'd love to use this method one day. See example here:
    http://www.windjack.com/WindJack/Browser2PDF/brwsr2acroJS.htm
    I hope this will be of help to you.
    Tarek.

  • Siebel Integration with Adobe LiveCycle through Web Services

    I am new to Adobe LiveCycle and I have very little knowledge in Adobe LiveCycle. What we are planning is to send a PDF from Siebel to Adobe LiveCycle and that should extract the data from PDF and return the data back to Siebel. I think this can be done through Web Services. If anyone has any idea, kindly let me know.
    thanks

    I am not sure why you need to send a PDF form from Siebel to a LiveCycle ES server-side process, to have LiveCycle send data back to Siebel, when the data came from Siebel in the first place. It is more typical that applications send data to LiveCycle to have the data merged with a form template to render PDF.
    Regardless, there are a variety of solutions depending upon your solution requirements, business requirements, infrastructure, client-server preferences, security requirements, etcetera, to do what you are seeking. LiveCycle ES processes expose endpoints to consume data from a variety of protocols and formats, including SOAP, EJB (RMI), email, LiveCycle remoting (for Flex clients), and watched folders.
    A solution could be as simple as dropping an XDP-based PDF into a network folder, the PDF would be consumed by LiveCycle, a process extracts the data from the PDF, and a Web Service pushes the data back to Siebel.
    Steve

  • Does anybody know how to get the license for Adobe LiveCycle if i dont have the installation disk?

    Hi,
    I no longer have the installation disk for Adobe LiveCycle and i need to install it onto a different PC due to upgrading hardware etc... Does anybody know how to recover the licence for the version of Adobe LiveCycle we have? Can it be found in the registry or anything?
    Thanks.

    Sorry, but Apple does not provide technical support via email, so they have no published email addresses. You will need to find a way to call them. Or make an appointment with the Genius Bar at an Apple Store, if there are any near you, and have them follow up.
    Regards.

  • I've got a MacBook pro 15' running 10.6.6. I want to use an external monitor for my graphic design work running Adobe software and thought I'd try an HD TV. I ran a Mini Display to HDMI lead to the TV but the picture quality was disappointing.

    I've got a MacBook Pro 15' running 10.6.6. I want to use an external monitor for my graphic design work using Adobe software and thought I'd try an HD TV. I ran a Mini Display to HDMI lead to the TV but the picture quality was disappointing. I also tried a Mini Display to VGA lead and that wasn't much better. I tried all variations of resolutions in System prefs - Displays but nothing helped. Am I getting something wrong? Thanks all.

    In addition to pixel density, you are up against the translation driver card in the TV.
    If you read the fine print of computer-resolution-capability in the TV user guide, you will see a chart as tall as the manual page.  At the top is the smallest resolution capable, at the bottom is the full use of the 1080p in the TV.
    Mac falls into the top 25% of the page, maxing out at 1366x768 often.  This is because the TV control card is expected to do too much of the work, but is not designed for computer-monitor processing.
    I looked at the resolution charts on 2 TVs before deciding to buy a 1080p LCD monitor that has a TV interface/connector.  Computer monitor first, TV second.  But the thing is only 27 in.  Good thing TV is not as important to me as it is to others.

  • Forms pulling Multiple Records from an XML Schema and XML data files - Adobe LiveCycle Designer

    I built a form in Adobe LiveCycle with an xml schema and data file.  The problem is with how the form renders the xml data file.
    I have a statement element that consists of about 6 fields (statementID, statementName, statementAddress, statementCountry, statementZip, statementDate, etc) of data in the schema that allows for multiple iterations - so one xml data file can contain multiple statements. These fields allow for null values.
    But here's the problem:  When any of the statements - say statement 2 of 6 - has a null value in one of the fields, if the xml data file doesn't have a placeholder
    (example of placeholder:  <statementName type="String"/>   )in the xml for that field, my form pulls the field value from the NEXT statement.
    This corrupts all the rest of the statement records, as this field is shifted up for all the rest.
    I know that in the past I haven't needed a placeholder when a field was null. But I'm wondering if when the data allows for multiple records the xml data file needs to generate the placeholder.  And where is the problem? In the Schema? The xml data file? My form?  And the 64-thousand-dollar question:  How to fix it?

    If your <statement> element is the one that repeats, it should be bound to a subform with the binding string of something like $.statement[*]. Then in that subform should be your fields and they should have bindings of $.statementID, $.statementName, $.statementAddress, etc.
    Kyle

  • I have Adobe LiveCycle installed on my computer, and I am upgrading my computer, how do I install LiveCycle on my new computer so I can enter in my product key?

    I have Adobe LiveCycle installed on my computer, and I am upgrading my computer, how do I install LiveCycle on my new computer so I can enter in my product key?

    Live Cycle installation doesn't require any product key.

  • Adobe LiveCycle Designer ES and Adobe Acrobat 9 Pro

    I recently purchased Adobe Acrobat 9 Pro, it came with Adobe LiveCycle Designer ES.  When I create a new document with Acrobat 9, it takes me right into LiveCycle for the design, which I do not mind.  However, the properties for each field are very limited in comparaison with Acrobat 9.  So, the file I create with LiveCycle I want to be able to open again with Acrobat 9 and reach the field properties with Acrobat 9, but the system does not allow me to do that.  What am I doing wrong?
    Anne-Marie

    To force uppercase, enter the following in the change event as JavaScript (make sure JavaScipt is selected in the language dropdown list at the top right):
    xfa.event.change = xfa.event.change.toUpperCase();
    As you can see in the picture, there are many palettes available on the right side to edit fields. Hope this helps.

  • How do I add video in my Photoshop images and graphics? I need it to play in Adobe Acrobat when I'm done.

    I designed an electronic press kit and I need the video to play on it. I'm getting the video link from YouTube so I was wondering how to make that happen. I already tried putting the YouTube link behind the video layer so it can be clickable in Acrobat, but when I sent it to the online magazine forum there was a lot of lines in it. I saw this YouTube video on how to do it but it requires ImageReady TUTORIAL-Add video to your Photoshop images and graphics! - YouTube. I don't have the Photoshop to ImageReady button in my PS....HELP! How do I get this done?!?!?

    That tutorial is extremely old. ImageReady was last used in CS2. In other words that program no longer exists.
    Luckily video made its way into photoshop so you can easily import your video into photoshop.
    Instead of an animation panel, it is now called the timeline panel. When the panel first opens it will ask you if you want an animation or a movie. Choosing movie will reduce the number of layers required down to just 2, one for the movie and one for the TV image. Since this is a timeline, you can split the timeline to remove any portion of the video you do not want or need to add an effect to that area of the timeline. Each time you split the video, it will move it to a new layer for you.
    You can still export as an animated gif by using the File>Save As dialog box. or You can export as a movie and choose another video format. Which format and codec you can choose will depend on how many other video apps of Adobe's you also have installed.

  • How to crop pages using Adobe LiveCycle ES2 PDF Generator and Acrobat 9.2 Pro Extended

    Hi all,
    I'm evaluating the possibilities of Adobe LiveCycle ES2.0 PDF Generator in order to convert on the fly (programmatically) MS Office Documents and Visio drawings into PDF files.
    I'm able to trigger this process using the Webservices API (from within C#). However when generating the PDF files in this way, each and every PDF file has a lot of white margins around it as it is generated as an 8x11 inch page.
    I have been looking in ways to crop these white margins from around the information, so that the PDF content is only showing the actual content (in order to be used as an image).
    I found a way of doing this manually by opening the generated PDF file of LiveCycle in Acrobat 9.2 Pro Extended and using the Document > Crop Pages... option.
    So my question is: Can this be done programmatically using Adobe LiveCycle ES (and/or API functions of the Acrobat tool).
    The envisioned solution would run on a server (without interaction/monitoring requirements by a human).
    Any input about this is highly appreciated.
    Kind Regards,
    Raf
    Raf Snijders

    Hi all,
    I'm evaluating the possibilities of Adobe LiveCycle ES2.0 PDF Generator in order to convert on the fly (programmatically) MS Office Documents and Visio drawings into PDF files.
    I'm able to trigger this process using the Webservices API (from within C#). However when generating the PDF files in this way, each and every PDF file has a lot of white margins around it as it is generated as an 8x11 inch page.
    I have been looking in ways to crop these white margins from around the information, so that the PDF content is only showing the actual content (in order to be used as an image).
    I found a way of doing this manually by opening the generated PDF file of LiveCycle in Acrobat 9.2 Pro Extended and using the Document > Crop Pages... option.
    So my question is: Can this be done programmatically using Adobe LiveCycle ES (and/or API functions of the Acrobat tool).
    The envisioned solution would run on a server (without interaction/monitoring requirements by a human).
    Any input about this is highly appreciated.
    Kind Regards,
    Raf
    Raf Snijders

Maybe you are looking for

  • How do I use an external monitor with 21.5 inch iMac?

    I have a brand new 21.5 inch iMac and am trying to hook it up with an older 20 inch Mac cinema via Thunderport. Do I need a special cable. I saw none at my local Apple store. or will it work at all?

  • F4IF_INT_TABLE_VALUE_REQUEST Functionality

    Hello all, How can I return more then one value using the FM F4IF_INT_TABLE_VALUE_REQUEST. Example: Parameters: pernr TYPE pa0001-pernr, sname TYPE pa0001-sname. When I click "F4" inside the field (parameter) pernr, the following list is showed... Nu

  • How can I make the web server work on port 80 and not 443. I can only access my website using https.

    On a Mac Mini server with OS X Lion 10.7.2, I am unalbe to get the web server working on port 80. It switches automatically to port 443 (https). This situation complicates the access to FileMaker Web publishing, as I don't want my clients having to u

  • Opening Documents in Word Crashes the Server

    I posted this in the "Using OS X" forum, since I didn't believe the problem to be OS X Server-specific, but haven't received any response at all. So If no one objects, I'm going to give it a try here: I'm running OSX Server 10.4.11 (none of the other

  • Calling a servlets multiple times from a servlet

    Hi All, Advanced Thanks, I have a servlet which calls another servlet to display some records. Second servlet will access some data from XML files and forwards to a JSP file. What i want is I need to call the second servlet multiple times from the th