Form Button Edit, Radio button

I insert a radio button in a form , it has the button
followed by a long space afterwards, this is the case with all
other types of buttons.
How do I edit the length of these boxes, particularly with
the radio button. I only want the button, not the length of nothing
that follows. I've been through all properties, but there is not
option to control length, etc.

Show us the whole page, please.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"jkix" <[email protected]> wrote in message
news:flgsmr$6hn$[email protected]..
> this is an html page, i am working with dreamweaver mx
2004.
>
> .main_0 { width:776px;}
> .main { width:776px;}
> #header {height:259px;}
> #footer { height:87px;}
>
> /*---page---*/
> #page #wrapper .row .column{ width:463px; float:left;}
> #page #wrapper .row .column_1{ width:247px; float:left;}
>
> #page #wrapper .row_1 .column{ width:245px; float:left;}
> #page #wrapper .row_1 .column_1{ width:236px;
float:left;}
> #page #wrapper .row_1 .column_2{ width:192px;
float:left;}
> /*---// page---*/
>
> /*---page_1---*/
> #page_1 #wrapper .row .column{ width:362px; float:left;}
> #page_1 #wrapper .row .column_1{ width:348px;
float:left;}
> /*---// page_1---*/
>
> /*---page_2---*/
> #page_2 #wrapper .row .column{ width:261px; float:left;}
> #page_2 #wrapper .row .column_1{ width:449px;
float:left;}
> /*---// page_2---*/
>
> /*---page_3---*/
> #page_3 #wrapper .row .column{ width:463px; float:left;}
> #page_3 #wrapper .row .column_1{ width:247px;
float:left;}
>
> #page_3 #wrapper .row_1 .column{ width:366px;
float:left;}
> #page_3 #wrapper .row_1 .column_1{ width:298px;
float:left;}
> /*---// page_3---*/
>
> /*---page_4---*/
> #page_4 #wrapper .row .column{ width:362px; float:left;}
> #page_4 #wrapper .row .column_1{ width:348px;
float:left;}
>
> #page_4 #wrapper .row_1 .column{ width:710px;}
> /*---// page_4---*/
>
> /*---page_5---*/
> #page_5 #wrapper .row .column{ width:261px; float:left;}
> #page_5 #wrapper .row .column_1{ width:449px;
float:left;}
> /*---// page_5---*/
>
> /*---page_6---*/
> #page_6 #wrapper .row_1 { width:710px;}
> /*---// page_6---*/
>

