Insert a pdf in a app

Hi,
We want insert a pdf in a app. We have a inhouse developper apple.
We try to import htmlresources.zip in folio producer.
When we creeat the app, we have a blank page.
We see the forum about pdf but nothing is right for us.
Do you know a solution?
Thanks a lot
David

See this example. Let us know if it doesn't work.
http://contentviewer.adobe.com/s/DPS%20Tips/7f80a0ffed3a4ff08734bc905aac4a29/DPS%20Advance d%20Overlays/23_PDF_Links.html

Similar Messages

  • In Dreamweaver CS5 How do I insert a PDF?

    I am designing a site using Dreamweaver CS5 & trying to insert a PDF.  I use a MacIntosh computer, OS 10.6.8, my boss uses a PC.  We thought turning some of his files into PDF's would help since I can't find converters to convert his files into compatible files for the software I have.  I can view the PDF's easily on my computer, so this should be able to be done easily, right? 
    I was trying to just create a new page with html.  I thought perhaps I could just insert the PDF as an image, but no, that does not work.  This is probably simple, I just don't know how to do it.  If you know, I would so appreciate your help.

    PDF is media.  It needs browser plug-ins and helper apps (Acrobat) to open & view it. 
    If all you need are images, you should do some screengrabs of the PDF while it's open in Acrobat. And then edit the screengrabs in your favorite image editor (Photoshop). Save for web as jpg.
    The simplest way to add PDFs to web pages is to provide a direct link to the PDF file so it can be downloaded and launched in whatever manner the end user's computer settings provide for.  This varies quite a bit from user-to-user.
    Nancy O.

  • How to insert a pdf file in an outgoing email

    Looking for assistance, on how do you insert a pdf file in an outgoing email on iphone5, I have adobe and dropbox I can open a pdf file and send it from their respective apps but when I create a new email or reply or forward I want to be able to go get the pdf file and attach it to the email. Have not been able to find how to do this.
    Regards,
    Frank

    Thanks for responding. For my work I have manuals, certifications or other regulatory docs that I have uploaded either to dropbox or adobe reader apps on my phone because I travel I find more often that I get request for these documents on an email chain and need to add a pdf to it. It seems I have to start a new email from the app the pdf is in as you stated. This defeats the purpose of responding or forwarding. very frustrating and not very professional. Is their an app out there that may help with this situation.

  • IMac. Adobe Acrobat Pro 8.3.1. Since I installed Yosemite, cannot insert a pdf document into a pdf document. What's my upgrade?

    I have an iMac with Yosemite. I have Adobe Acrobat Pro van 8.3.1.
    I am unable to insert a pdf document into a  pdf document. I go to Document/Insert in the menu bar, get a spinning ball, can do nothing with the app except force-quit.
    What's my upgrade? I cannot find one. Do I have to pay full price for a version that will work?

    Your version of Acrobat is quite old and not compatible with any current OS, so problems are to be expected. It is too old to qualify for an upgrade as well, so if you want the current version (XI) then you need to purchase a new license, which you can do via the Adobe Products Page.

  • Download PDF file from APP server!

    Hi!
    Has anyone tried uplaoding and downloding a PDF table from app server as I tried from a normal method by Open dataset, Transfer but it wont work.
    Please provide any inputs.
    Thanks.

    Hi park,
    1. Using open data set, transfer , close etc,
       also it will work.
       ( it will download / upload any kind of file from app server)
    2. Just make sure the
       FULL PATHNAME and the FILENAME
       are mentioned in EXACT CASE
      (small/CAPITAL).
    3. U can check thru transaction AL11, to see the file and path.
    regards,
    amit m.

  • How to create a table with datatype blob and insert a pdf file (ravi)

    how to create a table with datatype blob and insert a pdf file,
    give me the explain asap
    1.create the table?
    2.insert the pdffiles into tables?
    3.how to view the files?
    Thanks & Regards
    ravikumar.k
    Edited by: 895044 on Dec 5, 2011 2:55 AM

    895044 wrote:
    how to create a table with datatype blob and insert a pdf file,
    give me the explain asapPerhaps you should read...
    {message:id=9360002}
    especially point 2.
    We're not just sitting here waiting to answer your question as quickly as possible for you.

  • How to insert a pdf or jpeg image into a blob column of a table

    How to insert a pdf or jpeg image into a blob column of a table

    Hi,
    Try This
    Loading an image into a BLOB column and displaying it via OAS
    The steps are as follows:
    Step 1.
    Create a table to store the blobs:
    create table blobs
    ( id varchar2(255),
    blob_col blob
    Step 2.
    Create a logical directory in the database to the physical file system:
    create or replace directory MY_FILES as 'c:\images';
    Step 3.
    Create a procedure to load the blobs from the file system using the logical
    directory. The gif "aria.gif" must exist in c:\images.
    create or replace procedure insert_img as
    f_lob bfile;
    b_lob blob;
    begin
    insert into blobs values ( 'MyGif', empty_blob() )
    return blob_col into b_lob;
    f_lob := bfilename( 'MY_FILES', 'aria.gif' );
    dbms_lob.fileopen(f_lob, dbms_lob.file_readonly);
    dbms_lob.loadfromfile( b_lob, f_lob, dbms_lob.getlength(f_lob) );
    dbms_lob.fileclose(f_lob);
    commit;
    end;
    Step 4.
    Create a procedure that is called via Oracle Application Server to display the
    image.
    create or replace procedure get_img as
    vblob blob;
    buffer raw(32000);
    buffer_size integer := 32000;
    offset integer := 1;
    length number;
    begin
    owa_util.mime_header('image/gif');
    select blob_col into vblob from blobs where id = 'MyGif';
    length := dbms_lob.getlength(vblob);
    while offset < length loop
    dbms_lob.read(vblob, buffer_size, offset, buffer);
    htp.prn(utl_raw.cast_to_varchar2(buffer));
    offset := offset + buffer_size;
    end loop;
    exception
    when others then
    htp.p(sqlerrm);
    end;
    Step 5.
    Use the PL/SQL cartridge to call the get_img procedure
    OR
    Create that procedure as a function and invoke it within your PL/SQL code to
    place the images appropriately on your HTML page via the PL/SQL toolkit.
    from a html form
    1. Create an HTML form where the image field will be <input type="file">. You also
    need the file MIME type .
    2. Create a procedure receiving the form parameters. The file field will be a Varchar2
    parameter, because you receive the image path not the image itself.
    3. Insert the image file into table using "Create directory NAME as IMAGE_PATH" and
    then use "Insert into TABLE (consecutive, BLOB_OBJECT, MIME_OBJECT) values (sequence.nextval,
    EMPTY_BLOB(), 'GIF' or 'JPEG') returning BLOB_OBJECT, consecutive into variable_blob,
    variable_consecutive.
    4. Load the file into table using:
    dbms_lob.loadfromfile(variable_blob, variable_file_name, dbms_lob.getlength(variable_file_name));
    dbms_lob.fileclose(variable_file_name);
    commit.
    Regards,
    Simma........

  • Error while trying to Insert a pdf file in database

    Hi All,
    I have sent this problem to Informix. By any chance if you had faced the same problem and found the solution, pls send mail to [email protected]
    Thanks
    Babu
    Hi there,
    I tried to insert a pdf file in to Informix database. I followed the guidelines
    given in the "InformixJDBC Driver
    Programmer's Guide". Actually my program works if i use
    PreparedStatement.setBytes method. But why
    PreparedStatement.setBinaryStream method is not working????.
    Here is the code snippet.....
    Connection conn = null;
    PreparedStatement ps = null;
    try
    File ff = new File("C:\\test.pdf");
    InputStream value = null;
    FileInputStream fileinp = new FileInputStream(ff);
    value = (InputStream) value;
    int len = (int) ff.length();
    System.out.println("len: " + len);
    conn = connect();
    String sql = "INSERT INTO dbep04m@inf10004:pg_wip_t (c_db,n_object,u_img) VALUES (\"2\",?,?)";
    if (conn != null)
    long stTime = System.currentTimeMillis();
    ps = conn.prepareStatement(sql);
    for (int ii=1;ii<=10000;ii++)
    ps.setInt(1,ii);
    ps.setBinaryStream(2,value,len);
    int rtVal = ps.executeUpdate();
    //System.out.println("return value" + rtVal);
    ps.close();
    conn.close();
    long endTime = System.currentTimeMillis();
    System.out.println("Total time taken for this run: " + (endTime-stTime)/(1000) + " seconds");
    catch (FileNotFoundException ex)
    ex.printStackTrace();
    catch (IOException ex)
    ex.printStackTrace();
    catch (SQLException ex)
    ex.printStackTrace();
    finally
    try
    if (ps != null)
    ps.close();
    if (conn != null)
    conn.close();
    catch (SQLException ex)
    ex.printStackTrace();
    I am getting the following error message.......
    java.sql.SQLException: Insufficient Blob data
    at com.informix.util.IfxErrMsg.getSQLException(IfxErrMsg.java)
    at com.informix.jdbc.IfxSqli.sendStreamBlob(IfxSqli.java, Compiled Code)
    at com.informix.jdbc.IfxSqli.sendBlob(IfxSqli.java, Compiled Code)
    at com.informix.jdbc.IfxSqli.sendBind(IfxSqli.java, Compiled Code)
    at com.informix.jdbc.IfxSqli.sendExecute(IfxSqli.java)
    at com.informix.jdbc.IfxSqli.sendCommand(IfxSqli.java)
    at com.informix.jdbc.IfxSqli.executeCommand(IfxSqli.java)
    at com.informix.jdbc.IfxResultSet.executeUpdate(IfxResultSet.java)
    at com.informix.jdbc.IfxStatement.executeUpdateImpl(IfxStatement.java)
    at com.informix.jdbc.IfxPreparedStatement.executeUpdate(IfxPreparedStatement.java)
    at com.aexp.eaim.iu.isp.testcase.InsertBlob.insertUsingSql(InsertBlob.java, Compiled Code)
    at com.aexp.eaim.iu.isp.testcase.InsertBlob.main(InsertBlob.java:194)
    Here is the example given in the "Informix JDBC Driver Programmer's Guide". In the line maked bold, the blob size was hard coded as 10. Then
    why you are trying to find the file length???.
    try
    stmt = conn.createStatement();
    stmt.executeUpdate("create table tab1(col1 byte)");
    catch ( SQLException e)
    System.out.println("Failed to create table ..." + e.getMessage());
    System.out.println("Trying to insert data using Prepare Statement ...");
    try
    pstmt = conn.prepareStatement("insert into tab1 values (?)");
    catch (SQLException e)
    System.out.println("Failed to Insert into tab:" + e.toString());
    File file = new File("data.dat");
    int fileLength = (int) file.length();
    InputStream value = null;
    FileInputStream fileinp = null;
    int row = 0;
    String str = null;
    int rc = 0;
    ResultSet rs = null;
    System.out.println("Inserting data ...\n");
    try
    fileinp = new FileInputStream(file);
    value = (InputStream)fileinp;
    catch (Exception e) {}
    try
    pstmt.setBinaryStream(1,value,10); //set 1st column
    catch (SQLException e)
    System.out.println("Unable to set parameter");
    set_execute();
    public static void set_execute()
    try
    pstmt.executeUpdate();
    catch (SQLException e)
    System.out.println("Failed to Insert into tab:" + e.toString());
    e.printStackTrace();
    Best Regards
    Babu

    sorry!!!. There is an error in the code
    old code :
    value = (InputStream) value ;
    should be code :
    value = (InputStream) fileinp;

  • Can a PDF be an app?

    1.  Can you offer fillable pdf forms as an iphone or an ipad app?     Can you store the PDF on the phone?   
    2..  If you store a  PDF in the cloud...can somone access and display the PDF on their phone?  
    3.  Does Adobe have a ist of third party developers we can contract with to create fillable pdf forms?
    If we set up the signature field as just a field on the form, the user can touch this field and electronically sign the form. 
    So we get the power of electronic signatures on a PDF form.
    thanks
    kml

    What if we did it this way:
    1.   collect the data fields for the form on an ipad or ipphone
    2.   collect the signature as another data field
    3.   create an xml word doc......integrate the data fields into the word doc
    4.   convert the word doc to a pdf
    5.   store the pdf in the cloud
    6.   the user can access the pdf from his phone... he could share access with others.
    does this work?
    Kathy Lane
    650-823-5998
    http://www.diesmart.com
    http://www.twitter.com/diesmart
    Date: Wed, 21 Mar 2012 09:20:59 -0600
    From: [email protected]
    To: [email protected]
    Subject: Can a PDF be an app?
        Re: Can a PDF be an app?
        created by Joel_Geraci in Security & Digital Signatures - View the full discussion
    klm: 1) The Adobe Reader on mobile devices currently doesn't support form filling or JavaScript so while you can store and view PDF files on a number of phones, you can't easily fill out the forms using the Adobe products. There ar ethird party tools that allow you to add comments but I haven't seen anything that will turn the PDF into an APP. 2) Yes - I use DropBox and it works great. 3) You might check out AcrobatUsers.com instead 4) Since forms don't work on the mobile versions, signatures don't either. J-
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4280344#4280344
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4280344#4280344. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Security & Digital Signatures by email or at Adobe Forums
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • How to insert a pdf file from a dynamic location into a table

    Hi friends
    Can any one please let me know how to insert a pdf file into a table from a dynamic location in server.
    suppose say i have a table CUST_BLOB(file_name, file_data). I have a file in directory c:\local having file_name test.pdf
    I want to insert this file in CUST_BLOB. Please help me.
    Thanks in advance.
    --Ahmed                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    user620950 wrote:
    Hi friends
    Can any one please let me know how to insert a pdf file into a table from a dynamic location in server. Why dynamic locations on the server?
    Make it a business case that the files should be stored in specific location(s).
    Oracle uses directory objects to point to locations on the file system and, whilst these locations can be altered, it is better practice to set up specific locations and grant permission to the correct users for those locations so that there is full control over who is accessing what on the server. Whilst filenames may be dynamic, I wouldn't recommend using dynamic locations.

  • How to insert a pdf export button in a module

    Hi,
    I would propose a way for my students to realize easily a pdf export of one screen. The goal is that students save a file with a drag and drop exercice in order to re-use after.
    So, I tried :
    - Use a shape and execute Javascript, window.print(). I had think to say students to use pdf export instead of print. In my case, print works only in html5. In flash, only the background is displaying.
    - Use the print widget of captivate. It works but it's hard to use it. Student needs to edit properties to choose layout / paper size. Otherwise, some part of the screen are not displaying.
    So I'm looking a solution to insert a pdf export button. Idealy a student clicks up the button and screen will be export in pdf format.  I try this wdiget (http://captivatedev.com/2012/07/25/adobe-captivate-6-x-widget-dynamic-pdf-export/) but we can export only variables.
    Anyone has a good idea to share ?
    Best regards.
    Clément

    Thank you Pat. The thing is that i can´t upload any document to the web server because it belongs to "Jimdo". They give the option with a kind of Plugin and the Pdf comes directly from your browser to be download from the visitors, but it look ugly. That´s why I inserted a link to go to another page (different server) where I can upload documents. I think a need someone who know Jimdo.
    Thank you

  • How do I open a link in a pdf in iOS App Adobe Reader 11.6.4?

    When I open a pdf in iOS App Adobe Reader 11.6.4 I cannot click on a link, the link is underlined but I have no possibility to choose that link. On a PC this link in the same PDF is functioning correctly.

    Michael,
    Your form is a special type of form called a "static XFA form" (typically authored with Adobe LiveCycle Designer).
    The "links" in the static XFA form are actually buttons (form fields) that act like hyperlinks.
    Unfortunately, Adobe Reader mobile products (including Adobe Reader for iOS, Android, Windows Phone) do not support static (or dynamic) XFA forms.  Sorry for the inconvenience.
    The static XFA buttons for web links did not work with any of the non-Adobe PDF viewers that I tried on my iPad, either.  So the users who receive the static XFA form will experience the same problem on mobile devices.

  • Insert a pdf in another pdf take 20 minutes in Acrobat 9!

    Hi! I'm trying to find out why Acrobat Professional 9 with all the update is waiting 20 minutes to insert a pdf of 1 page into another pdf at the very beginning? Usually it only takes a few seconds but for some reason now it takes its sweat bloody time!
    Thanks in advance for everything!

    Thank you Pat. The thing is that i can´t upload any document to the web server because it belongs to "Jimdo". They give the option with a kind of Plugin and the Pdf comes directly from your browser to be download from the visitors, but it look ugly. That´s why I inserted a link to go to another page (different server) where I can upload documents. I think a need someone who know Jimdo.
    Thank you

  • How do I insert a PDF file in muse

    How do I insert a PDF file in muse

    What do you intend?
    • A PDF file to show it within the layout just like a picture? This will not work. You have to convert it into a JPG or a PNG.
    • A PDF file to show it in a browser window or to download it? Use the "file/add files for upload" command and place a link to it by the "hyperlinks" command in the toolbar.

  • How do I insert a pdf file (image) into a project as a picture-in-picture clip that will run for a specified amount of time?

    I want to insert a pdf created from a ppt slide into a FCP X project that will run as a PIP for a specified amount of time. I was successful in bringing the image into the project as a clip but the default for the image is one second. When I try to change duration of the clip, I am able to enter a new time length but the actual clip doesn't change.

    You select the PDF image in the timeline. You use Control-D and enter the new duration. What happens?

Maybe you are looking for

  • Windows 8.1 Installation

    When i installed Windows 8.1 my start screen doesn't works anymore i go to my desktop with crtl+alt+delete or i can't even go to my programs please one microsofts IT guys can help me with this problem my pc cant even function anymore the search bar d

  • New iphone! yea, yea, but now i've got a problem

    so i got the iphone, and it's completely activated on my mac and everything, but for some reason when i drag music onto it, it won't go on...it is on manual as far as i know

  • Where to config remittance advise to vendor?

    hello friends, how to config remittance advise & where to find it? also please tell us the use of remittance advise. thanks& reagards, raghu.

  • An Error occured while starting mirroring

    hi, i am getting the below error when i am trying to start mirroring. below is the screen shot. sal

  • Inter OU/Interco Drop Shipments

    Hi, I an familiar with the normal Drop ship flow;(Please see the steps I follow for this) ·     Enter book Sales Order in OM (source type = 'External') ·     Run Workflow process for Purchase Release ·     Run Requisition Import ·     Query for the r