Change frame's border color in JFrame

How can I change border color of frame?
I mean a border that contains title of frame.
Thanks.

You can do this, although I think the outcome is terrible:
JFrame.setDefaultLookAndFeelDecorated(true);
UIManager.put("activeCaption", Color.RED);
JFrame frame = new JFrame();

Similar Messages

  • How do I change an image border color to another color - Dreamweaver CS5?

    Good day,
    I have just learned how to add a border to an image with Dreamweaver CS5 within the Properties Inspector.
    After typing the width in pixels in the Border Text Field and pressing the Enter key, Dreamweaver created a black border.
    How do I change the image border color to another color?

    I added your suggested rule to the Style Sheet "in any order" as you explained. See the image below.
    However this did not change the image border from black to light blue. In fact, nothing changed.
    Nothing changed because the CSS that has been written into DW is incorrectly written.
    You want the following (exactly as written below)
    img {border: 4px solid #0062C8;}
    You've inadvertently wrapped the rule inside a #main_image container rendering it meaningless.
    It's easiest to go into Code View and change
    #main_image {
         img {border: 4px solid #0062C8;
    to
    img { border: 4px solid #0062C8; }
    The Property Inspector added a border exactly as I wanted it, other than the color I wanted the border to be. What is the use of this function in Property Inspector if it can add a border within Property Inspector but not let me change the COLOR of the black border that Property Inspector added, to another color?
    That's a deceptively simple, yet valid, question with a long answer.
    Back in the dark old days of web design web designers were restricted to inline HTML formatting which offered  border properties but no colors.
    CSS styling offers colors and more but has to be written differently.
    These days. it's best to avoid HTML formatting. Unfortunately border="4px" in the PI still allows it. But does not permit color.
    Does anyone else out there ever add color borders to their IMAGES (not the containing box for the image) ?
    Yes, using CSS.

  • Changing navi bar border color

    Hello, I need to change the border of my navi bar on the left
    hand side. I do not want the grey but a red and cannot figure out
    which part of the menu bar to change... You can see this
    goldenagecheese.com/newsitepages
    Thanks if someone can help me put the last finishing touches
    on my site it would be greatly appreciated!!!
    Also please check my site out and give me any suggestions for
    my site that would make it nicer.
    Thanks!!

    Hello,
    You have another rule over-riding the one Ken pointed out.
    So, as Ken said, adjust the border color here:
    /* Outermost menu container has borders on all sides */
    ul.MenuBarVertical
    border: 3px solid #FF0000;
    Then, get rid of the border color in this rule so it doesn't
    over-ride the
    red with gray:
    ul.MenuBarVertical
    margin: 0;
    list-style-type: none;
    font-size: 100%;
    cursor: default;
    width: 10em;
    padding: 0;
    font-weight: bold;
    border-color: #660000; <<<<<<<<
    Delete this
    I'm sorry to point this out, but have you looked at the site
    with the
    browser's text size setting 1 level higher than what your
    browser was when
    you designed it? It's severely broken and illegible in parts,
    especially
    around the form.
    Here's a screen shot from FireFox:
    http://tnsgraphics.com/chtext.htm
    This is because of the numerous APDivs (a.k.a Layers) which
    cause this
    problem when used as a layout tool.
    More info about the problem and the fix:
    http://apptools.com/examples/pagelayout101.php
    Take care,
    Tim

  • Change required field border color

    I have acro form created by Adobe 9 pro with required text field in it. The default border color for required field is red. Can I change it without javascript ?

    Can I with javascript override the default color of the required field which is set in the category Forms of the Acrobat preferences ?

  • Changing shape border color

    I'm working with Photoshop Elements 6
    I've created a round rectangle. I want the shape to be black with a white border. However whenever I finalize and save, my white border disappears and I'm just left with a black shape. Edit > Stroke is'nt highlighted, and for the life of me I can't figure out how to change it.
    Whenever I change the colors from black and white I dont seem to have this problem. How can I change/modify the BORDER COLOR of my shapes?

    Steve,
    1. Simplify the shape layer, and Edit>stroke will be available
    2. CTRL+left click the shape layer in the layers palette - should see marching ants
    3. Edit>stroke - ?outside
    4. If your background is white, you will not see the white of the stroke - need contrast
    http://www.pixentral.com/show.php?picture=1VIYN3bamn2z7lD5GsLsYAeYK0qJU1
    Let us know how you make out.
    Ken

  • Select List border color ?

    Hi,
    Is there a way to change the Select List border color (Drop down list) ? I tried to add some style in the HTML element attribute without success.
    Thank you.

    See
    http://p2p.wrox.com/topic.asp?TOPIC_ID=21626
    Doesnt seem like you can change either the border color or the style of the "arrow" on the select list
    You can style the individual options, see an example at
    http://htmldb.oracle.com/pls/otn/f?p=24317:104
    Hope this helps.

  • Border color when selecting field

    Post Author: RicoDeJong
    CA Forum: General
    Hi,
    When selecting a field in CR11 it doesn't come with a changed border color.
    On a different PC it does. Don't know where this configuration parameter is set?
    Anyone?

    Thanks Bibhu;
    The suggestion did not work that well but it did give me an idea. I used the code below in the "exit" event and I was able to change the the border color.
    switch (this.rawValue)
    case "1":
        this.font.fill.color.value = "0,0,0";
        this.border.fill.color.value= "255,255,255";
    Thanks Again Bibhu

  • How we can change JFrame Border Color Not Background.

    How we change jframe border color not background
    if any body know about that then plz tell me
    at this [email protected]
    i m thanksfull to ..... .

    hi Shafr
    beleive it or not, i got it using trial and error. i keep
    trying words in the function setStyle until the color changed. i
    dont know why it is not documented.
    var periodBarColor:SolidColor = new
    SolidColor(taskSchedColorChooser.selectedColor, 1);
    periodBar.setStyle("fill",periodBarColor);
    //where taskSchedColorChooser is colorPicker component. you
    can replace it by any color you want

  • Change background color  for JFrame

    hi,
    i want to change background color of JFrame. In my application i didn't create any panels.
    my code like this,
    Frame myFrame = new JFrame ( " Grid Layout Frame ");     
    myFrame.setSize(500,500);     
    myFrame.getContentPane().setBackground(Color.white);
    myFrame.setVisible(true);thanks,
    Balaji

    You don't get a white frame when you run this program?import java.awt.*;
    import javax.swing.*;
    public class junk
         public static void main(String[] args) throws Exception
              JFrame f = new JFrame("Hello");
              f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              f.setSize(500,500);
              f.getContentPane().setBackground(Color.white);
              f.setVisible(true);
    }

  • Changing border color, and caption imagesize

    Is i possible to change the size of the captionbar in a JFrame window? And also change the color of the JFrame window? If it's possible, please point me in the right direction!
    //George.F

    Hi all,
    I have opened the .pdf file with designer(open with), and I was trying to change the border color. But when I opened the .xdp file with designer, it was working perfectly. Other look & feel issues also solved automatically.
    Thanks,
    Prabhakar.

  • JDialog - change border color?

    Hi!
    Im trying to change the border color of a jdialog box. There is no setBorder method as there is for other components... also if I use getContentPane() - there is still no setBorder function that I can access.
    I figure that I can make a custom border object and use it in the program - but perhaps this is the wrong way to accomplish this...
    any ideas?

    also if I use getContentPane() - there is still no setBorder function that I can accessThe default content pane for a JDialog or JFrame is a JPanel. So you need to cast the content pane to a JPanel first before using the setBorder() method.
    You would also need to make the dialog undecorated (or is it decorated, I can never remember) to get rid of the default border.

  • Border color change of UILoader

    Hi
    Does anyone now how to change the border color of the
    UILoader component when user clicks on that. I have put UILoader in
    the sprite container and i need to implement that if user selects
    that UILoader its border color will be changed (to red may be).
    Please help me out . Here's the my dummy code for that.
    Basically what I need is the border of UILoader to be shown as soon
    as mousedown event is generated and the border to hide as soon as
    mouseup event is generated.
    Any help or any new idea will be highly appreciated.
    Thanks
    /****************CODE******************
    var container:Sprite=new Sprite();
    var myUILoader:UILoader = new UILoader();
    myUILoader.source = "XYZ.swf";
    myUILoader.load();
    container.addChild(myUILoader);
    addChild(container);
    myUILoader.addEventListener(MouseEvent.MOUSE_DOWN,dragUILoader);
    myUILoader.addEventListener(MouseEvent.MOUSE_UP,dropUILoader);
    myUILoader.addEventListener(MouseEvent.CLICK,
    moveSelectedVideoOnFront);
    function moveSelectedVideoOnFront(event:MouseEvent):void
    //Brings selected UILoader on top
    function dragUILoader(e:MouseEvent):void
    //Allows dragging of the UILoader
    function dropUILoader(e:MouseEvent):void
    //Allows dropping of the UILoader

    <a href="/HTML/index.html">Catalog</a>
    <a href="index.html">Home</a>  
    Just so you'll know, this is not a good way to link to the default file in any folder (including the root folder. These links *should* be like this -
    <a href="/HTML/">Catalog</a>
    <a href="/">Home</a>
    without mentioning the default filename. That's because when the site is spidered, the spider will think you have two different pages (in this case both default and index.html), and may penalize you for having "two" pages with identical content. So, anytime you are linking to the default file within a folder, just remove the filename from the link, and just link to the folder instead.

  • 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);
    }

  • How to change table border color in DW CS6

    I need to know how to change the color of the border around my tables in Dreamweaver CS6. I saw a article on how to change it on http://forums.adobe.com/message/4451812, but i really couldnt follow because im just starting out using dreamweaver and i dont know anything about code. Is there a simple way to change the border color or can you give me a basic step process on how to change the border color in the code?

    Just an FYI, nobody uses Table-based layouts anymore.  It's much better to use CSS for layouts.  Only use tables for tabular data like spreadsheets and charts.
    Dreamweaver has a bunch of pre-built CSS Layouts for you to use as starter pages.  Just go to File > New > Blank page > HTML.  Pick a layout from the 3rd panel and hit Create button.  See screenshot below.
    Nancy O.

  • I would like to change my back ground color in one frame for a logo that i am using I am able to change it on the canvas but not on the timeline?

    I would like to change my back ground color in one frame for a logo that i am using I am able to change it on the canvas but not on the timeline?

    Are you using FCPX? It doesn't have a canvas. Do you really mean one frame, like 1/30th of a second? Add a custom generator underneath the logo. Make it whatever color you want. Make it however short you want.

Maybe you are looking for