Still cannot change radio caption color by script

Hello,
I've been trying to follow advice seen in other threads when developers wanted to inactivate radio button choices by script, and also turn the caption grey. What I'm finding is I can deactivate the choice but I just cannot turn the caption grey.
If the exclusion group is named "MyRadioChoice" and the choices are (say) "Choice1", "Choice2", "Choice3" and due to other user input Choice3 becomes inapplicable, then the wisdom is this should work:
MyRadioChoice.Choice3.access = "readOnly";
MyRadioChoice.Choice3.caption.font.fill.color = "192,192,192";
The first statement works, the choice can no longer be clicked. But the second does not work, I just can't change the caption color. THe script does not throw any errors, it just plain doesn't work. Can anybody help?

You were right. That problem was driving me crazy. Thank you for the solution.

Similar Messages

  • I forgot my security answers and apple support sent me an email to fix the issue but only allowed me to change my password. I still cannot change security questions.

    I forgot my security questions and went threw Apple Support to change the answers. I was sent an email to change my password but still cannot change my security questions, how can I change my security questions?

    Alternatives for Help Resetting Security Questions and/or Rescue Mail
         1. If you have a valid rescue email address, then use this procedure:
             Rescue email address and how to reset Apple ID security questions.
         2. Fill out and submit this form. Select the topic, Account Security. You must
             have a Rescue Email to use this option.
         3. This is the only option if you do not already have a valid Rescue Email.
             These are telephone numbers for contacting Apple Support in your country.
             Apple ID- Contacting Apple for help with Apple ID account security. Select
             the appropriate country and call. Ask to speak to the Account Security Team.
         4. Account security issues almost always require you to speak directly to an
             Apple representative to securely establish your identity as the account holder.
             You can set it up so that Apple calls you, either immediately or at a time
             convenient to you.
                1. Go to www.apple.com/support.
                2. Choose Contact Support and click Contact Us.
                3. Choose Other Apple ID Topics and choose the appropriate topic for
                    your issue.
                4. Follow the onscreen instructions.
             Note: If you have already forgotten your security questions, then you cannot
             set up a rescue email address in order to reset them. You must set up
             the rescue email address beforehand.
    Your Apple ID: Manage My Apple ID.
                            Apple ID- All about Apple ID security questions.

  • Changing radio button colors

    When hovering over a radio button, how do you change the fill color of the radio button? The default appears to be a shaded orange, but I want the flexibility to change colors, as needed.
    Any suggestions?
    Thanks!
    jason@jones

    Try using the setBackground or setForeground methods. If that doesn't work, look through the docs for any other methods that change the color. If those don't work, look into writing a custom ui component, which is not trivial.

  • Cannot Change Photo Caption in Lightroom 2.3

    I am not able to get Lightroom 2.3 to change the caption of photos taken with a Sony A100.  The caption reads "Sony DSC."  All of my efforts to change this caption to something else have failed, including use of the "Save Metadata to File" command.  While the program initially reflects a change or deletion in the caption at first, when I navigate away from the photo and then return, it always reverts to "Sony DSC."  If someone can suggest a different approach or a workaround it would be much appreciated.  Note that this does not seem to be a problem with Photoshop Elements 6.  I have not yet tried to see if I can make this change in Bridge yet. Thanks.

    I have given up trying to find a solution in LR.  It stubbornly overwrites "Sony DSC" on every photo I import and wipes out all changes I try to make in the caption field. I have not found a direct fix in LR, causing me nothing but frustration. But I have found a workaround which sounds complicated but is really quite simple.  The key is to import via the import utility in PS Bridge rather than with the LR import dialogue.  You wipe out the description field which contains "Sony DSC" in Bridge.  Then you synchronize the folder in LR.  Problem solved.  Here are the steps for Windows users.
    Step 1:  Create a Custom Template in Bridge.  (a) Go to Tools - Create Metadata Template; (b) In the "Create Metadata Template" dialogue box: (1) under the "IPTC (IIM, legacy)" tab, place a check in the box next to "Description" and leave the field to the right blank (make sure no other boxes are checked); (2) under the "IPTC Core" tab, place a check in the box next to "Description" and leave the field to the right blank; (c) In the "Template Name" field replace "Untitled" with "Clear Sony DSC" (or whatever you want to call your template).
    Step 2: Import your photos with the import tool in Bridge (the key is not to import with LR).
    Step 3: (a) navigate to the newly imported file of images; (b) in Metadata view click on the top image in the folder and shift click on the last image in the folder to select all; (c) right click on one of the selected images and click on "File info . . .; (d) In the dialogue box that appears, click on the down arrow next to the "Import" button; (e) one of the options should be "Clear Sony DSC" (or whatever you named your template), click on that: (f) an "Import Options" dialogue box will appear, with three choices.  Choose the first of the three "Clear existing properties and replace with template properties."  (Note this will only overwrite "Sony DSC" in the description fields of the metadata and leave those fields blank and will not overwrite any other metadata.); (g) That will return you to the File Information dialogue box. Click the "OK" button at the bottom.  Bridge will now take some time overwriting the description fields in the metadata attached to your images.
    Step 4:  Go to LR.  In the Develop module navigate to the folder in which this new folder of images was placed by Bridge.  In the top menu go to Library - Synchronize Folders. Lightroom will now capture this folder of images in your LR catalogue and the attached metadata but thankfully not the troublesome "Sony DSC", so you should be free to edit the caption field in LR.  Do not use "Import Photos from Disk at this seems to recreate the problem and results in duplicate images.
    Let me know if this works for you. 

  • Why I cannot change font  and Color in JFrame title??

    Dear sir:
    I try to change font and Color in JFrame title in code below,
    It display all html code, not expected formatted ones.
    but fail. Looks like no way to do it??
    Can somebody help??
    Thanks
    import java.awt.BorderLayout;
    import java.awt.Toolkit;
    import javax.swing.*;
    public class JFrameTester {
      public static void main(String[] args) {
         String iconPath ="file:C:/eclipse/workspace/Test/images/long.PNG";
         String title = "<html><body bgcolor=\"yellow\">" + "<img src=\""+iconPath+"\">" +
              " <font size=\"6\" face=\"Verdana\" color=\"red\"><b>"+ "New Tester" + "</b></font></html>";
        JFrame f = new JFrame(title);
        f.setIconImage(Toolkit.getDefaultToolkit().getImage("images/123.gif"));
        f.setSize(250, 250);
        f.setLocation(300,200);
        f.getContentPane().add(new BorderLayout().CENTER, new JTextArea(10, 40));
        f.setVisible(true);
    }

    Looks like no way to do it??depends on the L&F you want.
    here's one way
    import java.awt.*;
    import javax.swing.*;
    class JFrameTester {
      public static void main(String[] args) {
        JFrame.setDefaultLookAndFeelDecorated(true);
        UIManager.put("activeCaption", new javax.swing.plaf.ColorUIResource(Color.RED));
        UIManager.put("activeCaptionText", new javax.swing.plaf.ColorUIResource(Color.YELLOW));
        String title = "Hello World";
        JFrame f = new JFrame(title);
        f.getLayeredPane().getComponent(1).setFont(new Font("Tall Paul",Font.ITALIC,24));
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setSize(250, 250);
        f.setLocation(300,200);
        f.getContentPane().add(new BorderLayout().CENTER, new JTextArea(10, 40));
        f.setVisible(true);
    }

  • Cannot change internal graph color in Conky

    Hey everyone,
    I have run into a problem when configuring my Conky widget for my fresh Arch install.  I installed Conky and am using a modified configuration that I found here on the forums.  The contents of my conky.conf file are found below:
    background yes
    use_xft yes
    xftfont Sans:size=8
    xftalpha 1
    update_interval 1.0
    total_run_times 0
    own_window yes
    own_window_transparent yes
    own_window_type desktop
    own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
    double_buffer yes
    minimum_size 500 250
    maximum_width 200
    draw_shades yes
    draw_outline no
    draw_borders no
    draw_graph_borders yes
    default_color white
    default_shade_color black
    default_outline_color white
    alignment top_right
    gap_x 12
    gap_y 35
    no_buffers yes
    uppercase no
    cpu_avg_samples 4
    override_utf8_locale no
    text_buffer_size 1024
    TEXT
    ${font sans-serif:bold:size=9:}${color CFCFCF}SYSTEM ${color 818181}${hr 2}
    ${font sans-serif:normal:size=8}${color 818181}$sysname $kernel $alignr$machine
    Host: $alignr$nodename
    Uptime: $alignr$uptime
    File System: $alignr${fs_type}
    ${font sans-serif:bold:size=9}${color CFCFCF}PROCESSORS ${color 818181}${hr 2}
    ${font sans-serif:normal:size=8}${color 818181}CPU (Avg): $alignr ${cpu cpu0}%
    ${cpugraph cpu0 40,200 237BEE -l}
    Core 1: ${cpu cpu1}% ${cpubar cpu1}
    Core 2: ${cpu cpu2}% ${cpubar cpu2}
    Core 3: ${cpu cpu3}% ${cpubar cpu3}
    Core 4: ${cpu cpu4}% ${cpubar cpu4}
    ${font sans-serif:bold:size=9}${color CFCFCF}MEMORY ${color 818181}${hr 2}
    ${font sans-serif:normal:size=8}${color 818181}RAM $alignc $mem / $memmax $alignr $memperc%
    $membar
    ${font sans-serif:bold:size=9}${color CFCFCF}DISKS ${color 818181}${hr 2}
    ${font sans-serif:normal:size=8}${color 818181}Root $alignc ${fs_used /} / ${fs_size /} $alignr${fs_used_perc /}%
    ${fs_bar /}
    Home $alignc ${fs_used /home/johnmichael} / ${fs_size /home/johnmichael} $alignr ${fs_used_perc /home/johnmichael}%
    ${fs_bar /home/johnmichael}
    ${font sans-serif:bold:size=9}${color CFCFCF}TOP PROCESSES ${color 818181}${hr 2}
    ${font sans-serif:bold:size=8}${color A8A8A8}${top_mem name 1}${alignr}${top mem 1} %
    ${top_mem name 2}${alignr}${top mem 2} %
    ${font sans-serif:normal:size=8}${color 818181}$font${top_mem name 3}${alignr}${top mem 3} %
    $font${top_mem name 4}${alignr}${top mem 4} %
    $font${top_mem name 5}${alignr}${top mem 5} %
    ${font sans-serif:bold:size=9}${color CFCFCF}NETWORK ${color 818181}${hr 2}
    ${font sans-serif:normal:size=8}${color 818181}IP address: $alignr ${addr wlan0}
    ESSID: $alignr ${wireless_essid wlan0}
    Connection Quality: $alignr ${wireless_link_qual_perc wlan0}%
    $alignr${font sans-serif:normal:size=8}Download
    ${font sans-serif:normal:size=8}${downspeedgraph wlan0}
    ${downspeed wlan0}/s $alignr ${totaldown wlan0}
    $alignr${font sans-serif:normal:size=8}Upload
    ${font sans-serif:normal:size=8}${upspeedgraph wlan0}
    ${upspeed wlan0}/s $alignr ${totalup wlan0}
    ${font sans-serif:bold:size=9}${color CFCFCF}EMAIL ${color 818181}${hr 2}
    ${font sans-serif:normal:size=8}${color 818181}Gmail Messages: $alignr ${execpi 300 python ~/.scripts/gmail.py}
    GA Tech Messages: $alignr ${execpi 300 ~/.scripts/imap.pl}
    The problem that I am having is in trying to specify the internal color of the cpu graph for the average cpu activity:
    ${cpugraph cpu0 40,200 237BEE -l}
    I want to keep the boarder of the graph the same darkish grey color as the rest of the widget but I want to change the color of the portion of the graph inside the boarder to a blue color, e.g. the hex color in the code above, or more specifically to match the blue that I am using in my Archey and prompt in urxvt.
    I looked up the Conky variable defintions for how to do this and apparently you specifiy gradientcolor1 and gradientcolor2 after the size definition, similar to how I have done it in my conifg (I know that I am only using one color in the above code but it is still not working even when I define two different colors).
    Here is a picture of my desktop:
    http://ompldr.org/vZzR6dw
    As you can see the internal portion of the graph is the same grey color as the majority of the widget.  I searched extensively on the forums and Google for a solution but everything that I try doesn't work. 
    Any suggestions?

    I hope this is 'fixed' by Apple in a mail.app update.
    Let them know what you want via the feedback channel:
    http://www.apple.com/feedback/macosx.html
    But Mail has never had a provision for setting the default font, size, or color in its preferences and there is no indication this will ever be changed.
    A related thread:
    http://discussions.apple.com/thread.jspa?threadID=1467587&start=0&tstart=0

  • Cannot read black and gray menu bar, cannot change theme or color!!!!!!!

    how do I change the color of the menu bay. I cannot read it.

    You may have installed a persona that isn't working properly.<br />
    You can uninstall your current Persona and revert to the Default theme (Tools > Add-ons > Themes).
    See:
    * https://support.mozilla.com/kb/Personas
    * https://support.mozilla.com/kb/Using+themes+with+Firefox

  • Cannot change JToggleButton background color when Windows XP theme is used

    I wanted to change the background of a JToggleButton when it's pressed. I tried a few things, such as
    UIManager.put("ToggleButton.select", Color.RED);
    setting button's background, button's UI.
    but nothing worked.
    so I tried changing desktop theme from Windows XP to Windows Classic, then i was able to set button's background.
    The following is a simple test program, by switching theme, the toggleButton looks differently.
    Does anyone know how I can change JToggle button's background color under Windows XP theme?
    Thank you in advance!
    import javax.swing.*;
    import java.awt.*;
    public class ToggleTest {
        public static void createGUI(){
            JToggleButton button = new JToggleButton("Test");
            button.setBackground(Color.BLUE);
            JFrame testFrame = new JFrame("Test Frame");
            testFrame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
            testFrame.getContentPane().setLayout(new FlowLayout(FlowLayout.CENTER));
            testFrame.getContentPane().add(button);
            testFrame.pack();
            testFrame.setVisible(true);
        public static void main(String[] args){
            try{
                UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                //UIManager.put("ToggleButton.select", Color.RED);
            catch(Exception ex){
                ex.printStackTrace();
            SwingUtilities.invokeLater(new Runnable(){
                public void run(){
                    createGUI();
    }

    class myToggleBtn extends JToggleButton {
      String s;
      public myToggleBtn(String str, Boolean sel) {
        super(str, sel);
        s = str;
      public void paintComponent(Graphics g) {
        super.paintComponent(g);
        if (this.isSelected()) {
             int w = getWidth();
             int h = getHeight();
             g.setColor(Color.green); //selected color
             g.fillRect(0, 0, w, h);
             g.setColor(Color.darkGray); //selected foreground color
             g.drawString(s, (w - g.getFontMetrics().stringWidth(s))/2 + 1, (h + g.getFontMetrics().getAscent())/2 - 1);
    }

  • I click on layouts and still cannot change book size

    I'm trying to change the size of the ibook before I buy it. I've tried several options buy cannot figure it out. Any help would be appreciated. 

    duplicate the book for safety and then click on themesand select teh same theme with a new size
    LN

  • Cannot change scale ramp colors on my dial

    This should be noob stuff but I can't seem to change the scale ramp colors on my dial gauge. I need something very dynamic. Thanks in advance.
    PaulG.
    "I enjoy talking to you. Your mind appeals to me. It resembles my own mind except that you happen to be insane." -- George Orwell
    Solved!
    Go to Solution.

    Have you tried using the "color box constant" from "programming->dialogue and user interface" and connecting that up?
    Attachments:
    color.png ‏39 KB

  • I have merged mobile me to iCloud but still cannot change preferences on my Mac Pro.

    I had mobile me (family plan) and I upgraded to icloud last night. My phone and ipad are using iclould fine, but when I go to the preference pane in MAC OSX it still comes up with the screen that has the button that says "move to icloud" .   If I hit that button it takes me to the mobile me find my iphone, then if I type my password it takes me to a page with a button that says Open icloud...which I do.....then it opens icloud. Seems to be ready to go but everytime I try to go to preferences it starts at the beginning all over again....anyone have any idea why this is happening?

    LukeW wrote:
    My phone and ipad are using iclould fine, but when I go to the preference pane in MAC OSX it still comes up with the screen that has the button that says "move to icloud" .
    Your signature says you have 10.6.1 - is this correct? iCloud won't work on that, it requires 10.7.2. (If your signature isn't correct, please amend it - it makes a considerable difference to some answers depending on what system you have.)

  • Cannot change caption in offline previews

    I want to change the caption in several images.
    I CAN CHANGE the captions for those images that reside on my disk.
    I CAN CHANGE the captions of preview images for images I have on CDs.
    I CANNOT CHANGE the captions of preview images for images I have on CDs when the caption was initially generated in PSE 6.
    I CAN CHANGE all other fields of preview images for images I have on CDs when the caption was initially generated in PSE 6.
    I am on Windows XP.  The images that I am trying to change are jpegs.
    I searched through the forums and have found that people are/were having problems changing this field, but none of those problems seem to be exactly the same as the problems I am having.
    So, how do I change this field?  I still have 28 days in the trial period to decide if I want to pay for Lightroom or just stick with PSE 6.  There seem to be a lot of bugs in Lightroom.  Is there a list of bugs anywhere?  Is my problem on that list?
    Ray

    Frankly, I doubt if it is something people would expect to do.  If you had save metadata to file automatically set what would you expect to happen?
    That said, I would also encourage you to not rely on CDs or DVDs, which have been shown to be pretty unreliable.  Disks are extremely cheap now and makes life much easier.  I keep originals and two backups and am trying to figure out where to keep the second backup out of my house but easy to access.  I tried offline via the internet but have concluded this is not a good solution.
    Judy

  • Cannot change background color

    I cannot change chart background color,can someone help me .

    Hi,
    You could change the style of chart plotarea by using below code:
    <UserControl.Resources>
    <Style x:Key="GridStyle1" TargetType="Grid">
    <Setter Property="Background" Value="White"/>
    </Style>
    </UserControl.Resources>
    Besides, link below could give you some help:
    http://msdn.microsoft.com/en-us/expression/dd433476.aspx
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I upgraded to IOS7 om my phone and want to change my font color, but cannot see how to do this

    I upgraded to IOS7 and now in notes I cannot change the font color, is there away to do this. I am a little fusterrated with IOS7. Just changed it over a couple of days ago.

    Settings > General > Accessibility ...
    Then choose something like "Increase Contrast" or "Larger Type".

  • I cannot change my desktop Picture On Mac Os 10.10.1

    I having a problem once i update to mac os 10.10, Update to 10.10.1 also the same issues. My desktop picture still cannot change.It appear Could not load Desktop & Screen Saver preference pane..
    Kindly advise for this case.
    Thanks & Regard,

    I am experiencing the very same problem. I recently installed Yosemite, last OS was Maverick on my iMac 10,1. I've tried moving the desktop.plist from library - preferences to my desktop, restarting etc. to no avail. I've tried changing permissions on the current and stuck desktop image. No luck there. Any similar experiences? Ideas? Solutions?
    Thanks all

Maybe you are looking for