Similar Messages

  • Distributed form missing "automatic" Submit Form button

    I am going crazy and running out of time.
    I created a form in Acrobat.  I distributed the form using SharePoint.  It worked great.  For me and my test user.  I sent the distributed file to my boss so she could try it and there was no Submit Form button.  The purple forms bar was there; Highlight Fields was there; there was no Submit Form button.  I tried it on another user's computer and no Submit Form was there.  I tried it on our terminal server with a test user (set up like a standard user), and there was a Submit Form button.  I tried it on a computer outside our network and no Submit Form button was there.  I also had my boss try it in the terminal server (known working computer) and no Submit Form button was there.
    I have looked around the net and found a JavaScript reference that hid a Submit Form button, but that is a different, ugly, email-only button meant for backwards-compatibility.
    This is so effing frustrating.  I can't find a single reason the Submit Form button will show up for some and not others.
    I submitted it via e-mail.  I open it within Terminal Services, logged in as me, and the Submit button wasn't there.  I open it with my Test user (a standard user, not admin or anything) and the Submit button is there.  I open it on my local machine and the Submit button is there.  WTF IS GOING ON, ADOBE???  I am so frustrated right now.

    On this machine I only have AA5. I was able to open the first form, but saw no submit button anywhere. The second form would not open. I might try it with AA7 a bit later (the only versions I have at home).
    I was able to check the various radio buttons and type in the text boxes. The text boxes seem to wrap correctly.
    I assume folks will be fine with the exceeds expectations being on the left. In many surveys, the best is on the right and not on the left. However, I am not sure there is any standard for that and you have been consistent. I was wondering how you were going to take care of the signatures. It looks like you are going to do them by hand - I guess the advantage is that all the signers would see the entire evaluation before signing. The alternative would be to introduce digital signatures in some sense, possibly using the Acrobat route.
    Again, I see no submit button. Bill

  • Form button plate coding

    sir,
    please provide me button plate settng
    for example
    save, edit, new , search , delete
    if press the button save or edit or delete and so on then not necessery button should be disable

    Hi,
    If your question is in form button them check this sample code.
    function p_test is (p_action varchar2) is
    begin
    if p_action = 'ADD' then
    set_item_property
    ('pb_add',enabled,property_true));
    set_item_property
    ('pb_edit',enabled,property_true));
    set_item_property
    ('pb_delete',enabled,property_true));
    set_item_property
    ('pb_save',enabled,property_true));
    set_item_property
    ('pb_cancel',enabled,property_true));
    set_item_property
    ('pb_exit',enabled,property_true));
    end if;
    Based on your requirement you can just change the property_true to property_false appropriately.
    hope this works.
    With regards,
    Guru Prasad.

  • Problem with JavaScript in my PDF Form buttons

    I am trying to have my user click on a button in my form on my website and e-mail the form data to me.
    I am using the following JavaScript with my form button:
    this.mailForm(false, "[email protected]", "", "", "Subject", "Message Body");
    Protected mode is off.
    When I use the above statement (whether the 1st parameter is set to true or false), nothing happens – no email gets sent and no mail dialog box appears. If I change from this.mailForm(...) to this.mailDoc(...), I get a mail dialog box but, as expected, it sends the blank form without the filled-in data due to low user privileges.
    How can I send the form data with this.mailForm(...)? (Note that I prefer to use this.mailForm(...) rather than mailto:(...) because this.mailForm(...) supposedly allows me to e-mail the form without user interaction.)
    -- Don

    Thanks for responding.  I have been using “Submit a form” in the Mouse up event.  I had that operation do a mailto: and it worked, but required user interaction on the part of the web page visitor.  I have successfully created an equivalent JavaScript including:
        var url = "mailto:[email protected]?subject=mySubject&body=MyMessage"; 
        this.submitForm(url, true);
    The above sent the FDF file successfully, but again, it required user interaction.
    Then I tried this JavaScript - as I mentioned in a previous post - after you said to use doc.submitForm():
        var url = "http://mydomain.com/submit_notice.php";
        doc.submitForm(url, false);
    The above script seemed to do nothing (with no error message). Shouldn't it bring up the PHP file in the web browser?
    I have that php file, submit_notice.php, created, but I have not written any PHP scripts to e-mail the FDF file.  I have never written a PHP script to take the posted FDF data and email it, but I have used the PHP mail() function and posted variables.
    As for what I want to happen on the client side after the submit takes place: I simply want the FDF file to go to an e-mail that I specify.  Additionally, I need it to happen without any client interaction on the part of the web page visitor.  I can expect that visitor to have Adobe reader, but no add-ons or protected mode requirement.
    Please give me an example that emails the FDF file without any user interaction.
    Thank you.
    -- Don

  • Form button does not work when a program is moved from Windows 8.2 to Windows 7

    Hi,
    I have a few Excel programs which use the ODBC to get data from Access and which have macros which writes data to an external program, MYOB.
    When the macros tries to write the data to MYOB it fails if I am not running the program in administrator mode.   It seems that Windows 8.2 has a different level of security than Windows 7 and must be run in administrator mode for the ODBC to work. 
    I have had issues after running the program in administrator mode (testing) if I simply do a save (in administrator mode) and then send it to the customer.   The issue is that it just will not work on the customer's site.   I have gotten
    around this in the past by saving any changes, going back out of excel, loading the program again (not in administrator mode) and saving it - before sending it to the customer.   This worked until now.
    For some unknown reason, the last time I sent a program to the customer and carried out the above process, the program stopped working.   Originally I thought that the macro just wouldn't work on windows 7, but eventually found that it is the form button
    that will no longer work when the program is moved from 8.2 to 7.
    Does anyone know why there is an incompatibility between 8.2 and Windows 7 and what I should be doing to ensure that my programs work in my customers environment(windows7)?
    In the meanwhile, I have changed the form button to an activex button and the program works fine in both environments.
    Thanking you in advance,

    there is some OP report after Windows update Dec 2014 macro stop responding ( I cant confirm if this is also related to your issue) its because security update for Office maybe conflict with the active-x that you are installed
    try to
    Close Excel
    Start Windows Explorer.
    Select your system drive (usually C:)
    Use the Search box to search for *.exd
    Delete all the files it finds.
    Start Excel again
    Open that file and save it, and try open at Windows 7
    to get more detail about this issue, I suggest also contact Office forum
    this case also will be solve installing kb3025036
    good luck

  • How do I add a user command to a Adobe Form Button?

    Hi,
    I want to add a user command to a Adobe Form button, but have no idea how to do it? (Since the material I have only mentioned how to do it by using JSP pages). This is a question comes from PCR. Thanks.

    Formscentral does not support forms with digital signature workflows. I suggest you see if our Echosign product meets your needs.

  • Is it possible to remove the submit form button that's automatically created when you distribute a form?

    I have created a form for my boss and distributed it. She doesn't want the submit form button to appear as people don't need to submit the form to anyone, just fill it in and keep a copy. I can't figure out how to remove this button. It's not one I've created, it's the one that it automatically generates when you don't have a submit button in your form. Is it possible to remove this button or do we just have to live with it? I am using Adobe Acrobat X Pro.
    Thanks

    You can have more control on the email subject/ to and CC Email address, if you use a regular button and place the code in the click event.
    Refer to the attached sample below.
    https://acrobat.com/#d=HouRLov3lOntSbqAfsr5Hg
    Thanks
    Srini

  • In firefox I am unable to submit information via form buttons. The buttons are present and clickable but nothing happens once they are clicked.

    I am having trouble submitting information via form buttons. I click on the button but nothing happens. It isn't site specific and is a problem that has only started to happen recently. I have uninstalled firefox and reinstalled it without any rememdy. The problem does not replicate itself in Chrome or Internet Explorer. Can anyone advise what maybe the problem? Is it s a javascript setting within firefox that I may have accidentally turned off? Please help.

    Thank you for the help but I found the answer here: http://support.mozilla.com/tiki-view_forum_thread.php?locale=en-US&comments_parentId=601699&forumId=1
    I am pretty sure you had the same diagnosis and solution to start it in safe mode, and if it does work, go disabling each extension one by one until you determine which extension is the culprit.
    Thanks!

  • When I try to use the Submit Form button on the Interactive PDF I created (IN Design CS6) I get this message. "There is no value in form field 'Program.' Please put in it before proceeding. What can I do to fix this and make the Submit button work?

    When I try to use the Submit Form button on the Interactive PDF I created (In Design CS6), I get this message:
    There is no value in form field "Program." Please put in it before proceeding.
    How can I fix this and make the Submit Form button work?

    Are you running modified software on your phone?  This error seems to be common if the firmware has been modified and you're trying to restore the phone again. 

  • "Display Form" button not visible in UWL preview

    Hi Friends,
    We are implementing Travel module. The standard Workflow WS20000050 has a single level of approval. However, we wanted 2 level approval and so accordingly this was implemened.
    Now we want a 3rd level of decision step to be approved by the traveldesk on recept of tickets.
    Even the pdf form, which contains the travel details, needs to be visible. In the standard task TS20000118, the "Display Form" button is automatically visible in the UWL preview apart from the usual 
    "Approve" and "Reject" buttons.
    However the content that needs to be shown to the traveldesk is different. To achieve this, i copied the standard task TS20000118 and changed only the task description. Rest everything including the parameters and binding remains same.
    But for this task, the "Display Form" button is not visible.
    1. Please advice on the possible reasons why this is happening ?
    2. Is there any setting or any SPRO configuration wherin we need to 
        specify the tasks for whom the button needs to be displayed ?? or
        Is it some portal side configuration ?
    Thanks,
    Shashank

    Hi Vijay,
    Goto:
    Universal Worklist Content Configuration -> Click to Administrate Item Types and View Definitions
    In the table under the "Current Configurations" tab, select the standard travel configuration provided by SAP -> "com.sap.pct.erp.mss.tra".
    Here, search for the code of the task for which everything is working fine; in our case it was TS20000118. Copy this piece of code.
    Now download the currently active XML configuration. In the saved XML file, search for the task code which is not working as expected. Replace this piece of code with the code copied in the above step. Save with a different name.
    Upload this new configuration with HIgh priority.
    Reregister the connector and clear the cache.
    These steps solved my problem. Probably it should work for you too.
    Regards,
    Shashank

  • Submit Form Button Acrobat X Pro Mac

    I used Acrobat X Pro for the first time a couple of months ago. I created a form and when I was finished there was a Submit Form button in the purple field at the top of the document next to the Highlight Existing Fields button, and the text to the left of the buttons said "Please fill out the following form. When finished, click Submit Form to return the completed form. You can save data typed in this form.". I did not create any buttons on this form manually. I want to do this again for another form but I cannot figure out how I did it the first time. I have seen discussions on how to create a submit button, but I cannot get that to work either. Plus I think the Submit Form button looks nicer anyway. Please Help!!
    What I Need:
    - a pdf form with a submit button that will email me a copy of the completed form when pressed
    - the person filling out the form also needs to be able save a copy for themselves
    My System:
    Macbook Pro OS X 10.6.7
    Office 2011 for Mac 14.0
    Acrobat X for Mac 10.0.2

    I just did what it sounds like you want to do using these instructions for Acrobat Pro 9. Here is the link: http://help.adobe.com/en_US/Acrobat/9.0/Standard/WS3593E0A4-C5E2-4cde-A09E-2A984346DDD2.w. html
    To make it so your user can save a copy go to the Advanced Tab and click on Extend Features in Adobe Reader. That should do it. Good Luck.
    Best,
    Lisa

  • Open Form button on UWL is disappers, after changing the XMLs

    HI Frndz,
    We created a custom UWL(workbench) by creating uwl.standard.hr(from uwl. standard.xml),and when the workflows are triggered Items are not coming to our custom UWl , but these are coming fine to standard UWL.
    So i added the WF ITEMS into uwl.standard.hr manually and uploaded, now the items are coming to custom UWL(workbench), but when we click on Items these are not launching WDP application, this is the same case in standard UWL also.
    I came to know that when am adding the WF items to uwl.standed.hr than only OPEN FORM button is disappearing in custom and standard UWL also.If i delete these added entries in uwl.stranded.hr than standard UWL items are lunching well.But WF items are not coming to workbench(custom UWL).
    Plz suggest us.
    Regards
    Rajesh

    To be honest, I have only grasped < 100% of your message in detail, but...: Windows that have a parent<->child relation must be running in the same thread. In addition, after closing a modeless window, you must not use it anymore. Instead, create
    a new instance.
    What happens if you do not create a new thread but instead open the child in the same thread (which is obligatory)? You wrote it doesn't work, but I don't know why?
    "First I have to declare the child window as a global variable".
    How do you define "global"? Normally this is a variable in a Module declared with the scope Public or Friend. But I guess you mean a field of the Form (a variable at class level in the Form).
    "I need to be able to send messages from the main window to the child window so that the child window displays the volume."
    Why does the main window has to send the messages? Can't the child window handle the device's messages itself?
    "I need to run the child window using a separate thread as both windows need to be able to process commands."
    Process commands from the device, or commands from the user operating the Forms?
    Armin

  • IDCS3 How to convert checkbox into form button in PDF?

    I have an InDesign CS3 document that has lots of text checkboxes next to items in a list.
    I would like to be able to export this doc as PDF and have those checkboxes turned into form buttons that the reader can toggle on or off to indicate items that the reader owns.
    Then the reader could print the PDF and they would have a nice neat record of their items.
    At present I don't need to have these PDF forms returned electronically or tallied or anything. The idea is just to use the PDF as a personal inventory.
    So I'm hoping there's some easy way to globally replace my text-based checkboxes in IDCS3 with buttons that look the same but which will be recognized properly by Acrobat as interactive objects the state of which can be toggled with a click.
    I've tried reading all the help files and searching these forums, but can't figure out how to do this. Any suggestions would be greatly appreciated. Thanks in advance!

    You cannot do this in InDesign.
    However, you can export a PDF file and open it in Acrobat 8 Professional or Acrobat 9 Pro. Then you can use the Form Field Recognition feature (Forms menu) in Acrobat 8 or Start Form Wizard in Acrobat 9 Pro.
    Head to the Acrobat User Community tutorials and eSeminars for more information:
    http://www.acrobatusers.com

  • In Acrobat, I wrote a script to turn fields gray if a checkbox was checked. How can I get it to reset to white (or clear) when the reset form button is clicked?

    In Acrobat, I wrote a script to turn fields gray if a checkbox was checked. How can I get it to reset to white (or clear) when the reset form button is clicked?

    Thank you so much for your reply . . . but . . . I should have shared my original script with you -- it was a little more complicated than I led you to believer. I was triggering a group of text fields to become disabled as well as gray. Below is the original script so that when the checkbox is checked, it causes several "Co" fields to be disabled and gray.
    // Mouse Up script for check box 
    // If checked, certain fields should be disabled 
    var f_prefix = "Co"; 
    // Get a reference to all of the "Co" fields 
    var f = getField(f_prefix); 
    // Reset the Co fields 
    resetForm([f_prefix]); 
    if (event.target.value === "Off") { 
        // Enable the Co fields 
        f.readonly = false; 
        f.fillColor = color.transparent; 
    } else { 
        // Disable the Co fields 
        f.readonly = true; 
        f.fillColor = color.gray; 
    To recap -- my goal is to get those gray fields to revert to transparent if the form is reset. I'm willing to create my own custom "Reset Form" button but I'm not sure I understand how that would look. Wouldn't it be quite lengthy? I think I'm having a brain freeze -- can't figure it out!

  • Hiding the "Submit Form" button in Reader

    I am referring to the "Submit Form" button that is part of the application (just to the right of the Highlight Fields button) rather than one that appears on the PDF document itself.
    This is for a PDF form for a company with many branches.
    I want to create a form that users can fill out and save in Reader, but I don't want them to submit it electronically, because I need them to provide a photo as well. I just want them to save the filled-out form and then email it together with a photo to their local branch manager, and I do not have a complete list of branch managers; I am assuming that the user knows the email address of their branch manager. So I either want to hide the Submit Form botton or change it to Save Form.
    I am trying this  on a PC (specifically Acrobat 9, Acrobat Reader 9 and Windows Vista Home Premium), and also on a Mac. On both platforms, when I take an existing form and distribute it to get one that can be filled out n Reader, Acrobat generates a form that Reader displays with the Submit Form button.

    Here is the answer to my own question. Don't use Distribute Form to generate the Reader-enabled form. Instead, in Acrobat 9, go to Advanced --> Extend Forms Fill-in and Save in Adobe Reader to generate the form. In Acrobat X, go to File>Save as.

  • Submit form button on fill in form

    How do I change default message in email in the submit form button?   It says "form attached"' etc.
    I tried java script and it worked for most, but iPad users couldn't select the button

    thank you for your response.  I really don't want to customize the form, I just wanted to know if there is a way to modify the default language in the email message from the submit button.  The body says:
    Form Returned: Class-Reg-Test-09-04-12.pdf
    The attached file is the filled-out form. Please open it to review the data.
    Thanks - I am looking into an Acrobat class.
    Sent from my iPad

Maybe you are looking for