Submitting a specific page on a PDF form to a different email address

Hi
I have a submit button on my pdf form that emails the completed form to myself. I was wondering if it is possible to send a speceifc page (for example page 2) to a differnt email address.
Thank you

The built-in PDF plugins of the browsers are usually quite bad when it comes to scripts, so I would say it will probably be the same. At least with Reader you know for sure what's going to work and what not. With those plugins it's a wild stab in the dark...

Similar Messages

  • Emailing a PDF form w/o an email address submit button

    I have created a form; but my company does not want it to go to specific email address. So I took out the submit button. What they want is for people to be able to fill in the PDF form and send it to whomever they choose via email. BUT in reader, they cannot save the PDF. What do I need to do to get this to work correctly?
    Thanks!
    Diana

    I had the same request.
    All i did was leave the email address blank. On the "Design View", it will show an error but the employee will not see this. They can then just enter an email address.
    Chomp

  • 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

  • There are hidden pages in the PDF form I have.  How can I see and print all without clicking on the

    I have hidden pages in the PDF form I'm using (but didn't create).  How can I see and print all the pages at once without clicking on the "next page" button.  In the initial view, there are four pages, but if I click the "next page" button, there are a total of 12 pages in this document.  This is three budget years, each year being 4 pages long.

    You're most likely dealing with a dynamic XFA form created in LiveCycle Designer. You can open it, click the button, and save it, and it will most likely be 12 pages when next opened, but it depends on how the form is set up. The ability to make edits to an XFA form in Acrobat is very limited, especially for dynamic forms, so things like flattening aren't possible.
    If it's not an XFA form, you'd still need to click the button at least once and save. To say for sure what's possible, I'd need to see the document. Can you post it somewhere?

  • 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 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

  • 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

  • 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.

  • 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

  • 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.

  • I opened Adobe Acrobate XI Standard to create a form.  I then selected From Template, which took me to Adobe FormsCentral Online.  However, I think the form is an HTML web form.  All I wanted was a regular PDF form that I could email my co-workers for an

    I opened Adobe Acrobate XI Standard to create a form.  I then selected From Template, which took me to Adobe FormsCentral Online.  However, I think the form is an HTML web form.  All I wanted was a regular PDF form that I could email my co-workers for an internal project we're colletively working on.  Now I see that FormsCentral is going away and I can't get my doc to save as a PDF without an upgrade?  Help

    You should be able to log into the online Formscentral Acrobat XI air app and see your doc there. From there you would need to save it out as a PDF without a submit button to have it continue to work past July. If you don't see your online form(s) please let me know the adobeID you use to log into the service as well as the form name that is missing and I will look into it for you.
    Andrew

  • Web Form sends to 2 different emails address

    Hi,
    I want to put a drop dowm box in my web contact form that if someone selects Office, the form data goes to email address one. If selects reception, data goes to email 2. Is it doable? Seems like BC can only forward emails.

    Hi Liam,
    Thx so much for your reply. I would love to implement the method you mentioned. I had a try it, but I could not figure out what to put in form action. I tried the one in the example, "/Default.aspx?A=Form&Email="+my email, it went to home page with  "/Default.aspx?A=Form&Email=" in the url, and the style of my home page is a bit strange. But more important, it put everything in the form including CaptchaV2, CaptchaTV2, CaptchaHV2. I dont understand what they are. Can I set what is being send?
    I also tried the action that the form automatically generated, "/FormProcessv2.aspx?WebFormID=10254&OID={module_oid}&OTYPE={module_otype}&EI D={module_eid}&CID={module_cid}"+"&A=Form&Email="+my email, but the form did not send to my email. Any ideas?

  • I want to set up firefox with 2 seperate home pages, using google with 2 different email addresses

    I use igoogle, and I have 2 separete email addresses which I use for seperate reasons, as I will be setting up a web page using one of them. As to this I wondered if there was a way to set up having 2 shortcuts or 2 downloads of firefox with each one having a different homepage, but still using igoogle.
    Do I need to download another copy of firefox and while setting it up, set it up with the different email address? Or is there another way of doing this? Or is it something that cannot be done?

    I use igoogle, and I have 2 separete email addresses which I use for seperate reasons, as I will be setting up a web page using one of them. As to this I wondered if there was a way to set up having 2 shortcuts or 2 downloads of firefox with each one having a different homepage, but still using igoogle.
    Do I need to download another copy of firefox and while setting it up, set it up with the different email address? Or is there another way of doing this? Or is it something that cannot be done?

  • How do I configure my email page for two different email addresses?

    I would like to have mail sent to two different email addresses, on my email page using Thunderbird.
    How do I do that?

    There is no "New-existing Mail Account"

Maybe you are looking for