Need 2 different radio button icons

I have a project using 2 groups of radio buttons. Each group
needs its own icon. I can skin the RadioButton Asset, but that
affects ALL radio buttons. I guess U need to be able to change the
icon property on an instance-by-instance basis. I don’t speak
enough Actionscript to do this without help.
Anybody know how to do this?

Do this from the system preferences window.
Click on Users&Groups.
Click on the padlock (bottom left) to unlock it if it's not unlocked.
Then highlight the account in the left pane that you want to remove...
and then click on the MINUS symbol on the bottom left of that window.
Just make sure when you delete an account, that you're currently NOT LOGGED INTO that account, or it's not going to work.
Feel free to chose the delete home-folder option when it prompts you.

Similar Messages

  • Help needed in Radio buttons (ABAP web dynpro)

    Hi all,
    I need to implement 2 stand alone Radio buttons (not groupbykey or groupbyindex). I could add the same in my view layout, but I am not sure how to use the KeyToSelect and SelectedKey options. How do I control when the button is selected/deselected and how do I obtain this information from my context?
    Thanks in advance guys!
    -Shalini.

    hi shalini....
    create two attributes of type string for the two rado buttons and give two different default values for that. say a and b...
    bind the attribute to the property selected key...
    give the default value as the key to select in the property....
    or you can bind the same attribute to both the buttons and read the attribute to check which value has been selected...
    you can also go through wdr_test_events component.
    ---regards,
       alex b justin

  • Filtering responses in different text fields from different radio buttons.

    Once again I need some guidance with my form please.
    I have a form (audit report) with numerous radio buttons with 4 options each, NA, CN, PC and C.
    Each represents a different answer to the question associated with the radio button.
    This answer this then passes through to a text field next to the radio buttons.
    In turn at the beginning of my form I have an executive brief giving a run down on findings from the different questions asked. These are a reflection of the text fields associated with the radio buttons.
    These are represented as 2 text fields namely, Non-compliant (NC), partial – compliant (PC).
    What I am getting now is a whole lot of “null” answers that change when one of the radio buttons are selected and reflects that answer associated with the selection, both NC and PC text fields are the same and I then have to edit it and delete the PC from the NC section and the same for the PC section.
    What I would like to happen is that all the “nulls” are hidden and only when the answer representing the NC or PC buttons are selected, that those answer get represented through to the Non-compliant (NC), partial- compliant (PC) text fields in my executive brief. IE some sort of filter for each text filed that only displays the NC or PC answers.
    Any help or guidance will be appreciated.

    I will explain this through an example.
    In my application I have created two Select Lists.
    The first select list is a select list with a submit
    P3_X allows selection of 1,2,3
    The page branch sets the value of P3_X with &P3_X. so that way the second select list knows what value it will be using.
    The second select list P3_Y is a dynamic query that says
    Select SCOL d, SCOL r from TEST1 where FCOL=:P3_X
    If you were to have a third select list you would make the second Select List also a submit and have the page branch also set P3_Y with &P3_Y.
    The third Select list would say select from where item=:P3_Y
    Does this answer your question?

  • Radio button icons differ on Linux and Solaris

    I have a GUI made in Java swing with using version 1.4.2
    When I compile and run my GUI on linux the appearance is
    okay in linux but not on solaris and vice versa.
    I have a JPanel for which I have "null" layout I put some
    radio buttons with icons. And I use setbounds function to
    carry out absolute positioning.After I compile on linux and
    see the GUI the radio buttons appear fine but on solaris
    it is overlapped and the icons seem to be cut from below.
    I am not able to figure out whats the problem. I have tried
    taking smaller fonts, having more spacing between radio buttons.
    Note that only Radio buttons have this problem rest all the
    components are working fine with null layout and absolute
    positioning...
    I have also tried setHorizontalTextPosition etc...
    Please suggest something....
    Thanks in advance...
    Vips

    I have a GUI made in Java swing with using version 1.4.2
    When I compile and run my GUI on linux the appearance is
    okay in linux but not on solaris and vice versa.
    I have a JPanel for which I have "null" layout I put some
    radio buttons with icons. And I use setbounds function to
    carry out absolute positioning.After I compile on linux and
    see the GUI the radio buttons appear fine but on solaris
    it is overlapped and the icons seem to be cut from below.
    I am not able to figure out whats the problem. I have tried
    taking smaller fonts, having more spacing between radio buttons.
    Note that only Radio buttons have this problem rest all the
    components are working fine with null layout and absolute
    positioning...
    I have also tried setHorizontalTextPosition etc...
    Please suggest something....
    Thanks in advance...
    Vips

  • Help needed regarding radio button

    Hi,
    I am new to oracle apex and am building some pages.I came across a problem which can be described as follows...
    I have a form in which there are check boxes(p1_item1,p1_item2.....p1_item10), what i am tryng to do is when the user clicks the first check box(p1_item) then all of the other checkboxes must be deselected( if any of them are selected before)and if the user clicks any of the remaining checkboxes then the first check box must get deselected if it was selected before.i want this to be do this dynamically before the submit button.
    i tried several things and was not successful. If any one can direct me through the steps i will be thankful.Thanks in advance.
    Sai

    user583282,
    Please update your profile to include a user-friendly name... makes it easier to communicate.
    I have a report that needed something pretty much identical to your form need.
    The code was modified from Sergio's blog. Feel free to modify it to suit your needs.
    This code can go in the header of your region...
    <script type="text/javascript">
        function ToggleAll(e)  {
                 if (e.name == "f10") {
                    if (e.checked) {
                       ClearAll();
                 else {
                    ClearF10();
        function Check(e) {
                 e.checked = true;
        function Clear(e) {
                 e.checked = false;
        function ClearAll() {  
                 var ml = document.wwv_flow;   
                 var len = ml.elements.length; 
                 for (var i = 0; i < len; i++)  {     
                      var e = ml.elements;
    if (e.name == "f01") {
    Clear(e);
    ml.f01.checked = false;
    function ClearF10() {
    var ml = document.wwv_flow;
    var len = ml.elements.length;
    for (var i = 0; i < len; i++) {     
    var e = ml.elements[i];
    if (e.name == "f01") {
    Clear(0);
    ml.f10.checked = false;
    </script>
    For the "Main" checkbox, paste this into the Label of the item:
    <input type="checkbox" name="f10" value="" onclick="ToggleAll(this)">For each of the other items, past this into the Label of the item:
    <input type="checkbox" name="f01" value="" onclick="ToggleAll(this)">NOTE the f10 versus f01.
    What will (should) happen is when you check the "Main" checkbox (f10) it should clear all of the the "Other" item checkboxes (f01) and when you check any of the "Other" checkboxes then it should clear the "Main" checkbox.
    There may be a better or more efficient way so if anyone else has some input here I won't take any offence...
    Cheers,
    Mike

  • 3 radio buttons is needed on each row of a report

    Hi,
    I need 3 radio buttons on each row of a report. Out of these three , one can be selcted per row. And in each column I can select more then one radio button.
    Please provide a way to do the same.
    Thanks

    open the page, click the RPT link to the report column attributes of that region. choose the field you wish to alter (click the edit icon) then change under the "column link" section to an href. I have used a call to a javascript function in the URL box e.g. "javascript:show_the_page(#ADD#);" and included a javascript function within my app to handle this (read in PK and open a page in a new window with the PK as a variable)

  • How to use Radio buttons in WAD to select different condition in a query

    Hi Guru,
    I am new to WAD, I want to use radio buttons in selection screen of query for different selections based on selection criteria. I am aware of executing different queries using different radio buttons. but i want to use single queries for different radio button selections.
    I have found some relevant topic to it but not got exact solution. Please guide me.

    Hi Avinash,
    Drag a DropDown webitem into your template. Under DropDown webitem properties, Data Binding -> Fixed List of Options.
    Fixed Option -> Action -> Command via Command Wizard, Command -> Commands for Data Providers -> Data Provider Commands for Filter Values -> SET_SELECTION_STATE_SIMPLE. Data Provider Affected -> choose the main DP Query here. Characteristic -> choose Employee Group characteristic here as present in your DP Query. Sign -> INCLUDING, Operator -> EQUAL_SELECTION, Equals -> MEMBER_NAME, Member Name -> specify the value here i.e. Employee1 etc.
    Repeat above Fixed Option step for Employee2, Employee3 etc. selections. For 'All' option choose Command CLEAR_SELECTION_STATE with Data Provider Affected as the main DP Query & Characteristic as Employee Group.
    --Priya

  • How can I set a radio button to a be checked using an action script?

    Acobat X: I have two radio buttons called EnrollmentType with different values. "New Student" and "Returning Student". I need to set 160 forms to returning student, Please
    will this work?
    getField("EnrollmentType").value = "Returning Student"

    This is Adobe X Pro:
    Ok when I click the properties of the radio button. Both have the same
    "Enrollment type".
    But each has a different "Radio Button Choice" under the  Options TAB.
    It does work when I process the forms and save the data.
    The field "Enrollment type" contains either "New Student" or "Returning
    Student" depending on which option they picked.
    I am sending these forms back to the parents to edit any new/changed info
    and want it to have "Returning Student" checked since they are in fact
    returning and not new anymore.

  • Using radio buttons to set the value of a text field

    I have a set of three radio buttons on a form (a performance evaluation). If I select the "1" button, I want 1 to populate in the text field. The same goes for "2" and "3"
    I have not been able to code the buttons correctly for this scenario, and can't figure out how to do it.
    From a previous post, I was able to get check boxes to do what I want, but they won't really work because I can't set them so that only one back may be selected.
    Can this be done?
    Thanks!

    The information for this specific case isn't anywhere. The best that you can do is understand what triggers each of the events, then ask yourself which of those triggers are pertinent to your current issue.
    http://help.adobe.com/en_US/livecycle/es/LiveCycle_Designer_Scripting_Basics.pdf ...
    The above link contains a great deal of information regarding how to use scripts within Livecycle Designer. The section that you would be most interested in in order to learn about the available events can be found under "Events >> List of Events".
    You needed to use the initialize event so that the text field would be updated when the document was opened. This ensure that the text field has the value of the default radio button when it is opened for the first time.
    You needed to use the change event so that, when the use selects a different radio button, the text field is updated with the new value.
    That's about it. That PDF file that I link to above is a bit long, but it's a great place to get a good grasp of the basics of scripts.
    If you have any further questions, feel free to ask. =) Have a good one.
    - Scott

  • Changing the Selection Screen on the selection of a radio button

    Hi experts,
    I am stuck with a situation here.
    I have a selection screen with 2 blocks.
    The first block contains 5 radio buttons.
    The second block contains 7 select options fields.
    Now i want to show different select options when the user selects different radio buttons.
    For example, when the user selects radio button 1, select options 1, 2, 3, 4,  and 5 should be shown.
    When the user selects radio button2,  select options 3, 4, 5, 6, and 7 should be shown.
    How do i go about implementing this????
    I guess i need to do the coding in event "AT SELECTION-SCREEN OUTPUT".
    Should i use MODIF ID????
    Please help.
    Points will be awarded.
    Thanks and Regards
    Gaurav Kumar Raghav

    Use AT SELECTION-SCREEN  
    not AT SELECTION-SCREEN OUTPUT.
    cause output addition makes it a PBO not PAI
    check ur requirement & use the events accordingly
    group all select options under one group which you want to show on selection of radio button
    under AT SELECTION-SCREEN   
    loop at screen and change the property "ACTIVE (0/1)" for the group you want
    & don't forget to modify screen table in the end.
    one more thing u should do is use addition USER-COMMAND with your radio buttons.
    PARAMETERS : r1 RADIOBUTTON GROUP r1 USER-COMMAND f1,
                 r2 RADIOBUTTON GROUP r1.
    PARAMETERS : p1 TYPE c MODIF ID a,
                 p2 TYPE c MODIF ID b.
    AT SELECTION-SCREEN . " output
      LOOP AT SCREEN .
        IF r2 = 'X' AND screen-name = 'P1'.
          screen-active = '0'.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
    Edited by: mrugesh phatak on Oct 8, 2008 11:00 AM

  • VALIDATION IN RADIO BUTTONS

    Hi every body ,
    Is it possible validate to different radio button groups ?
    Here is my JSF code :
    <h:selectOneRadio
        id="radio1"  
        layout="pageDirection"
        immediate ="true"
        value="#{multiSiteBacking.radio1Value}"
        valueChangeListener="#{multiSiteBacking.radio1Action}"
        required="true">
    <f:selectItem  itemLabel="Radio1" itemValue="4" />
    <a4j:support event="onclick" reRender="form" />
    </h:selectOneRadio>
    <h:selectOneRadio
        id="radio2"  
        layout="pageDirection"
        immediate ="true"
        value="#{multiSiteBacking.radio2Value}"
        valueChangeListener="#{multiSiteBacking.radio2Action}"
        required="true">
    <f:selectItem  itemLabel="Radio2" itemValue="4" />
    <a4j:support event="onclick" reRender="form" />
    </h:selectOneRadio>Here , when I am, clicking the Radio1 / Radio2 the validation of Radio2/Radio1 should be false .
    Is it possible assiging validation dynamically ?
    Thanks,
    SB

    Thanks again ,
    I have implimented ajaxSingle="true" and immediate="true" in my app , but it is giving a different problem.
    When user clicking the radio1 the radio2's value should be null & exactly opposite for radio2.For that reason am using a small code something like this in radio1 and radio2's valueChangeListener :
    PhaseId phaseId = valueChangeEvent.getPhaseId();
                  if (phaseId.equals(PhaseId.ANY_PHASE))
                       valueChangeEvent.setPhaseId(PhaseId.UPDATE_MODEL_VALUES);
                       valueChangeEvent.queue();
                      return;
    //For radio1 action
    //this.setRadio2Value(null);
    //For radio2 action
    //this.setRadio1Value(null); By this way I am able to achieve the check un-check functionality on my app.
    My radio1 and radio2's check un-check functionality is going perfect , but I am not able to validate both radio buttons.If I commenting out all those PHASE related code then only it is working fine .But at the same time my check un-check functionality is not working.
    Here is my small jsf view code :
    <h:selectOneRadio
         id="radio1"
         layout="pageDirection"
         immediate ="true"
         value="#{multiSiteBacking.radio1Value}"
            valueChangeListener="#{multiSiteBacking.radio1Action}"
         required="#{multiSiteBacking.radio1ValueCheck}" >
    <f:selectItem itemLabel="Radio1" itemValue="1" />
    <a4j:support event="onclick" ajaxSingle="true" reRender="form" />
    </h:selectOneRadio>
    <h:message rendered="#{multiSiteBacking.radio1ValueCheck}" for="radio1" />     
    <h:selectOneRadio
         id="radio2"
         layout="pageDirection"
         immediate ="true"
         value="#{multiSiteBacking.radio2Value}"
            valueChangeListener="#{multiSiteBacking.radio2Action}"
         required="#{multiSiteBacking.radio2ValueCheck}" >
    <f:selectItem itemLabel="Radio1" itemValue="1" />
    <a4j:support event="onclick" ajaxSingle="true" reRender="form" />
    </h:selectOneRadio>
    <h:message rendered="#{multiSiteBacking.radio2ValueCheck}" for="radio2" />     Here is my backing bean code :
    //For required fields:
    private boolean radio1ValueCheck=true;
    private boolean radio2ValueCheck=true;
    //radio1 and radio2's value
    private String radio1Value;
    private String radio2Value;
    //For radio1
    public void radio1Action(ValueChangeEvent valueChangeEvent) throws Exception
           PhaseId phaseId = valueChangeEvent.getPhaseId();
         if (phaseId.equals(PhaseId.ANY_PHASE))
                 valueChangeEvent.setPhaseId(PhaseId.UPDATE_MODEL_VALUES);
                 valueChangeEvent.queue();
                 return;
           this.setRadio2Value(null);
          this.radio1ValueCheck(false);
          this.radio2ValueCheck(false);
    //For radio2     
    public void radio2Action(ValueChangeEvent valueChangeEvent) throws Exception
            PhaseId phaseId = valueChangeEvent.getPhaseId();
         if (phaseId.equals(PhaseId.ANY_PHASE))
                 valueChangeEvent.setPhaseId(PhaseId.UPDATE_MODEL_VALUES);
                 valueChangeEvent.queue();
                 return;
            this.setRadio1Value(null);
            this.radio1ValueCheck(false);
            this.radio2ValueCheck(false);
    //Getter and setter are here....This is my problem.
    If you need more explanation please let me know .
    regards,
    SB

  • Exit on radio button

    Hi friends ,
    is it possible to make exit on radiobuttons.
    i want to disable 1 radio button out of 2 radiobutons and another radio button will be always enabled.
    if yes, how to do it.
    please help me with the procedure. i need to do on t code MRBR.
    THANK U,
    KAT.

    Hi,
    I can see MRBR is a report program. And i dont find any Exits in the report RM08RELEASE.
    So if this is critical, register this report in Service market place and get the access key for editing this report.
    Do exactly what Sriram mentioned. That is the way we disable one radiobutton.
    do you want the default button to be set on different radio button or completely disable one radio button ?
    //Kothand

  • Radio buttons with dropdowns?

    I'm creating a form for my company's HR department, and I need some radio buttons with dependent dropdowns.
    In other words, I'd like (for example) three radio buttons. No dropdowns appear until one of the buttons is selected, and then the appropriate dropdown appears. Is this possible? Or is there a better way to do this? I don't want the unselected dropdowns to be available.
    I have Pro 9 for Windows and Pro X for Mac. I know virtually nothing about scripting, but I know that it can be done.
    Thanks in advance for any help!
    Theresa

    Do I add this code to the group's action, or to individual radio button actions?
    To each individual radio-button.
    Do I make the dropdowns visible or hidden?
    Their visibility will be determined by the state of the radio-buttons. As default you can set them to be hidden, when no radio button is selected.
    Do I put any code in the dropdown properties, or just in the radio button properties?
    Just in the radio buttons.
    And when you say "embed this code at the doc-level," what does that mean?
    Go to Advanced - Document Processing - Document JavaScripts...
    Create a new script, remove the default text that appears in the window and paste the code I provided instead.

  • CRM Survey - How to remove Radio button defaults.

    Hi experts,
    I am trying to remove Radio button default. By default it is selected when I am trying to set attribute for answer options. Even if I unchecked, it reverts and set as selected again. Actually, I need remove Radio button default for the customer sees a response pre filled.
    Please advise on how can I remove Radio button default for answer options.
    Banu

    Hi,
    I see it now.
    You need to change the config of your radio buttons in the transaction itself.
    Goto CRM_SURVEY_SUITE, locate your survey, click on the change button ( a pencil) this will take you to the survey configuration.
    There navigation to the section in the left hand pane that corresponds to the radio buttons. And you will see Yes and No for answers to the questions. Double click on each of them to display on the right side work area and change the property 'Selected' (which is a check box) to unchecked.
    This should be easy.
    Regards
    Prasenjit

  • Help required : Dynamic Radio Buttons.

    Hi All,
    Requirement is as follows :
    1. I am having an internal table , suppose it has 5 records , then I need 5 radio buttons on screen.
    2. I need to dynamically name these radio buttons , based on one of the field of same internal table .
    Please help to get an optimised approach to implement the same .
    Thanks and Regards
    Harsh

    Hi Harsh,
      A better approch would be to create a selection-screen with 15 buttons to start and make invisible other radio buttons that you dont want in the at selection-screen output event.
    You can try like below:
    parameters: r1 radiobutton group rad1 default 'X',
                        r2 radiobutton group rad1,
                       r15 radiobutton group rad1.
    at selection-screen output.
    describe table itab lines n.
    l_cnt = 15 - n.
    do l_cnt times.
    n = n+1.
    concatenate 'r'  n  into l_radioname.      <<< n no of radio buttons wanted
    loop at screen.
    if screen-name = l_radioname.
    screen-invisible = 1.
    modify screen.
    endif.
    endloop.
    enddo.
    i hope you got a breif idea as to how you can go forward.
    Regards,
    Himanshu

Maybe you are looking for

  • Dowloading purchases from iTunes on a laptop

    I Purchased an album on iTunes on my iPad and when I tried to download that album from my purchased music in iTunes on my laptop running windows 8 it only downloaded 4 of the songs from the album.  How can I get the other songs?

  • TS1436 I CANT BURN A CD! VERY FRUSTRATING!!!! error message 4280 HELP!

    I need help burning a CD. i keep getting the message error 4280! HELP!

  • YouTube video not working

    I used to watch youtube videos everyday on my ipad2, it worked well until a few days ago. I can see thumbnail of the video fine, but when it started to load after a while it said " an error occurred , pls try later", I tried it repeatedly with the sa

  • Where is the best place for EXS samples?

    I finally upgraded from my G4 which had space issues. Now I'm wondering: Should EXS samples be on the boot drive or the media drive? How about Reason refill, RMX samples etc.? Thanks in advance!

  • Ads tracking my location despite privacy settings

    I noticed that the iAds at the bottom of the AP Mobile news app all seem to know my current location (they show a 'distance to nearest storefront'). I have privacy and location services set so that this should NOT happen. Settings -> Privacy -> Adver