Radio button outline will not go away

Hello community,

I've created my first form-filling using my new upgrade to Acrobat X (10.1.2) for Mac and ran into the following issue:

Creating radio buttons, I can not turn off lines square of each button.  In properties, the appearance for the radio button, I tried the following:

-Set the border to none color

-Set the white border color

I can still see the outline on the screen.  The outline also prints.

Can someone tell me how to disable the contours in my radio buttons?

Thank you

Eric

Set the border color to something else than transparent (none) and then set the solid line Style. Now set the border to transparent color.

Tags: Acrobat

Similar Questions

  • Blue outline will not go away

    We got a new Dell Office in November with Windows 8. My problem is there is a blue outline that appears on no matter what, I click on and I can't find answers on how to get rid of it. I hope that I am not violating any rule to ask this question again, but nobody has yet responded to me. Can someone please. I took screenshots:

    https://SkyDrive.live.com/#CID=76BBC56E167A342E&ID=76BBC56E167A342E%21113

    I hope that I have inserted the right url :-(

    Thank you

    Janelle

    Hi Janelle,

    Thanks for posting the question on Microsoft Community Forums.
    As we understand it, you get a blue outline on what you enter.
    We will try to help you solve the problem.
     
    If you could answer a few questions that would help us resolve this problem:
    1. is the Narrator on?
    2. What is the number of brand and model of the computer?
    3. don't you make changes to the computer before the show?
     
    We would like to tell you that the blue outline appears when the Narrator is turned on.

    If the Narrator is turned on and you want to quickly leave the Narrator, press caps lock SHIFT + ESC

    Also check out the link below for assistance:

    Hear text read aloud with Narrator

    http://Windows.Microsoft.com/en-in/Windows-8/hear-text-read-aloud-with-Narrator

    Hope this solves the problem. If the problem persists, you can write back to us and we will be happy to help you further.
  • A red circle that appears when you miss a phone call will not go away? Any ideas?

    A red circle that appears when you miss a phone call will not go away? Any ideas?

    Hello

    If I am not mistaken, you see a red circle when you miss a phone call that you would like to go. If this is the case, you can simply open the app phone on your iPhone and wait 10 seconds, and then return to your home screen. In doing so, the iPhone think that you have viewed your missed calls, once you see the red circles will disappear. If you're still having problems, this can be a problem and a simple reboot will help. Here's how you can restart your iPhone:

    • Press and hold the sleep/wake button until the Red slider appears
    • Drag the slider to turn off your iPhone
    • Once the iPhone is off, press and hold the sleep/wake button until the Apple logo appears.

    I hope this helps.

  • APEX_ITEM - Radio button group does not work

    Hi all

    I have a classic report in my application

    Report query:

    SELECT APEX_ITEM.DISPLAY_AND_SAVE(8,B.PRIMARY_DLR_NUM||'-'||B.PRIMARY_DLR_NAME)||
    APEX_ITEM.HIDDEN(9,A.ARM_EMPLID)||
    APEX_ITEM.HIDDEN(10,A.AE_EMPLID)||APEX_ITEM.HIDDEN(11,B.PRIMARY_DLR_NUM)||
    APEX_ITEM.HIDDEN(13,B.PRIMARY_DLR_NAME)||
    APEX_ITEM.HIDDEN(12,B.DLR_TYPE_CD) "Dealer",
    C.DLR_STATUS "DLR_OPT_IN",
    C.ARM_STATUS "ARM_OPT_IN",
    C.AE_STATUS "AE_OPT_IN",
    C.ALT_ARM_MAIL_ID "ARM_EMAIL_ALT",
    C.ALT_AE_MAIL_ID "AE_EMAIL_ALT",
    C.ARM_STATUS "STATUS",
    C.APPROVED_DATE "APPVR_DATE" 
    FROM EMPLOYEE_DEALER_RELATION A, DEALER B , EV_DR_ARM_AE_OVERRIDE C
    WHERE  ((A.ARM_EMPLID= :P1_ARM
    AND A.AE_EMPLID = :P1_AE ) OR (B.DLR_TYPE_CD = :P1_DEALER_TYPE_CODE))
    AND A.PRIMARY_DLR_NUM = B.PRIMARY_DLR_NUM
    AND A.PRIMARY_DLR_NUM = C.DEALER_ID 
    AND A.ARM_EMPLID = C.ARM_ID 
    AND A.AE_EMPLID = C.AE_ID 
    

    C.DLR_STATUS "DLR_OPT_IN"

    C.ARM_STATUS "ARM_OPT_IN"

    C.AE_STATUS "AE_OPT_IN"

    These three columns are displayed in the Radio button group.

    I have a process in the page that will insert a new record and update the existing record.

    In the report, the user can change any column and press the submit call said above.

    The process code:

    DECLARE
    V_EXISTS NUMBER:=0;
    V_ERRMSG VARCHAR2(4000);
    V_ERRCODE VARCHAR2(100);
    BEGIN
    FOR I in 1..APEX_APPLICATION.G_F01.COUNT 
    LOOP
     BEGIN
          BEGIN
          SELECT 1 INTO V_EXISTS FROM EV_DR_ARM_AE_OVERRIDE
          WHERE ARM_ID = APEX_APPLICATION.G_F09(I)
           AND  AE_ID  = APEX_APPLICATION.G_F10(I)
           AND  DEALER_ID = APEX_APPLICATION.G_F11(I);
          EXCEPTION WHEN OTHERS THEN
          V_EXISTS:=0;
          END;
    
    
    IF V_EXISTS = 0 THEN
          INSERT INTO EV_DR_ARM_AE_OVERRIDE(ARM_ID,AE_ID,DEALER_ID,DEALER_NAME,DLR_STATUS,ARM_STATUS,
          AE_STATUS,ALT_ARM_MAIL_ID,ALT_AE_MAIL_ID,UPDATED_BY,UPDATED_DATE,APPROVAL_STATUS,APPROVED_BY,
          APPROVED_DATE,DEALER_TYPE_CODE) VALUES(apex_application.G_f09(I),apex_application.G_f10(I),apex_application.G_f11(I),
          apex_application.G_f13(I),
          APEX_APPLICATION.G_F01(I),APEX_APPLICATION.G_F02(I),APEX_APPLICATION.G_F03(I),      APEX_APPLICATION.G_F04(I),APEX_APPLICATION.G_F05(I),:APP_USER,SYSDATE,APEX_APPLICATION.G_F06(I),
          :APP_USER,APEX_APPLICATION.G_F07(I),apex_application.G_f12(I));
          COMMIT;
    ELSE
         UPDATE EV_DR_ARM_AE_OVERRIDE
         SET DLR_STATUS = APEX_APPLICATION.G_F02(I),
             ARM_STATUS = APEX_APPLICATION.G_F03(I),
             AE_STATUS  = APEX_APPLICATION.G_F03(I),
             ALT_ARM_MAIL_ID = APEX_APPLICATION.G_F04(I),
             ALT_AE_MAIL_ID =  APEX_APPLICATION.G_F05(I),
             UPDATED_BY     = :APP_USER,
             UPDATED_DATE   = SYSDATE,
             APPROVAL_STATUS = APEX_APPLICATION.G_F06(I),
             APPROVED_BY   = :APP_USER
          WHERE ARM_ID = APEX_APPLICATION.G_F09(I)
           AND  AE_ID  = APEX_APPLICATION.G_F10(I)
           AND  DEALER_ID = APEX_APPLICATION.G_F11(I);
      COMMIT;
    END IF;
    EXCEPTION WHEN OTHERS THEN
    V_ERRMSG:=SQLERRM;
    V_ERRCODE:=SQLCODE;
    INSERT INTO EVANTAGE_ERROR_LOG VALUES(APEX_APPLICATION.G_F09(I)||'-'||APEX_APPLICATION.G_F10(I)
    ||'-'||APEX_APPLICATION.G_F11(I),V_ERRMSG,V_ERRCODE,:APP_USER,SYSDATE);
    COMMIT;
    END;
    END LOOP;
    EXCEPTION WHEN OTHERS THEN
    V_ERRMSG:=SQLERRM;
    V_ERRCODE:=SQLCODE;
    INSERT INTO EVANTAGE_ERROR_LOG VALUES(NULL,V_ERRMSG,V_ERRCODE,:APP_USER,SYSDATE);
    COMMIT;
    END;
    

    Now my problem is when I select radio group value and press on submit I get my process performing perfectly 404 page not found, its not even call my process, without radio button (if am not choose any NULL - value).

    Could you get it someone please let me know how I can solve or what I missed here?

    Thanks in advance.

    See you soon,.

    San.

    Groups of radio in the reports are evil - this is inherent in the HTML format, like checkboxes in tabular form.

    Vincent Deelen: Using radio buttons in a report of the APEX

    My suggestion is to try a different design of the user interface, or generate buttons to replicate radio groups.

  • I delete a specific cookie and it reappears automatically. How to permanently remove a cookie? I'm not on the website, but the cookie will not go away.

    I went in and deleted my cookies and I closed my options and then returned and one in particular was back. So I completely closed FireFox, it has reopened and left on empty FireFox homepage. Then I went and remove said cookie again, but no matter how many times I delete it, it just reappears. I'm not on this website, it will not go away.

    Cookie information is below:
    Name: synthasiteVisitorId
    Content: C60A7791-2C50-0001-9A76-EF6C17B16980
    Host: hellfirecoven.yolasite.com

    Edit:

    I delete all my cookies with the exception of the 5 or 6 that are Web sites that I visit daily. I went and deleted all cookies and cookie above was successfully deleted.

  • 10.1 Firefox crash reporter will not go away? Suggestions?

    Update (Vista) system would not start so restore earlier that day... now Firefox does not start and Crash Reporter will not go away. I can not download a new version by extracting what continues to ask on behalf of the administration and I have nothing set up... suggestions?

    Using the system restore can cause your installation of Firefox get corrupted because not all files are restored, so be careful to do a system restore.

    You will need to reinstall Firefox and delete the folder of the program Firefox (c:\Program FilesMozilla Firefox) before reinstalling a freshly downloaded version of Firefox.

    Download a new copy of Firefox and save the file to the desktop.

    Uninstall your current version of Firefox, if possible.

    • Do NOT remove the data of a personal nature when you uninstall the current version or you lose your bookmarks and other data, because all profile files will be deleted.

    Delete the program folder Firefox before installing newly downloaded copy of the Firefox installer.

    Your bookmarks and other profile data stored in the Firefox profile folder and will not be affected by a relocation, but make sure that you do not select delete data of a personal nature if you uninstall Firefox.

  • The task manager has started to appear without borders and will not go away, unless the computer is off.

    When using the Ctrl-alt-delete option and the Manager tasks appears it seems without borders.  The task manager remains after the programs are all closed and will not go away, unless the computer is off.

    It's called mode 'small footprint '.  Double-click anywhere on the border of the Task Manager window and you will get the Menu bar in the rear.

  • Lightroom 6 does not. Splash screen will not go away. Task Mgr "not responding".

    Downloaded and installed (twice), you click ok to update the catalog LR 5 (will not find a LR 6 cat, however), but the splash screen will not go away and program will not work.  Circle of blue rotation on forever, task manager says does not.

    Signed by adobe and in return, no help.

    I downloaded and install creative cloud and Lightroom 6 works now, it seems to pick up on initial start-up... How are we suppose to know?

  • value of radio button shows only not in the mysql table

    This looks like a small problem, but I can't seem to find the solution. I created a form on a web page. After the form is completed, a confirmation is sent to the person who filled out the form and a mysql table is populated with the information from the form. Everything works well except for one small thing: the value of the radio button does not appear in the table.

    Here is the form: http://www.webdevpractice.com/genoptix/CE/register.php

    Here is the table on the Web page: http://www.webdevpractice.com/genoptix/CE/admin/index.php you will see that the Contact Me column does not.

    Here insert the php code in the registration form page:

    if ((isset($_POST["MM_insert"])) && ($_POST["MM_insert"] == "registration")) {
      $insertSQL = sprintf("INSERT INTO registrants (registrant_id, first_name, last_name, medtech_id, job_title, company, city, `state`, email, phone, contact) VALUES (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s)",
                           GetSQLValueString($_POST['registrant_id'], "int"),
                           GetSQLValueString($_POST['first_name'], "text"),
                           GetSQLValueString($_POST['last_name'], "text"),
                           GetSQLValueString($_POST['medtech_id'], "text"),
                           GetSQLValueString($_POST['job_title'], "text"),
                           GetSQLValueString($_POST['company'], "text"),
                           GetSQLValueString($_POST['city'], "text"),
                           GetSQLValueString($_POST['state'], "text"),
                           GetSQLValueString($_POST['email'], "text"),
                           GetSQLValueString($_POST['phone'], "text"),
                           GetSQLValueString(isset($_POST['contact']) ? "true" : "", "defined","'Y'","'N'"));
    

    I used phpMyAdmin to create the db and table. I put the field contact as follows:

    Type: ENUM

    Length/values: ', 'y '.

    Default: no

    Ranking: utf8_unicode_ci

    Can you find the problem?

    I found the problem. I don't broadcast my stupidity, but I have a time I changed the last field of contact_me contact and I forgot to download the change on one of the files (I thought I had downloaded it). In any case, thanks for responding to my message. It is good to know that altruistic GRAMPS remains!

  • Radio button selections does not save

    I'm creating a form of performance review. I have a section where employees need to rate themselves on a scale of 1 to 5. (1 = low, 2 = good, 3 = meets expectations, 4 = exceeds expectations, 5 = outstanding) I radio for each option buttons so that they are allowed to select a. However, when I go in, as the employee to complete the form and select the radio field I want, the selection does not record.

    Is there a way to make sure the radio button selections are saved?

    Or is there a better option?

    Hi kellyr19545348,

    Please save the PDF under the drive extended to allow other users to save the options they are checking.

    Open a PDF in Acrobat

    Go to file > save as other > Reader Extended PDF > allow more tools

    Thank you

    Abhishek

  • Dynamic radio button fields do not display again after registered form

    Hello

    I have a group of questions of radio button at the breast of a dynamic form that display additional questions based on the answer.

    So to the question "is there a basement?" If the user indicates Yes, there is a basement, additional questions are displayed in order to collect more information on the basement. If the user says no, while these questions do not appear.

    Everything works beautifully in the form. However, when the form is saved and then re-opened, other issues do not appear in the form. So, the structure goes to this:

    image1.jpg

    To do this:

    image2.jpg

    Users must toggle buttons radio to reappear these issues... and when they reappear, they maintained that respond to the user indicated before the Save.

    I don't know why this happens... does anyone have advice?

    Thank you

    Theresa

    Can you make sure you have state changes based on an automatic script enabled for your form. If you go to file-> properties of form-> by default and see what the script option button is selected. If you have manually, you need to handle all state change yourself and you are not as likely at the present time. Try him affecting automatically and see if it works on the opening of the saved pdf file. I did a quick in Designer 8.2 and it seemed to match your question.

  • voice by tapping screen will not go away

    What happened twice today. I use the phone and the voice typing display will not disappear. I can use the phone.... i can go to the home screen, open apps, review the settings, etc, but I can't close the voice prompt, and I can't use it.

    It essentially makes the phone useless until I restart.

    I don't know why it does this. Not rooted and unlocked or anything... just stock.

    I've included a link to a short video that illustrates the problem.

    https://DL.dropboxusercontent.com/u/11731783/20150929_123443.MP4

    Any help would be appreciated.


  • Patchwork sewing will not go away

    I was working in Photoshop trying to figure out how to reverse the arrow that I made using the custom shape.  I clicked on the shape of an Amoeba in the upper left corner and saw the target color Starburst and Patchwork sewn in there.  I clicked to see what they would look like and now they will not disappear!  I have reset the tools built-in, restarted Photoshop and shows still Patchwork sewn to the top any shape, I use.  I was just an arrow pointing to the left.

    Any help would be most appreciated.  Thank you!

    Have you tried to go to the Styles Panel and pressing any:

    The list in the upper left corner of your image, shows the recent styles used, then they will remain until you change the Photoshop preferences. :

    To restore preferences quickly by using a keyboard shortcut: IF YOU OPEN PHOTOSHOP, FIRST EXIT.

    • Press and hold the keys Alt + Ctrl + Shift (Windows) or Option + command + shift (Mac OS) When you start Photoshop. You are prompted to delete the current settings. New preferences files are created the next time you start Photoshop.

    Note: Using the hotkey, preference files for custom shortcuts, workspaces, and color settings will also reset to the default.

  • Details of entry will not go away

    Display of entry a few days ago on my Sony Smart TV will not disappear automatically. I have to press info every time on my remote.

    I tried a reset, and it did not help. Before it would disappear after a few seconds by itself. Can't seem to find any setting. Something escapes me?

    Photo

    When I go to:

    Settings > about > model number all said is Internet TV

    However, the name of the template is NSX-46GT1

  • Jet 7, button / stop will not be sleeping tablet.

    Just receive a stream 7, after you play with it for an hour, I noticed that the power button does nothing when I press on it. Shouldn't, by pressing the power button turn the unit standby? Long power button brings up the trail down to turn off device and the switch downwards is a power strong discount.

    I checked and rechecked the Power Options and power button action is put to sleep. Power options are always default. Restart the device several times, did a hard power off reboot. Still can't sleep the unit manually.

    Can't even turn the unit in sleep but the menu power at the top of the page right charm because the only options are shutdown and restart. And for the moment, I find myself with doing a full stop when I'm not using the tablet.

    Any help would be good.

    Go to NIC Realtek, advanced property. Enable "Wake on Pattern Match. The sleep button should work again.

    BTW, I have no idea how the sleep button will be connected to a network adapter properties. Apparently some engineer couldn't get the button to work correctly and just the hack via with a chain saw. Sigh. HP quality.

Maybe you are looking for

  • How to add a new language to the language and region of the Panel

    HelloSetting preferences in Mac OS X, I could ' t help noticing the huge amount of languages available in the Mac OS X El Capitan. Located in same languages like Klingon, Navajo and Latin - and of course, this looks like a great tribute to the rich d

  • Keyboard N200 problem

    the keys on my keyboard mГЄlГ suddenly becomes 'I' 6 ', 'u' 4' I tried to restart and stop the keyboard, but it did not work, what should I do?

  • Outbreak of several digital lines of a single window using PCI 6353

    Hello I use a PCI 6353 to control a laser for a PIV system. The laser requires 4 pulses (F1, F2, T1, T2) on different channels. It would be easy using 4 counters on the Board, but I also need to trigger the camera. The card has a lot of output digita

  • network controller and PCI device?

    Cannot find the controller PCI device for my hp 2000-2116tu with windows 7 ultimate (32 bit) and network

  • DVD - RAM drive does not recognize blank CD

    When I check the properties of the DVD-RAM drive before inserting a CD, to the title of the record, I find the check box turn on CD on this drive already ticked. After that I insert a blank CD in the drive, DVD - RAM turns to CD. When I double-click