Email specific pages ONLY from PDF

Is there a way to extract and email only specific pages from a LiveCycle designed, Reader-enabled PDF using Adobe Reader 8? (i.e. the form has 20 pages total, but I only want the user to email Page3, Page5, and Page7 at once using a button)...
Thanks in advance for the help...

I think the only option would be to hide the pages.
pageName(or subForm).presence = "hidden";
and then after the email routine finishes show the pages again.
pageName.presence = "visible";
If you had all the pages you want hidden in one subform then it would just be one line of code.

Similar Messages

  • Hyperlink from within a Word Document to a specific page within a PDF document.

    I was hoping that someone would be able to assist me.  I would like to create a hyperlink (used as a citation) on my Word document that opens directly to a specified page within a PDF document (possible other word docs and so on, but less
    often).  How do I go about performing this?  Another note, all the documents would reside within a SharePoint site.

    I was hoping that someone would be able to assist me.  I would like to create a hyperlink (used as a citation) on my Word document that opens directly to a specified page within a PDF document (possible other word docs and so on,
    but less often).  How do I go about performing this?  Another note, all the documents would reside within a SharePoint site.
    I am not a Word guru, but I don't think you can run a macro from a hyperlink. But you can create an active X label that runs a macro when clicked. You can use the following macro to go to a specific page in a PDF file.
    Sub OpenPDFPageView(DisplayPage As Integer)
    'In order to use the macro you must enable the Acrobat library from VBA editor:
    'Go to Tools -> References -> Adobe Acrobat xx.0 Type Library, where xx depends
    'on your Acrobat Professional version (i.e. 9.0 or 10.0) you have installed to your PC.
    Dim PDFApp As AcroApp
    Dim PDFDoc As AcroAVDoc
    Dim PDFPageView As AcroAvPageView
    Dim PDFPath As String
    Dim DisplayPage As Integer
    PDFPath = "C:\Users\doudou\documents\test1.pdf"
    'Set the page you want to be displayed
    'DisplayPage = 3
    'Initialize Acrobat by creating App object
    Set PDFApp = CreateObject("AcroExch.App")
    'Set AVDoc object
    Set PDFDoc = CreateObject("AcroExch.AVDoc")
    'Open the PDF
    If PDFDoc.Open(PDFPath, "") = True Then
    PDFDoc.BringToFront
    'Maximize the document
    Call PDFDoc.Maximize(True)
    Set PDFPageView = PDFDoc.GetAVPageView()
    'Go to the desired page
    'The first page is 0
    Call PDFPageView.GoTo(DisplayPage - 1)
    'Set the page view of the pdf
    Call PDFPageView.ZoomTo(2, 50)
    End If
    Set PDFApp = Nothing
    Set PDFDoc = Nothing
    On Error Resume Next
    'Show the adobe application
    PDFApp.Show
    'Set the focus to adobe acrobat pro
    AppActivate "Adobe Acrobat Pro"
    End Sub

  • How to add link to specific page in another PDF

    I'd like to create a link within a PDF to a specific page in a different PDF. As far as I can tell, the Create Link tool will only allow me to open another PDF on page 1. I know you can link to another page in the current PDF, but I need to link to a separate PDF. I have also found info on mechanisms for opening to different pages, but these are for opening using browsers or code.
    So, is it possible to link create a link in a PDF to a specific page in another PDF?
    Thanks for any suggestions.
    - John
    PS - I'm using Adobe 7.0 Professional.

    Try this...
    You can link to a specific page in a specific PDF from a bookmark. You navigate to the new view (page of a PDF) when creating the bookmark.
    When you want to do that with a link (as in selected text in the body of the PDF) you have to do it in two steps. Use any file open to create the link, then edit the properties of the link, select the Action tab, and change the action to Go To A Page View.
    That's how it works in Acrobat 8, but I'm betting it's the same in 7.
    Bear

  • How to create a hyperlink to a specific page in a pdf

    How can I create a hyperlink to a specific page in a pdf, that is saved on a local drive? If anybody knows the answer, please email me back at [removed]
    Your help will be greatly appreciated.

    You need the original Adobe Acrobat to edit PDF files. The free reader is just for viewing
    http://www.estello.se

  • E-Mail Specific Page in a PDF

    Was wondering if it was possible for a user to e-mail/submit a specific page of a PDF. For example, I have a 14 page PDF and instead of using a submit button to e-mail the entire PDF, is it possible to e-mail a specific page? Keep in mind, the user on the other end would be using Adobe Reader (as I know this could be easily done if the user has Adobe Acrobat). Also if there was such a function, do you believe it would work on a mobile device or only desktop?
    Thanks!!

    No, not possible with Reader.

  • Opening a specific page of a PDF through web browser not working with IE5.5

    Hi,
    I need an urgent help to reslove the problem below.
    Using Netscape 4.7, When I am trying to open a specific page of
    a PDF file through the web browser using the command below.
    web.show_document('http://oraweb/abc.pdf#page=3','_self');
    This opens the page 3 and then when I give subsequent calls to
    this command with different page nunbers, it opens the related
    pages correctly.
    But when using IE 5.5, the page gets displayed correctly for
    only the firt time. Any calls to the command does not change the
    page at all.
    Could anybody help me to resolve this problem ASAP?
    Thanks
    Preji

    Hello,
    I think this is a problem of IE5.5 with PDF-Files.
    You can find more information at acrobat web site
    (perhaps there is a patch)
    There is a setting in the reader where you can say that
    the reader should start in the web-browser. Turn it off -
    when IE starts downloading a pdf-file you can choose
    acrobat reader for the first time.

  • How can we repeat specific page number of pdf file by using FDF Toolkit for Windows?

    how can we repeat specific page number of pdf file by using FDF Toolkit for Windows?

    let's say a registration form, there is only 1 full address provided in my registration pdf, but applicant could have more than 1 address, so i have to make it more flexible to extend the address page no matter how many addresses that applicant provided, i have use adobe acrobat pro to edit the form properties. but dont know how to extend/duplicate a page in felxible times.
    Please advise~ tks so much!!! George

  • Opening a specific page in a pdf

    Hi,
    I am working on a cross platform project.  I can open a specific page in a pdf in windows with the following script using buddy but am so far unable to get this to work on the mac.
    on mouseUp me
      global gMoviePathName
      cursor 0
      theApp = baShortFileName(baFindApp("pdf"))
      thePath = baShortFileName(gMoviePathName &"resource\myfolder\myfile.pdf")
      theAppString = theApp & " /A page=1 " & thePath
      theResult = baRunProgram(theAppString, "Normal", FALSE)
    end
    But even leaving out the attempt to locate the individual page I can't get this code to work.
    on mouseUp me
      global gMoviePathName
      cursor 0
      theApp = baShortFileName(baFindApp(".pdf"))
      member("text1").text = theApp
      thePath = baShortFileName(gMoviePathName &"resource:myFolder:myFile.pdf")
      member("text2").text = thePath
      theAppString = theApp & thePath
      member("text3").text = theAppString
       theResult = baRunProgram(theAppString "Normal", FALSE)
      member("text4").text = theResult
    end 
    The trace fields seem to return the pathnames ok but the final path returns 0 [error]
    Can anyone help?

    One problem that I see is that the executable file should not have a colon after it:
    MyDisc:Applications:Preview.app: myDisc:myFolder1:myFolder2:myFolder3:myFolder4:myFile.jpg
    should be
    MyDisc:Applications:Preview.app myDisc:myFolder1:myFolder2:myFolder3:myFolder4:myFile.jpg
    And another is that it looks like you have missed some punctuation in the baRunProgram command (possibly a copying error)
    theResult = baRunProgram(theAppString "Normal", FALSE
    should be
    theResult = baRunProgram(theAppString, "Normal", FALSE)
    One last item is that the Preview.app program probably does not accept the same command line switches as acrobat reader, therefore you are unlikely to make it open to the page you want.  You would probably need to make sure that the Mac has acrobat reader on it, and use it to open the file.

  • How do you link to a specific page in a pdf file?

    Having trouble linking to a specific page in a pdf file, is
    this possible?

    ccpbob wrote:
    > Having trouble linking to a specific page in a pdf file,
    is this possible?
    Hi
    We have a tutorial on this here:
    http://www.communitymx.com/abstract.cfm?cid=A12EF619D9061CD2
    it is a
    commercial tutorial, but not expensive. You could sign up for
    the trial
    - link in my sig - and read it that way, you never may like
    CMX and stay
    a while longer,
    Cheers jojo
    Adobe Community Expert for Dreamweaver 8
    http://www.webade.co.uk
    http://www.ukcsstraining.co.uk/
    Extending Knowledge, Daily.
    http://www.communityMX.com/
    Free 10 day trial
    http://www.communitymx.com/joincmx.cfm

  • Apply script on specific pages only

    Hi!
    I would like to know how to apply some script on specific pages only.
    I would like to apply it on pages number 4 to 50 on a 50 page project, and so exclude page 1, 2 and 3.
    Here is my actual script:
    var doc = app.activeDocument,
    objStyle = doc.objectStyles.itemByName('stylenamechosen'),
    a = doc.allGraphics,
    i = a.length;
    while( i-- ) a[i].parent.appliedObjectStyle = objStyle;
    Please let me know.

    Dear Jump_Over,
    Sorry for the delay...
    //below code working fine
    var myDoc = app.activeDocument;
    var myGraphics = myDoc.allGraphics;
    for(k=0; k<myGraphics.length; k++)
        myGraphics[k].parent.appliedObjectStyle = myDoc.objectStyles.item("testing");
    //below code not working with page range
    var myDoc = app.activeDocument;
    var myGraphics = app.activeDocument.pages.itemByRange(3, -1).allGraphics;    //Error found in this line
    for(k=0; k<myGraphics.length; k++)
        myGraphics[k].parent.appliedObjectStyle = myDoc.objectStyles.item("testing");
    Document having 10 pages.
    Thanks
    Beginner

  • Setting the "Email" Button to only send specific pages in a PDF

    Hey everyone, couldn't find this question on the board, so figured I'd give it a shot.
    I have a PDF I'm making w/a coverpage, what I'm trying to find out is if I can set the "email PDF" button to specifically send the PDF without the coverpage included (so...if the cover page is page 1 in a 5 page document, the pdf emailed would only include pages 2-5).
    Not sure if this functionality is possible, but I figured I'd reach out to the experts - thanks in advance!

    Adobe Reader is simply for reading/printing PDF's (and possibly a few other things depending on the PDF). You can find more functionality in the full version of Adobe Acrobat. In this case, with Acrobat you can simply remove the first page then email the rest.

  • Link to a specific page in a PDF - from word

    Hey guys
    Possibly a stupid question, however Im not too familiar with acrobat and creating pdfs etc, I have searched and tried whatever answers i've found though.
    What Im needing to do (well, its another user, but they've asked me to fix it for them) is create a link in a word document that will open a pdf at a particular page. This word document will then be exported to PDF and the linking needs to still work. The files will be on the local filesystem (not a web server) and need to open in acrobat reader, not an IE window.
    I can get it to work fine if you manually edit the link in Acrobat professional and tell it to go to a page in another PDF, but when I try adding the link in word it just opens the PDF at page 1.
    What I've tried doing:
    Create a hyperlink in word to c:\test.pdf#page=50
    Create a hyperlink in word to c:\test.pdf#chapter6 (with chapter6 being a destination in the PDF document)
    as above but with file:///c:/test.pdf#page50 and file:///c:/test.pdf#chapter6
    All of these open the PDF but at page 1, not page 50. When i view the link properties in acrobat it shows the action as being "Open a file: c:\test.pdf" but nothing about opening to a specific page.
    The user does not want to edit the resulting pdf in acrobat once it has been created, due to needing to frequently update the word document and re-export to pdf.
    Systems are running WinXP, Office 03, and have tried with Acrobat 6 and 8 (would prefer it to work with version 6, as 8 is just the trial and would prefer not to have to upgrade to get this to work).
    Any help would be much appreciated!

    I have a similar problem I would like to solve. I am also running Word 2003, Windows XP and Acrobat Professional 7.0.
    I can create a hyperlink in a word document to open a separate PDF file.
    I can then use PDF Maker to convert the word document to PDF.
    No problem.
    When I click on the new link in the PDF document it opens the separate file in the same window and the original PDF file is closed.
    I do not want the original file to close.
    When I set up a new link from within Acrobat then I get the option to "Open in new window". This link works the way that I want.
    As there are multiple hyperlinks in the word document, I will need to recreate new links everytime I modify the Word document. This is very time consuming
    Question - how do I get the automatically created link to open in a new window?
    Thanks in advance

  • Problem while opening a link of a PDF that points to a specific page to another PDF

    PDF links whose URIs include backslashes are interpreted by Acrobat Reader browser plug-in as local file-system links even when they are not.  This means that a link that points to a specific page number will open the file but not automatically jump to the desired page .  In our browser-based viewing tool, this means that the links are perceived as not working.
    for example :  from IE Browser When we tried to open the link in PDF 1 which has the URL of the 5th section of PDF2 and the URL includes the backslashes then the Specific section of PDF2 is not getting opened . The link just opens the PDF2 first page. This Specific problem does not arrives if we try to open the link through Adobe Reader or if the URL mentioned in the PDF is formed using  forwordslashes instead of backslashes.
    Regards
    Yeshwant

    > not sure if i have explained this very well.
    You have not.
    But tables cells cannot wrap.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "cheers mate" <[email protected]> wrote in
    message
    news:e7obon$nim$[email protected]..
    > lets say i have a table one row deep and 10 columns
    wide, and while
    > viewing it
    > your window may allow only 3 of the first tables at the
    top and three on
    > the
    > next and three the next and finally one on the last.
    (the number of boxes
    > is
    > not an issue)
    >
    > the way the tables are shown is.
    >
    > lets say the window is resized to allow 4 boxes in the
    top row and so on
    > down
    > the page till all boxes are shown.
    >
    > not sure if i have explained this very well.
    >
    > if you do not understand please ask and i'll create a
    few pages to explain
    > what i am trying to do.
    >
    > i have seen this once or twice around some sites, but
    this was ages ago
    > and
    > have no idea what sites so i can not look to see how
    they did it.
    >
    >
    > please take a look at this link i have described what i
    am trying to do.
    >
    >
    http://pro-freelancers.com/cascadingboxes.htm
    >
    > Hope someone can help.
    >
    >
    > thanks
    >

  • InDesign Link to specific page in a .pdf file

    I have an article index that I keep in InDesign.  Each item in the index points to a specific page in a separate .pdf file.  Is there a way, in InDesign, to create a link that will open the .pdf file to a specific page?  The InDesign file contains buttons and is exported to an interactive .pdf file.  For example, I may have an article from volume one, page two.  In the interactive index, I would like the user to be able to click on this link and open newsletter volume one and jump to page two.  I have never found a way to do this in InDesign and currently have to create the text portion of the index in InDesign, export it to an interactive .pdf file and then create all of the links directly in Acrobat Professional.  This is very time consuming because whenever I need to update the index, I need to re-export to a new interactive .pdf file and recreate ALL of the links in Acrobat.  There should be a way to do this in InDesign.

    There SHOULD be a way, yes. But there is none. It's not about Indesign, it's the PDF and handling of action like "Open file".
    I tried button actions like "Open file" in Indesign, but you only select the file name and path, nothing else.
    If you do the same in Acrobat, by putting an action "Open file" for a hyperlink, it will be the same.
    The only thing that works is to use an URL like http://www.yourdomain.com/yourfile.pdf#page=3, where #page=3 can do what you want. You could even place that URL in Indesign or Acrobat, but the PDF would a) open in a browser and b) the PDF reader will always pop up that requester before opening internet links and c) the file would have to be on the internet.
    Perhaps Acrobat Javascript could do more here, but then you'd have to embed it somehow in Acrobat (I wouldn't know if Indesign can do that) and Javascript would have to be allowed for that PDF. Not a good choice.

  • Go to a specific page within the PDF

    Hi,
    I try to figure out how to make a link to another page within the PDF doc.
    I tried with a button, but cannot specify the page number where I want the link.
    Does anyone can help me to make a link on a specific page within my doc?
    thanks

    This article should be of some help: http://acrobatusers.com/tutorials/how-do-i-link-button-specific-page-my-pdf-document

Maybe you are looking for

  • Problems with keyboard backlight light on my macbook pro retina 2012

    Is it a malfunction if it flickers off? Is there some kind of sensor in it sensitive to daylight?

  • Solaris 10 authentication on Windows 2008 Active Directory

    Hi, Does anyone done it? I've do it against a Windows 2003 R2 Active Directory and now in production environment i'm having some issues with the password. I'm using only the Active Directory LDAP without Kerberos. I'm able to su to the user, getent p

  • Data Conversion Logic

    I am now trying to implement a data conversion logic(such as UOM field), I want to load all the data conversion rules in the cache from file and keep them in the cache. So when mapping starts it just picks up the data conversion rules from the cache.

  • Parent not finished until children complete - stops new job from starting

    Is there anyway that we can 'de-link' 'disassocaite' - some method that we can start a new job again - even though children of a previous job are still active. This is causing quite a problem in our system whereby we need to start another background

  • Getting that little icon next to the web address..

    Hey everyone.. Im using Dreamweaver 8, and I was wondering if there is a tool that allows me to insert a small little icon next to an internet browsers web address (ex: the little "Y!" to the left of the address bar, or better yet, the little macrome