How will form display on my website?

Hello, I was reading through the FAQ's and from what I can gather, I can create a fillable form in Acrobat XI Pro, import it into Forms Central as a web form. Hopefully I understand that correctly.  So if that's correct, my question is, will I then EMBED that form into my website so my customer can fill it in on their web browser OR will it actually open in another window, like a pdf, and be fillable that way?  I have been working with Jotform but this form I need to do is a little more technical and I was wanting to have the flexibility to create it in Indesign or Acrobat BUT I want the customer to be able to fill it in on their browser, not have it open in a separate window.
Hopefully that makes sense.
Thanks for any help you can give.
Sincerely,
Annette

Hi Annette;
That isn't really correct.  Importing a PDF into FormsCentral does not create a web form.  It creates a PDF that submits data to FormsCentral for the collection and analasys of the responses. 
We strongly recommend against "embedding" a PDF in a web page, or having the PDF open in a web browser.  See this FAQ for more information on why: http://forums.adobe.com/docs/DOC-4142
Thanks,
Josh

Similar Messages

  • How will i display the multiple select ids in the dashboard ?

    I have a form where there is a multiple select. When the form is submit, the ids for the multiple select is stored in the database as concatenate. For example, multiple select : 3,9,5,1.
    The ids of the multiple select is found in a table TABLE1 and the insertion is done in another table TABLE2.
    Now I have to display them in a dashboard.
    My question is how will i display the multiple select ids in the dashboard ?
    I have to do an innerjoin with TABLE1 to retrieve the names of the multiple select ids. I don't know how to do it because the column name for multiple select in TABLE2 is of type text and the column id in TABLE1 is of type int.
    Please help me solve this problem.
    Thanks in advance

    One general advice is, never store comma-delimited lists in the database. In fact, the reason is to avoid problems like the one you now face.
    The major suggestion here is to re-design your database. Make sure each selected item (for example 3, 9, 5 or 1) is stored in its own row.
    To solve the problem as it now stands, you could do something like
    <cfquery>
    select myItems
    from table2
    where id in (select id from table 1 where ...etc.)
    </cfquery>
    Then use ColdFusion's list functions to do what your dashboard requires you to do.

  • Firefox will not display my photo website properly nor play the music from it on my new computer. I have 2 other PCs and it works fine on those.

    Just set up a new PC and downloaded Firefox. It will not display my Zenfolio Photo website correctly nor will it play the music that accompanies the main page slideshow. I have 2 other PCs and it works fine on them. All are Windows 7 Home Premium.

    Note that there is nothing wrong with setting Flash to "Ask to Activate" and click the Lego block icon on the Navigation Toolbar to activate the Flash plugin when needed.
    You can verify on the Adobe Flash Players Test Page that the Flash plugin is working and which version you have once you have installed the plugin and checked the setting in "Firefox/Tools > Add-ons > Plugins"
    * http://www.adobe.com/software/flash/about/

  • How can I direct all my contact form replies (from my website), to my personal email address?

    How can I direct all my contact form replies (from my website), to my personal email address?
    I have embedded the code to my website but would like all of my contact form replies to be directed to my email address. How can I do this by revising the embedded code. Also will I still be able to receive replies after recieving 5000? At this point will I need a premium account?

    Email notifications are a feature of the Basic and Plus account.
    The free account only allows for 50 responses. The Plus (Premium) account allows for 5000.
    Randy

  • How to choose fields that will be displayed on CFL?

    Dear All,
    How to choose fields that will be displayed on CFL?
    Thank u

    hi ,
    please go through the following code
    Case SAPbouiCOM.BoEventTypes.et_CHOOSE_FROM_LIST
                    Dim oDBs_Head As SAPbouiCOM.DBDataSource
                    Dim rs As SAPbobsCOM.Recordset = objMain.objCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                    Dim rs1 As SAPbobsCOM.Recordset = objMain.objCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                    Dim oCFL As SAPbouiCOM.ChooseFromList
                    Dim CFLEvent As SAPbouiCOM.IChooseFromListEvent = pVal
                    Dim CFL_Id As String
                    objForm = objMain.objApplication.Forms.Item(FormUID)
                    oDBs_Head = objForm.DataSources.DBDataSources.Item("@ZAM_CO1")
                    CFL_Id = CFLEvent.ChooseFromListUID
                    oCFL = objForm.ChooseFromLists.Item(CFL_Id)
                    Dim oDT As SAPbouiCOM.DataTable
                    oDT = CFLEvent.SelectedObjects
                   If oCFL.UniqueID = "CFL_3" Then
                            Try
                                oDBs_Head.SetValue("U_RStaff", 0, oDT.GetValue("firstName", 0) + " " + oDT.GetValue("lastName", 0))
                            Catch ex As Exception
                            End Try
                        End If
                   If oCFL.UniqueID = "CFL_4" Then
                            Try
                                oDBs_Head.SetValue("U_App1", 0, oDT.GetValue("firstName", 0) + " " + oDT.GetValue("lastName", 0))
                            Catch ex As Exception
                            End Try
                  End If

  • How can i display recent update/delete/insert records in form

    Hai !!!!
    i am new for forms,.......any body tell me, how can i display recent no of records updated or no of records deleted or no of records are inserted in a form. these records count are display in display items....give me detail explination......
    Subbu.....

    the easiest way is copy and paste the oracle-forms example from the OU.
    You need form-level-trigger ON-ERROR + ON-MESSAGE, POST-INSERT, POST-UPDATE, POST-DELETE, three global variables and a procedure:
    ON-ERROR
    handle_message( error_code, 'ERROR: ' || ERROR_TYPE || '-' || TO_CHAR(ERROR_CODE) ||': '|| ERROR_TEXT );
    ON-MESSAGE
    handle_message( message_code, MESSAGE_TYPE || '-' || TO_CHAR(MESSAGE_CODE) || ': ' || MESSAGE_TEXT );
    PROCEDURE handle_message( message_number IN NUMBER, message_line IN VARCHAR2 ) IS
    BEGIN
        IF message_number IN ( 40400, 40406, 40407 )
        THEN
          DEFAULT_VALUE( '0', 'GLOBAL.insert' );
          DEFAULT_VALUE( '0', 'GLOBAL.update' );
          DEFAULT_VALUE( '0', 'GLOBAL.delete' );
          MESSAGE('Save Ok: ' ||
            :GLOBAL.insert || ' records inserted, ' ||
           :GLOBAL.update || ' records updated, ' ||
           :GLOBAL.delete || ' records deleted !!!' );
          ERASE('GLOBAL.insert'); 
          ERASE('GLOBAL.update');
          ERASE('GLOBAL.delete');
        ELSE
             MESSAGE(message_line );
              END IF;
    END;
    POST-INSERT
    DEFAULT_VALUE('0', 'GLOBAL.insert');
    :GLOBAL.insert := TO_CHAR( TO_NUMBER( :GLOBAL.insert ) + 1 );
    POST-UPDATE
    DEFAULT_VALUE('0', 'GLOBAL.update');
    :GLOBAL.update := TO_CHAR( TO_NUMBER( :GLOBAL.update ) + 1 );
    POST-DELETE
    DEFAULT_VALUE('0', 'GLOBAL.delete');
    :GLOBAL.delete := TO_CHAR( TO_NUMBER( :GLOBAL.delete ) + 1 );try it
    Gerd

  • How do I attach a form to my Wix website....I tried and everything works EXCEPT payment options.

    How do I attach a form to my Wix website.  I was able to attach a form (through link a document) but the payment options do not work.  Payment options work when I use the preview on the Adobe site.

    Hi,
    Please see this link on how to embed a form into a webpage:
    http://forums.adobe.com/docs/DOC-1991
    Please see this link on how to setup the form for payment collection:
    http://forums.adobe.com/docs/DOC-1632
    Hope this helps, if you still have questions, please write back.
    Thanks,
    Lucia

  • How do I create an email list sign up form for my iWeb website?

    Well that's the question - how do I create an email list sign up form for my iWeb website?
    Could someone tell me what's the simplest way using iWeb to create an interactive option
    for users to enter their email address and the info be forwarded to me so I can add to an
    email list?
    It would be great if, since I'm using a Mac computer & iWeb, there was a way to have the
    submitted emails automatically added to a group in my Mac Addressbook.
    I got this MacBook Pro in Sept 2010 so I believe that's iWeb '08 I'm using.
    Anyway I'm thinking there should be a way to do this with some system involving an HTMK
    Widget and an email account.
    By the way this is for hosting through a 'real server', not MobileMe (which I plan to get later
    when I can afford it).
    Any help or suggestions would be appreciated.
    Mark

    Website forms require some code in a snippet and a formmail.php script on the server to process the form and send the info to the required email address. You can do all this when you switch to a "real" server.
    In the meantime you can use a form  or marketing service or, better still, an application like MailShoot which generates the form, handles the database and sends out the bulk emails.
    "I may receive some form of compensation, financial or otherwise, from my recommendation or link."

  • How do I display my pdf output on interactive form?

    Hi all,
    I use interactive form ui element and bind its pdf source property to my attribute 'SOURCE' typed xstring.
    I call my custom fm to process some data return me an itab which consist of lines of pdf binary data. I moved it to another itab which is lines of hexadecimal text. I have a big problem displaying my lt_xstring below on ineractive form. Either I get type not compatible or acess via null object reference error issues. Any idea anyone???
    TYPES: BEGIN OF ty_buffer,
             lv_buffer TYPE xstring,
           END OF ty_buffer.
    TYPES: BEGIN OF ty_string,
             lv_string TYPE string,
           END OF ty_string.
    TYPES: BEGIN OF ty_xstring,
             lv_xstring TYPE xstring,
           END OF ty_xstring.
    DATA lt_buffer TYPE STANDARD TABLE OF ty_buffer.
    DATA lt_string TYPE STANDARD TABLE OF ty_string.
    DATA lt_xstring TYPE STANDARD TABLE OF ty_xstring.
    DATA lw_buffer TYPE ty_buffer.
    DATA lw_string TYPE ty_string.
    DATA lw_xstring TYPE ty_xstring.
    DATA lw_pdf     TYPE soli.
    *EXPORT my_data = lv_string TO DATA BUFFER lv_buffer.
    *IMPORT my_data TO lv_xstring FROM DATA BUFFER lv_buffer IN CHAR-TO-HEX MODE.
    LOOP AT ltg_pdf INTO lw_pdf.
      lw_string-lv_string = lw_pdf-line.
      EXPORT my_data = lw_string-lv_string TO DATA BUFFER lw_buffer-lv_buffer.
      IMPORT my_data TO lw_xstring-lv_xstring FROM DATA BUFFER lw_buffer-lv_buffer IN CHAR-TO-HEX MODE.
      APPEND lw_xstring to lt_xstring.
      CLEAR lw_pdf.
      CLEAR lw_string.
      CLEAR lw_buffer.
    ENDLOOP.

    Hi Siong,
    If you are using web dynpro than whatever the values presents in the context will be displayed in the Form.
    in case of web dynpro you need to to perform any parsing or transformation.
    Just make sure than you are properly mapping the web dynpro context and Pdf context.
    check your web dynpro component, if you get the correct values in context, than these values will be displayed in fore also.
    Thanks & Regards,
    Arvind

  • Firefox will not display certain features of websites in windows 8.1

    I've upgraded to windows 8.1. Installed Firefox (now ver. 26) right away. I go to the same websites to pay bills, do work stuff etc for the past few years.
    Those websites work fine most of the time. RANDOMLY (at least to me) 2 websites have been giving me trouble for certain features:
    1. Banking website will not display my online bill pay. It does not crash, it just says "unable to display page" and for me to check my firewall etc, reload page, etc. When I go to other features for my bank, it works fine except for the bill pay.
    2. My work website has a feature to display paychecks etc. It give me the same message of "unable to display".
    Here's the weird thing: I open and close firefox a few times and the page "magically" works.
    I load the same page in IE 11 and I have the same problem.
    I load the same page in chrome 32.0.1700.107m and I never have this problem.
    I load the same pages in firefox ver. 26 on a windows 7 machine and it work just fine.
    I'm at a loss since Firefox is my primary browser and only have the other browsers for the occasional incompatibilities.
    Any ideas? I've concluded that it's a windows 8.1 issue/compatibility but would like to try other solutions before I downgrade back to windows 7.
    FYI: I've turned off windows firewall and the same issue still occurs. I've updated to the latest adobe flash, shockwave, and Java. I only have one extension installed - adblocker (which is disabled for these websites).
    Thanks in advance for any help.

    Current Firefox versions have enabled a built-in PDF Viewer that doesn't have all features that other PDF readers like the Adobe Reader have or may not function properly otherwise.
    You can change the action for Portable Document Format (PDF) from Preview in Firefox to use another application like the Adobe Reader or set to Always Ask in "Firefox > Options/Preferences > Applications".
    You can set the pdfjs.disabled pref to true on the <b>about:config</b> page to disable the build-in PDF viewer.
    You can check the value of the plugin.disable_full_page_plugin_for_types pref on the about:config page and remove the application/pdf part if present or reset the pref to the default via the right-click context menu if you want to display PDF documents in Firefox with another application (i.e. not the built-in PDF Viewer).
    See also:
    *https://support.mozilla.org/kb/view-pdf-files-firefox-without-downloading-them

  • HT1430 my iphone 4 has suddenly ceased to work with a full battery and switch will not display slider.  How can I reactivate it?

    My iphone 4 has suddenly ceased to operate with a full battery and switch will not display slider.  How can I reactivate it? Is the memory gone? Will T Mobile replace the memory or the phone if necessary?

    Hello,
    If you're in a country where there's an apple shop (unfortunately not mine), go check it and ask the employee about it: he's gonna check your Iphone on a "device"
    I've got an iphone 5 and it's working very well with me but I have to admit that its battery lasts (slower) than my Ipad 2.
    Still i can help with some tips that may improve your iohone's battery by an hour in addition (hopefully):
    - close all apps by multitasking....
    - do NOT keep the brightness to the max
    Believe me you're gonna regret changing your phone to a samsung
    Hope i've helped and sorry for my bad english (has english as 3rd language)

  • How to increase the size of the applet/ form displayed on the bowser

    kindly guide me how to increase the size of the applet / forms displayed on the browseri.e the width and length of the forms/applet so that i can display all the controls on the form .
    thanks with regards

    i changed the value of width and height in formsweb.cfg file in my devsuite_home/forms/server/formsweb.cfg , i am able to see the result when i compile and run the form in devsuite, whereas the same is not reflected when i run the same form in application server.
    when i tried to change the value of abbovementioned file in oracle_home /forms/server/formsweb.cfg of the application server file , the file does not have the applet wdth and applet height values. in fact this file does not have any applet information..
    pls guide
    thanks with regards.

  • Newest Mac Pro: Displays  How will 4K be displayed?  : 4K 3840x2160 UHD 4096x2550  Where as: 27-inch Apple Thunderbolt Display=2660x1440

    How will 4K be displayed?  :
    4K 3840x2160
    UHD 4096x2550
    Where as:
    27-inch Apple Thunderbolt Display=2660x1440

    4k is the generic term for resolutions that have a horizontal number of pixels around 4000. The two most common resolutions are Ultra Hi-Def (UHD) and Cinema 4K (C4K). The first is 3840x2160 and is exactly four times the resolution of "Full HD", or 1080p. The second is 4096x2160 and is one of the "standard" resolutions used in digital cinema projection.
    The HDMI 1.4 standard supports both of these, but only at certain refresh rates. UHD, being the consumer version, is supported at 24Hz, 25Hz, and 30Hz; C4K is only defined for 24Hz since most of the material is going to be film-sourced. (This implies that 25/30Hz will include TV material at half their original rates of 50/60Hz.) Over HDMI, all four of these timing formats run at the same clock rate (297MHz, ignoring the fractional versions). This is the highest clock used in this version of HDMI, although the standard allows up to 340MHz. (There may be PC timing formats between 297-340...)
    Using generic terms, we call these modes "UHD30" to imply resolution and refresh rate, and if a TV supports UHD30 it will always support UHD24 (although it is not a rule, merely a reflection of reality). A TV can only support C4K24 in 1.4, but it doesn't have to. There are many TVs that will support UHD24 or UHD24-30, but not C4K at all. So the practical limit of HDMI 1.4 is "up to 4k30."
    HDMI 2.0, which the Mac Pro does not have [yet], provides dot clocks up to 600MHz (although above 340MHz, they are all divided by 4) and allows "up to 4k60" for pixel encodings of RGB444, YCC444, and YCC422. The new standard also allows 4k50/60 to use YCC420, which sacrifices some color information (known as 'uses chroma subsampling') but allows the data to be transferred at the same rate as 4k30. While "fine" for video--since it was probably delivered over BD/DVD or streaming at YCC420 to begin with--it is not fine for you computer's output.
    I just got a 4k TV because I was tired of my dual 1920x1200 DisplayPort monitors after coming from the original 30" Cinema display of 2560x1600. Specifically, I used to enjoy >1080 pixels tall. But here's the problem with the 4k TV: while it has HDMI 2.0 inputs, the MacPro has only HDMI 1.4 so the output is limited to "up to 4k30". Moving the mouse is laggy and not smooth as it would be if the display were 60Hz. Furthermore, the MacPro is not offering me a choice between UHD or C4K--both of which the TV supports--and is instead defaulting to the largest resolution of C4K. This means the refresh is only 24Hz. And that's why I'm in the forums today--to see if there's a way to get my output to be UHD, but at 30Hz.
    In a couple months, several companies will be selling DP-to-HDMI2 dongles that will support 4k60. So I am holding my breath until then.
    Now, to specifically and accurately answer your question: Out the current MacPro's HDMI 1.4 port, you will get the highest resolution your TV (called the Sink) will support. If your TV has C4K24, then that is what will show up. If your TV does NOT have that, but has UHD24-30, you SHOULD get UHD30. If your TV ONLY has UHD24, then that's what you will get. If you get a TV, the chances are really, really good that the panel will have 3840 pixels across and 2160 lines down. In this case, you want the Mac to output that resolution and put the TV into pixel-for-pixel mode so every input datum is mapped to a single display element. Since most displays overscan, the Full mode will expand the incoming data from 2-5% which can eliminated the crispness (and also cut off the extremes of the Desktop). Also, if you are outputting C4K (like I am) AND you have switched to P4P mode, the horizontal dimension is shrunk by 6.6%.
    If any of this is unclear, just reply. But I will say that this 40" TV is really useful, and once it is running at 60Hz...bellisima!

  • Without Safari for Windows, how will I be able to ensure my website works on the mac?

    I build website templates and modern web apps for a living and use HTML5 and CSS3 extensively.
    I've experienced that with those new technologies there are often minor differences and bugs between Safari and Chrome altough they both use the Webkit rendering egine.
    The version of the engine not being the same I often find akward behaviours which I also report to apple.
    Now, not having Safari 6 for windows, how am I supposed to develop websites for the mac? This is not just software that is OSX specific, we are talking about websites here. Many new websites might just break in safari.
    Please apple at least bring a dev tool to windows. A Window, an url bar, dev tools and the Safari rendering engine. No need to build something fancy
    Thanks for your suggestions and feedback.

    You can use this form for sending Apple feedback about Safari:
    http://www.apple.com/feedback/safari.html
    "Safari is one of the most standards-compliant browsers ever built. Thus, your best bet for ensuring your pages render properly in Safari — today’s version and beyond — is to follow web standards. For a great overview of web standards, check out Mozilla.org’s article Using Web Standards in Your Web Pages."
    https://developer.mozilla.org/en/Using_Web_Standards_in_your_Web_Pages

  • How message will be retrieved from the website and it send back to the mobi

    how message will be retrieved from the website and it send back to the mobile ?
    please give documents and sample code
    Message was edited by:
    kannankalli

    So as your query :
    The data will be fetched from website and it reach to
    mobileimplicates many possibilities.
    Well if u just want to view the website contents on your mobile then open the web browser in your mobile and open the desired web site, or u can use opera mini for this if your phone supports this.
    And if u want to fetch the contents of some site to your application, use GCF api.
    As a starter hope this will help u : http://www-128.ibm.com/developerworks/library/j-j2me4/#N10102

Maybe you are looking for