Create a PDF with Scroll ( content in scrollable:TXT and Pics)

How can I achieve this: I am working on a project where  the Document will be share in PDF format and  I need the whole content to be in a scrollable frame, so that the Top banner and Buttons below will show at all times.. the content should be scrollable (Photos and text)

1.  Create your document in Illustrator
2.  Do a "Save As PDF" out of Illustrator
3.  Open the PDF in Acrobat.
4.  Use the Form Tools to create you fields
5.  Save the Document in Acrobat
6.  Done.
You should be ready to distribute the PDF form now.

Similar Messages

  • Trying to create a pdf with jasper - Content is not allowed in prolog

    hi all,
    Im trying to create a pdf file with jasper reports but i get this error message:
    29/11/2007 16:52:03 org.apache.commons.digester.Digester fatalError
    SEVERE: Parse Fatal Error at line 1 column 1: Content is not allowed in prolog.
    org.xml.sax.SAXParseException: Content is not allowed in prolog.
         at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.createSAXParseException(ErrorHandlerWrapper.java:236)
         at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.fatalError(ErrorHandlerWrapper.java:215)
         at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(XMLErrorReporter.java:386)
         at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(XMLErrorReporter.java:316)
         at com.sun.org.apache.xerces.internal.impl.XMLScanner.reportFatalError(XMLScanner.java:1438)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentScannerImpl$PrologDispatcher.dispatch(XMLDocumentScannerImpl.java:899)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:368)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:834)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:764)
         at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:148)
         at com.sun.org.apache.xerces.internal.parsers.AbstractSAXParser.parse(AbstractSAXParser.java:1242)
         at org.apache.commons.digester.Digester.parse(Digester.java:1666)
         at net.sf.jasperreports.engine.xml.JRPrintXmlLoader.loadXML(JRPrintXmlLoader.java:151)
         at net.sf.jasperreports.engine.xml.JRPrintXmlLoader.load(JRPrintXmlLoader.java:103)
         at net.sf.jasperreports.view.JRViewer.loadReport(JRViewer.java:1376)
         at net.sf.jasperreports.view.JRViewer.<init>(JRViewer.java:243)
         at net.sf.jasperreports.view.JRViewer.<init>(JRViewer.java:214)
         at net.sf.jasperreports.view.JasperViewer.<init>(JasperViewer.java:140)
         at net.sf.jasperreports.view.JasperViewer.viewReport(JasperViewer.java:397)
         at net.sf.jasperreports.view.JasperViewer.viewReport(JasperViewer.java:328)
         at br.com.abril.contratos.Gerar.geraRelatorio(Gerar.java:38)
         at br.com.abril.contratos.Gerar.main(Gerar.java:47)

    cause of the error:
    After some extensive research on the web, it is found that that you are using an UTF-8 encoded file with byte-order mark (BOM). Java doesn't handle BOMs on UTF-8 files properly, making the three header bytes appear as being part of the document. UTF-8 files with BOMs are commonly generated by tools such as Window's Notepad. This is a known bug in Java, but it still needs fixing after almost 8 years...
    There are some hexadecimal character at the begining of the file, which is giving error"content not allowed in prolog". No solution is provided for this till now.
    Example: suppose your file start with <?xml version="1.0" encoding="utf-8"?>. you will see this in a editor. But if you open this file with any hexadecimal editor you will find some junk character in the start of the file.that is causing the problem
    solution:
    1) convert your file into a string and then read the file from the forst character that in my case the first character will be "<".so the junk character will not be there in the string and then again convert it into a file.
    2) some people are able to solve this problem by changing the "utf-8" to "utf-16". remember only in some case. some times this problem also exits in "utf-16" file.
    3) some are able to solve this problem by changing the LANG to US.en.
    4) If the first three bytes of the file have hexadecimal values EF BB BF then the file contains a BOM.so you can also handle by your own.
    5)Download a hexadecimal editor and remove the BOM.
    6) In case you are not able to think furthe then please to more research in internet may be you find some other solution to this problem. But These solution are some type of hack not exactly a solution.

  • How to create fillable PDF with dynamic content dropdowns?

    I'm creating a March Madness bracket for people that don't really understand how they work.  What I'd like to do is have dropdowns for each of bracket lines (they would list the teams playing against each other for that game and they would select who they think would win).  I would then like the dropdown for the next game to auto-populate with only the two options for the next round. 
    For example, team A and team B play against each other and teams C and D play against each other.  There are two separate dropdowns, one with A and B as choices and the other with C and D as choices.  The user thinks A and C will win their games, so the next dropdown would only have the options of selecting A and C.  To illustrate:
    AA and B are listed in the dropdown, and the user selects A to win.
    BA or C are listed in the dropdown because the user has selected A and C to win their previous games.
    CC and D are listed in the dropdown, and the user selects C to win.
    D
    I can make the first round dropdowns just fine, but I'm not sure how to conditionally/dynamically populate the second round dropdowns based off of user selections.

    I don't understand your request but my english is not the best.
    But here you can see a script. You can copy this in the first dropdown in the exit-event.
    In this example you will give the first dropdwon the entries
    "123"
    "345"
    "678"
    The first case describes what happens when the user clicks "123" the second drowdown will get the entries "456" and "789".
    When the user clicks "456" the second drowdown will get the entries "123" and "789".
    I think you can adapt this script as you need.
    Hope I could help a little bit,
    Mandy
    switch (xfa.event.newText)
        case "123":
            DropdownListe2.clearItems();
            DropdownListe2.addItem("Please select a value");
            DropdownListe2.addItem("456");
            DropdownListe2.addItem("789");
            DropdownListe2.selectedIndex = 0;
            break;
        case "456":
            DropdownListe2.clearItems();
            DropdownListe2.addItem("Please select a value");
            DropdownListe2.addItem("123");
            DropdownListe2.addItem("789");
            DropdownListe2.selectedIndex = 0;
            break;
        case "789":
            DropdownListe2.clearItems();
            DropdownListe2.addItem("Please select a value");
            DropdownListe2.addItem("123");
            DropdownListe2.addItem("456");
            DropdownListe2.selectedIndex = 0;
            break;
        default:
            break;

  • Is there a way to create a PDF form that ANYONE can fill out and SAVE with their content?

    Is there a way to create a PDF form that ANYONE can fill out and SAVE with their content? By anyone, I mean someone who can download and use the free Adobe Reader, on either a Mac or PC. I have Acrobat Pro, and would like to be able to create forms that can not only be filled out and printed, but saved and emailed, which is not an option with the forms I have created to date. They can be filled out, but not saved, with Adobe Reader.
    TIA,
    Nancy

    To do what Dave indicated you need to do, it depends on what version of Acrobat you have:
    Acrobat 8: Advanced > Enable Usage Rights in Adobe Reader
    Acrobat 9: Advanced > Extend Features in Adobe Reader
    Acrobat 10: File > Save As > Reader Extended PDF > Enable Additional Features
    Acrobat 11: File > Save as Other > Reader Extended PDF > Enable More Tools (includes form fill-in & save)
    I wonder what it will be next time?

  • Producing PDFs with 3D content on Mac OS X

    Hello everybody,
    Point 1: I am looking for the best workflow of producing PDFs with 3D content.
    Point 2: We are design studio that works entirely on Mac platform, so there is no chance of having Acrobat Pro Extended in the workflow. (Yes, of course, buying cheap Windows box or running XP on Intel-based Mac is an option, but I dont favour such a solution and will not go for it unless there will be no other way )
    The ultimate goal is as follows:
    Insert textured 3D object with transparent background into pre-made and designed PDF background file, place it so it seamlessly integrates with the background. Then optionally, add some interactivity like buttons for switching between design options etc.
    What have I achieved so far:
    1. I create textured 3D object with baked shading etc. in Blender.
    2. I export the data into Collada .dae file
    3. I import .dae file into meshlab
    4. From meshlab I export data into u3d - appart 3D file itself, it also creates .tex file which ...
    5. ... I open in TexShop (LaTex GUI frontend), where the 3D PDF is finally compiled and created.
    So, I can do 3D PDF file, but the object has white background and I cannot integrate it into design slide. Thats about it.
    Now the questions:
    Is there someone else trying to do the same stuff so we can share the ideas and knowledge?
    Where is the place to mess with the transparency? Is it to be set in .tex file? Can MacOSX version of Acrobat Pro help?
    Can we disable all lighting when displaying 3D file in PDF and use only shading form the 3D software that is baked into the textures?
    Ideas?
    Thank you,
    Petr Ludvik

    Dear Petr,
    Transparency - upload a minimal example of what you want (do it in Acrobat first).
    Consult PDF spec, MeshLab and Asymptote forums (Asymptote is a 3D drawing tool for LaTeX,
    people there know how to integrate 3D pictures into PDF LaTeX way).
    Light and textures - make the material for the surface to emit white color and set diffusive and specular colors to black.
    Like at http://www.iaas.msu.ru/tmp/u3d/cloudq.pdf.
    Ideas:
    Writing an U3D exporter for Blender is not harder than a VRML one. If you have Blender programming skills it may be a way to go.
    I can consult you, just made an U3D exporter for VTK.
    If your data comes not from Blender/MeshLab/LaTeX are not tools internal for your regular toolchain
    but just a ragtag converter for data that comes from your program - consider exporting directly to U3D
    (there is a text intermediate format, IDTF, that is relatively simple).
    Tell more about your toolchain in use, what is at the beginning (before Blender) and at the end (how you utilize the PDF with just 3D model in it).
                Sincerely, Michail
    PS. Other wording:
    Transparent background - is it doable in Acrobat?
    If yes - look into PDF and see how (what elements of what dictionaries are set),
    having PDF spec at your side.
    Upload a minimal example of a PDF file with desired features somewhere to allow me
    and others to have a look at it.
    Consult LaTeX sources of information to see if LaTeX with movie15 package is capable to do what you want
    (Asymptote forum may be the best place).
    If they do not - they may be fixed (movie15 is in active development) or a separate utility may be used.
    But first - show and, if possible, describe in technical terms what you want to achieve.
    As to lighting - make the material of the mesh you apply texture to to emit white light and
    set diffuse and specular colors to black.
    If you have programming skills and know Blender well - writing an U3D exporter for Blender
    must be not that hard, there is an intermediate simple text format.
    I can collaborate (have just made a VTK exporter).
    And that may be also an option - use VTK instead of Blender
    and you are almost there (well, me exporter does not have texture support now,
    but I can add it if there is someone to test).
    Did you ask this questions on a Meshlab forum?
    If your data comes from your own program - it may be simpler to write
    into U3D immediately (via that text intermediate format, IDTF).

  • Creating a .pdf with different page views

    I'm tyring to create a .pdf with different page views.  For example as the viewer goes through the .pdf some pages I would like viewed as "single page view" and others "two page view".  Is this possible?   I'm working with Adobe Acrobate Pro.  Thanks for any suggestions.

    It's possible to use the Page Open actions to trigger a view mode change but it's messy - if the user tries to override them because they prefer to zoom in, etc. then they'll get very annoyed when things keep resetting.
    To create a Page Open action, open the thumbnails panel, right-click on a page, choose Page Properties, then the Actions tab. You can use the Execute a Menu Item tool to fire one of the view modes.

  • When I create a PDF with Adobe Reader XI, it wont take the links behind the images. Sometimes he does, mostly not.. Whats the solution? The links in text do work!

    When I create a PDF with Adobe Reader XI, it wont take the links behind the images. Sometimes he does, mostly not.. Whats the solution? The links in text do work!

    Hello,
    How can I give a answer back in the discussion on Adobe.com?
    I don’t see any link?
    1.      We have a subscription.
    2.      Im converting a newsletter from the web to PDF.
    3.      Sometimes I put a weblink behind the image in the newsletter. Most of the time PDF wont take the links behind the image.
    Only the tekstlinks are OK.
    [private data removed]

  • I am having problems interacting with Microsoft Office programs since the last update:cannot create a pdf through the 'print' menu in exel and both Word and Exel docs sent in Mac Mail end up being received as .dat files.

    I am having problems interacting with Microsoft Office programs since the last update:cannot create a pdf through the 'print' menu in exel and both Word and Exel docs sent in Mac Mail end up being received as .dat files.
    Both these situations have cropped up on my MacBook Pro since the last update.
    Thanks for your help.
    Cheers
    Bob

    The 'Winmail.dat' problem has been extensively covered in these forums, I would search for that (a Google search works well) and unfortunately I have not seen the pdf print problem before, but assuming the software is current and functions normally (other than the pdf print problem) I have no suggestion other than the obvious (but time consuming) re-installation of Office.
    I wish I had more

  • Create a Pdf with a job...

    Hi!
    A very simple question!
    I have to create 9.000 pdf every month, with data present on db.
    I don't want to press a button to create every pdf.
    Especially, I can't keep busy the Client for all the execution.
    I need to schedule this work, in every way.
    Possibly, I don't want to install Report Designer on the server. But Report designer is installed on Client.
    I need something like to schedule in a job the "Run product" command... but withouth the product!!!
    Is it possible?
    I accept also something of different, like to schedule in windows, but.... it has to be free. Totally free.
    I know how to create a pdf with reports designer, but it has to be batch and the Client has to work normally.
    Server
    System: Windows 2003
    Database: Oracle 10g
    Development
    Forms Designer: 4.5.10.6.0 (yes, I know: it is very old!)
    Reports Designer: 2.5.7.4.3 (yes, I know: it is older!)
    Thank you from Italy,
    Margherita

    It's doable using a windows/Unix/Linux scheduler running the report as a batch.
    You may find your version's help text. Here goes the 6i's....
    To run a report using a command file:
    1     Create a text file using a word processor of your choice.
    2     Type ORACLE_HOME\BIN\RWRUN60, followed by the report name and desired arguments.
    3     If you ran the report in batch mode, and sent the output to a file (DESTYPE=FILE DESNAME=filename BATCH=YES), open or print the file to verify the output.

  • How to create a PDF form which can be filled out and saved with change by end user

    I am using Acrobat 8.0 - Mac - and want to create a PDF with text form fields. Simple one page file. The end user needs to be able to fill out the text form fields and SAVE those changes. so far they can fill out the fields but can not save the file with changes.
    Thanks

    Sandee Cohen wrote:
    Phillip Jones said:
    After the uproar from Users about Standard being little more than Apple's Print to PDF; there hasn't been a Standard version for Mac since version 6. So many people were use the features in Acrobat 5  to create Forms that could be filled out by Reader. when the bought 6 Standard they were ready to hang the CEO of Adobe in effigy. When 7 came out is was Pro only.
    I'm confused.
    The current version of Acrobat comes in Standard, Pro, and Extended Pro versions. Only the Pro version is on the Mac. But that doesn't mean that the Mac community wouldn't have wanted the Standard version of Acrobat.
    The Standard version is hardly a mimic of Apple's Save to PDF. The most important features of Standard is to enable Rights in Reader as well as add comments, form fields. etc.
    The only thing that Standard does do are the pre-press and production features of Pro.
    However, given the difference in price ($450 vs. $300) there is ample reason for business on the Mac OS to buy Standard--if they could buy it.
    I didn't say PC users.
    I should have said Mac users. Because the Print system and sytem by which Mac users view anything is based on the PDF engine. The Mac sytem can do anything Standard Standrd could do. although in order to placate Adobe the pdf engine used is a version or two behind. If the Mac OS could do everything Acrobat could do there would be no reason for Adobe to provide Acrobat Or Reader for Mac.
    And you basing your assumption of what Standard can do a PC. Standard on Mac is basically Mac's Print to PDF  wrapped in an Adobe Package. It shad no ability to confer rights to reader (that didn't come to Acrobat Mac until Version 8) and was unable to to create forms. The current version of Acrobat PC comes as Standard, Pro, And extended. There never has and never will be an extended pro version for Mac (that adds the ability to create XML based forms) They don't have the interest. To adobe is little more than a Play toy. Because Windows has so much clout They can dictate what they want. Apple not so much. One advantage Mac does have is that Forms creator is built in. on PC its an adon (it free but an addon or was).
    Now back in OS 9 days and Acrobat 5.x Acrobat for Mac and PC were equal. except to have the print press features Mac users had to pay an addition $200.00.  (It exactly as you described in your last sentence - except Acrobat 5.x without the printpress and The Acrobat 5 without Print press was $299.00 and $499.00 with Print press.) I know I've used Acrobat since version 3.

  • How to create a pdf with the correct size?

    Hi there
    How do I create a pdf with the correct size? I created several albums and ordered them. Now I want to backup the album and I know how to create a pdf, but when I choose A5 it's to big, when I create my own size it's not the size it should be. The original (made with iphoto) is a small size album 200x150mm. But when I create my own size (200x150) it shows some white borders.
    Does anybody have some tips ore workarounds?
    Yuri
    Imac
    Iphoto 11 (9.4.2)

    Books are designed for and printed on 8.5 x 11 inch stock, US Letter size.  You shouldn't have to select any size.  While viewing the All Pages mode in the book Control-Click on the page and select Save Book as PDF from the contextual menu. 
    That will create a PDF that iPhoto uses to upload and print.  Not all pages will be the same size as the dust jacket will be present in it's full size, 32.8 inches x 8.91 inches:
    If you want a PDF that's designed for your own printing the type Command+P while viewing the All Pages window.  In the first print window click on the PDF button.  It will present you with a contextual menu where you should select Save as PDF.  That will give you an 8.5 x 11 PDF file with all pages the same size.
    OT

  • Convert PDF with  Arabic  content to word /Excel .

    I have problem , I plan to buy Adobe acrobat  pro  for my ORG , The main target to buy it , to convert PDF a Arabic  content to word or Excel , I download trial version from Adobe acrobat pro  , and when i convert PDF English content  it's fine , but when i  convert PDF with Arabic content  , the result is bad the  word become letters and  the documents become not readable , Pleas  help me cause the main  target is convert Arabic PDF to Word .
    " the mean problem is  when i convert PDF with Arabic content to word the result is bad the   document become unreadable .
    thanks , wait for replay.

    HI,
    Adobe Acrobat is a special PDF viewer which is technically develop for the whole world to read any PDF file which a user wants to read. It's basic languages are:
    English (US)
    English (UK)
    Arabic
    Italian
    Japanese
    Spanish
    German
    But when you going to export the PDF file the arabic language will not support.
    Regards,
    Florence

  • I have created a PDF with mp3 audio clips, the file works on PC's with audio playback (WIndows 7, 8 ) however the audio does not play when hosted on a website or an ipad/tablet computer or smart phone when used with PDF reader

    I have created a PDF with mp3 audio clips, the file works on PC's with audio playback (WIndows 7, 8 ) however the audio does not play when hosted on a website or an ipad/tablet computer or smart phone when used with PDF reader

    adobe42135678 wrote:
    the audio does not play when hosted on a website...
    When viewing in what browser?

  • How to create PDF with Form Builder (T-Code:SPF) and how to use it?

    How to create PDF with Form Builder (T-Code:SPF) and how to use it? Is there anyone can show me some doc. or PA material ? << removed >>  Thank you very much!!
    Edited by: Rob Burbank on Nov 11, 2010 1:04 PM

    PDF forms also known as Adobe From or Interactive Forms.
    Check this link -
    Interactive Forms
    REG:ADOBE FORM
    Adobe forms
    Regards,
    Amit

  • How do I create a PDF with a resolution of 300 or 600? Where is the control in X Pro?

    How do I create a PDF with a resolution of 300 or 600? Where is the control in X Pro?

    You change the PDF Maker conversion settings or PDF printer conversion settings.
    PDF Maker Conversion Settings.
    Open any office application, click on "Acrobat" in ribbon.
    Click on "Preferences".
    Click on "Advanced Settings".
    Now, you can change the resolution as per your requirement.
    PDF Printer Conversion Settings.
    Click on File -> Print
    Select "Adobe PDF Printer".
    Click on "Printer Properties".
    For more details, please refer to http://help.adobe.com/en_US/acrobat/pro/using/WS58a04a822e3e50102bd615109794195ff-7f0f.w.h tml
    Let me know, if you need more information.
    Regards,
    Deepak

Maybe you are looking for