Scroll bar color to set to same as the color specfied in .cfg color scheme

Hi Nimphius
I set the in .cfg file color scheme to Khaki and my manager likes the color for all forms across but I can not set same color to scroll bar, I tried to give the back ground property to r140g142b123 but forms not taking it.
Can you please help me how to set get same color (Khaki) to scroll bar.
Please reply if anybody face same kind of problem.
Thanks in advance
Murthy

This is problem with Oracle forms, They design something and that might not work with other colors.
When they put color scheme to Khaki, Dont they think to give same visual attribute to give in property pallte,
Last time I had tought time integrating web utils built-in.
I do not know what to do get out of this silly stupid color issue.
I appreciate if any of forms designers thought of this issue.
Any feed back is welcome.
Thanks in advance.
Murthy

Similar Messages

  • Why is there a scroll bar though I set the background image to "scale to page size"?"

    Why is there a scroll bar though I set the background image to "scale to page size"?"

    The current build of iTunes may occasionally draw the scroll bar off the edge of the screen. It should be possible to resize the window to reveal the scroll bar.
    You can restore much of the look & feel of the previous version with these shortcuts:
    Ctrl-B to turn on the menu bar.
    Ctrl-S to turn on the sidebar.
    Ctrl-/ to turn on the status bar.
    Click the magnifying glass top right and untick Search Entire Library to restore the previous search behaviour.
    You can also open the menu bar temporarily by pressing Alt.
    tt2

  • How to make the scroll bar in flex automate to focus on the new ui component added in the canvas?

    Hi all ,
    There is a canvas container where am adding charts in separate windows.
    So whenever a new chart is added the scroll bar needs to set the focus on the present chart window.
    For this i made the functionality for the canvas container to scroll whenever a new chart is added using the below code
    canvasContainer.verticalScrollPosition = canvasContainer.maxVerticalScrollPosition;
    But the calculations for the vertical position are not precise...
    Is there anything else I should do to make the scroll happen automatically as the chart windows get added in the container ??
    Any suggestions pls
    Regards,
    Ajantha

    Many many thanks to Frank,
    In the css,use the follwing style settings to hide the scroll bar
    af|carousel::spin-bar{    
    visibility: hidden;
    af|carousel::spin-h-previous-icon-style{
    visibility: hidden;
    af|carousel::spin-h-next-icon-style{
    visibility: hidden;
    af|carousel::spin-info{
    visibility: hidden;
    }

  • Status Bar Color Scheme

    The status bar color scheme changed on my Galaxy SIII. Both the Battery and Signal Strength indicator bar used to be green - now it is white...which i do not like. Is there a way to change the color back to its original state?

    Why on earth would they change the color scheme of the indicators when they release the latest OS update? What the coloring scheme harming or slowing down the performance of the phone?

  • Problem changing scroll bar color using UIManager

    I am using the following code to change the color of a JScrollBar just before instantiating a JScrollPane:
    [ code ]
    //set colors
    UIManager.put("ScrollBar.thumbLightShadow", ltGrn );
    UIManager.put("ScrollBar.thumb", grn );
    UIManager.put("ToolBar.thumb", ltGrn );
    UIManager.put("ScrollBar.thumbDarkShadow", darkGrn );
    UIManager.put("ScrollBar.thumbShadow", darkGrn );
    UIManager.put("ScrollBar.thumbHighlight", ltGrn );
    //instantiate
    JScrollPane scrollPane = new JScrollPane( table );
    //reset UIManager
    UIManager.put("ScrollBar.thumbLightShadow", null );
    UIManager.put("ScrollBar.thumb",null );
    UIManager.put("ToolBar.thumb", null );
    UIManager.put("ScrollBar.thumbDarkShadow", null );
    UIManager.put("ScrollBar.thumbShadow", null );
    UIManager.put("ScrollBar.thumbHighlight", null );
    [ /code ]
    where ltGrn, darkGrn, and grn are various shades of green.
    Everything works fine, UNTIL I open another JFrame that is part of the same program. After doing this, the original scroll bar above is still green, EXCEPT the border of it has changed to Metal Theme puple from green. In addition, if that second JFrame has any JScrollBars of it's own, they are Metal Theme purple with a green border! It seems to be a bug since only one part of the JScrollBar changes. If anyone has any suggestions on this I thank you in advance.
    AC

    When I execute the following I see identical modified scrollbars on the two frames that are created within this little app. I am relatively new to Java, so the design might not be great here, but the code will compile and run as is. You can use this to see if you still see the effect you have described. I am using version 1.4.1_03 on Red Hat Linux 8.0.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.plaf.*;
    public class Frame extends JFrame implements ActionListener
         JButton btnOne = new JButton("First Frame");
         JButton btnTwo = new JButton("Second Frame");
         public static void main(String[] args)
              Frame f = new Frame();
              f.setSize(300, 300);
              f.show();
         public Frame()
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              redesignScroll();
              // This method resets the default colors for the scrollbars..
              btnOne.addActionListener(this);
              btnTwo.addActionListener(this);
              Container contentPane = getContentPane();
              contentPane.setLayout(new GridLayout(2, 1, 5, 5));
              contentPane.add(btnOne);
              contentPane.add(btnTwo);          
         public void actionPerformed(ActionEvent e)
              if (e.getSource() == btnOne)
                   new FirstPopUp();
              else new SecondPopUp();
         private void redesignScroll()
              final Color cBkd = new Color(97, 115, 87);
              UIDefaults defaults = UIManager.getDefaults();
              defaults.put("ScrollBar.thumbHighlight",
                        new ColorUIResource(Color.darkGray));
              defaults.put("ScrollBar.thumbShadow",
                        new ColorUIResource(Color.black));
              defaults.put("ScrollBar.shadow",
                        new ColorUIResource(Color.black));
              defaults.put("ScrollBar.background",
                        new ColorUIResource(cBkd));
              defaults.put("ScrollBar.darkShadow",
                        new ColorUIResource(Color.black));
              defaults.put("ScrollBar.thumb",
                        new ColorUIResource(cBkd));
              defaults.put("ScrollBar.highlight",
                        new ColorUIResource(Color.black));     
         private class FirstPopUp extends JFrame
              private JScrollPane sp;
              private String text = "Hello World!  First Pop Up!\n ";
              private JTextArea area;
              FirstPopUp()
                   area = new JTextArea();
                   int i = 0;
                   while (i < 20)
                        area.append(text);
                        i++;
                   sp = new JScrollPane(area);
                   getContentPane().add(sp);
                   setSize(200, 200);
                   show();
         private class SecondPopUp extends JFrame
              private JScrollPane sp;
              private String text = "Hello World!  Second Pop Up!\n ";
              private JTextArea area;
              SecondPopUp()
                   area = new JTextArea();
                   int i = 0;
                   while (i < 20)
                        area.append(text);
                        i++;
                   sp = new JScrollPane(area);
                   getContentPane().add(sp);
                   setSize(200, 200);
                   show();
    }

  • Scroll bar color of Visual Composer : how to change it ?

    Hello Comunity,
    I am developing application using Visual Composer within EP7.01 SP6, and I can not manage to find how to change the original blue of Visual Composer application for scroll bar.
    Does anyone knows where to change this color ? I believe it is a general color that is defined somewhere that needs to be change in the portal theme editor in the Visual Composer part, but I did not find it...
    Any help appreciated !
    Thanks a lot.
    Fabien.

    Hi
    Its not inside Visual Composer application. You have to do it at Enterprise Portal level.
    Also inside VC model you need to select 'Flash Runtime' from tools (Options).
    Basically you need to change theme settings in content administration of VC.
    Regards
    Sandeep

  • Scroll Bar Color

    Is it possible to change the rather anemic lookin gray scroll bars in Lion back to the more visible blue color os Snow Leopard?

    Maybe! I wouldn't bank on it though, seems to be a design choice.
    I'm no fan of it myself (in fact I still mostly use Snow Leopard because its visually and functionally better designed, but there you go!).

  • SCROLL BAR OF WINDOW DOES NOT APPEAR IN THE WEB

    Hi OTN Memebers,
    My problem is in one of my form the canvas type is content. It's
    size is bigger than that of windows size. When i run the form in
    the client/server enviroment, the window scroolbars are
    displayed. But when i try to deploy the from on the web , the
    window scroll bars are not displayed.
    Any solution for this. Please help me out.
    Feroz.
    null

    Feroz A. Khan (guest) wrote:
    : Hi OTN Memebers,
    : My problem is in one of my form the canvas type is content.
    It's
    : size is bigger than that of windows size. When i run the form
    in
    : the client/server enviroment, the window scroolbars are
    : displayed. But when i try to deploy the from on the web , the
    : window scroll bars are not displayed.
    : Any solution for this. Please help me out.
    : Feroz.
    This is a VERY OLD known problem with the product. The solution
    is to put your content canvas on a stacked canvas and give the
    stacked canvas scroll bars. Then disable the windows scroll
    bars, otherwise you'll end up with 2 sets in Client/Server
    mode...
    Mark
    null

  • Scroll bar....isn't in the JScrollBar...why?

    Hey, Ive created a perfect scroll bar, in a swing app, it looks perfect...except in my JScrollBar, there are no bars....why?
    Here's my code...
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~Beginning of Code~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    * Summary description for gui
    public class MapEditor extends JFrame
    private JScrollPane jScrollPane1;
    private JScrollPane jScrollPane3;
    private JButton jButton2;
    private JButton jButton3;
    private JButton jButton6;
    private JButton jButton7;
    private JButton jButton8;
    private JButton jButton9;
    private JButton jButton10;
    private JButton jButton11;
    private JButton jButton12;
    private JPanel contentPane;
    // TODO: Add any attribute code to meet your needs here
    public MapEditor()
         super();
         initializeComponent();
         // TODO: Add any constructor code after InitializeComponent call
         this.setVisible(true);
    private void initializeComponent()
         jScrollPane1 = new JScrollPane();
         jScrollPane3 = new JScrollPane();
         jButton2 = new JButton();
         jButton3 = new JButton();
         jButton6 = new JButton();
         jButton7 = new JButton();
         jButton8 = new JButton();
         jButton9 = new JButton();
         jButton10 = new JButton();
         jButton11 = new JButton();
         jButton12 = new JButton();
         contentPane = (JPanel)this.getContentPane();
         // jScrollPane1
         // jScrollPane3
         // jButton2
         jButton2.setText("Rock");
         jButton2.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent e)
                   jButton2_actionPerformed(e);
         // jButton3
         jButton3.setText("Grass");
         jButton3.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent e)
                   jButton3_actionPerformed(e);
         // jButton6
         jButton6.setText("Grass2");
         jButton6.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent e)
                   jButton6_actionPerformed(e);
         // jButton7
         jButton7.setText("Water 1");
         jButton7.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent e)
                   jButton7_actionPerformed(e);
         // jButton8
         jButton8.setText("Path");
         jButton8.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent e)
                   jButton8_actionPerformed(e);
         // jButton9
         jButton9.setText("Water 3");
         jButton9.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent e)
                   jButton9_actionPerformed(e);
         // jButton10
         jButton10.setText("Dirt");
         jButton10.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent e)
                   jButton10_actionPerformed(e);
         // jButton11
         jButton11.setText("Snow");
         jButton11.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent e)
                   jButton11_actionPerformed(e);
         // jButton12
         jButton12.setText("Water 2");
         jButton12.addActionListener(new ActionListener() {
              public void actionPerformed(ActionEvent e)
                   jButton12_actionPerformed(e);
         // contentPane
         contentPane.setLayout(null);
         addComponent(contentPane, jScrollPane1, 0,0,476,408);
         addComponent(contentPane, jScrollPane3, 476,86,248,290);
         addComponent(contentPane, jButton2, 476,1,83,28);
         addComponent(contentPane, jButton3, 559,1,83,28);
         addComponent(contentPane, jButton6, 643,1,83,28);
         addComponent(contentPane, jButton7, 476,30,83,28);
         addComponent(contentPane, jButton8, 476,58,83,28);
         addComponent(contentPane, jButton9, 643,30,83,28);
         addComponent(contentPane, jButton10, 643,58,83,28);
         addComponent(contentPane, jButton11, 559,58,83,28);
         addComponent(contentPane, jButton12, 560,30,83,28);
         // gui
         this.setTitle("gui - extends JFrame");
         this.setLocation(new Point(0, 0));
         this.setSize(new Dimension(729, 627));
    /** Add Component Without a Layout Manager (Absolute Positioning) */
    private void addComponent(Container container,Component c,int x,int y,int width,int height)
         c.setBounds(x,y,width,height);
         container.add(c);
    // TODO: Add any appropriate code in the following Event Handling Methods
    private void jButton2_actionPerformed(ActionEvent e)
         // TODO: Add any handling code here
    private void jButton3_actionPerformed(ActionEvent e)
         // TODO: Add any handling code here
    private void jButton6_actionPerformed(ActionEvent e)
         // TODO: Add any handling code here
    private void jButton7_actionPerformed(ActionEvent e)
         // TODO: Add any handling code here
    private void jButton8_actionPerformed(ActionEvent e)
         // TODO: Add any handling code here
    private void jButton9_actionPerformed(ActionEvent e)
         // TODO: Add any handling code here
    private void jButton10_actionPerformed(ActionEvent e)
         // TODO: Add any handling code here
    private void jButton11_actionPerformed(ActionEvent e)
         // TODO: Add any handling code here
    private void jButton12_actionPerformed(ActionEvent e)
         // TODO: Add any handling code here
    // TODO: Add any method code to meet your needs in the following area
    public static void main(String[] args) {
              new MapEditor();
    }

    Hi,
    please use code tag when posting so much code.
    It eases a lot reading your code.
    Hey, Ive created a perfect scroll bar, in a swing app,
    it looks perfect...except in my JScrollBar, there are
    no bars....why?basically because there is nothing to scroll and even to view !!
    nowhere in your code appears a call to :
    jScrollPane1.setViewportView(Component view);
    Moreover the scroll bar appearance policy, by default is when needed.
    When needed means that if the component prefered size you wish
    to view is greater than the one of the JScrollPane, they will appear
    otherwise they won't.
    So, what would you like to see in you JScrollPane ? the buttons ?
    regards,

  • The scroll bar for Firefox cannot be controlled by the mouse, the only way I can scroll is with the arrow keys, help!!

    I have a brand new Dell Alienware laptop running Windows 7 and I just installed the latest Firefox browser. My problem is that the scroll bar for the browser does not work when using the mouse... the mouse cannot control the scroll bar either by clicking the up or down arrow or by dragging the bar with the mouse. The only way for me to scroll using Firefox is to use the arrow keys on my keyboard.

    Alternatives to Reset Security Questions and Rescue Mail
         1. Apple ID- All about Apple ID security questions.
         2. Rescue email address and how to reset Apple ID security questions
         3. Start here to find your country, and how you can contact Apple:
             Apple ID- Contacting Apple for help with Apple ID account security.
         4. Fill out and submit this form. Select the topic, Account Security.
         5.  Call Apple Support in your country and ask to speak to Account Security.
              Customer Service: Contacting Apple for support.
    How to Manage your Apple ID: Manage My Apple ID

  • How can I add scroll bars to a textarea and setfocus at the end of the box.

    I didn't see a scrollbar option so I was wondering how would I add one? Also how can I setfocus to the last line in the textarea?

    You have to create a JScrollPane that will enclose the TextArea as in new JScrollPane (yourTextArea).
    You can setFocus to any Component and you can position the caret in an TextArea.
    Regards
    SH

  • Show Scroll Bar set to yes leads to exit form

    We have converted our forms from Forms 5 to Forms 6 with Patch 7. If in any of the blocks the "Show Scroll Bar" property is set to Yes then the moment the form is executed it exits. Why does this happen ? Any solution !
    Thanks in advance.

    Select the entire line that follows (triple-click to select it), then control-click, and from the contextual menu that appears, select Services > Reveal in Finder:
    ~/Library/Preferences/com.apple.finder.plist
    Drag that file to the Desktop, then restart the Finder by following these instructions:
    OS X: How to quit an unresponsive application using Force Quit
    If you determine that does not help or causes other problems you can undo the effects of the above by dragging that file from the Desktop to its original location.

  • Unwanted/unneeded scroll bars in Safari 4

    I have a blog (www.RabbiBen.org) that suddenly began to show scroll bars next to each entry, in addition to the usual bars at the right side of a window. These bars only appear in Safari, not in any other browser I have tried. Is there a way to get rid of them in Safari?
    My guess is no, given the number of posts regarding problems with Safari 4. Maybe Apple rushed this release too much.
    If anyone has any suggestions, I would appreciate it.
    Thanks,
    Ben Sendrow

    Just looked at you page. Imeditly I knew what the problem was...
    Here's the text box div tag, div class="sfblogentry"...
    *The css for the above div should be set to none for scroll bars or not set at all in the css.* The scroll bar is set to auto. When set to auto some browsers will show a scroll bar even is one is not needed. Or, when set to auto the text inside the div is so close to the inner walls of the text box. The browser will trigger for a scroll bar even if a scroll bar is not needed.
    Here's a link to what your page should look like in Safari.
    Click to view your fixed sample web page.
    Was an easy fix took less than a minute to fix. There may be some elements missing and I didn't want to short through all the css pages to re-link them. There is six some odd css pages. Way to many css pages for a simple page like your.
    To be honest with you, the html and css coding is a mess. If someone else was to take over the coding for your web page. It would be faster to rebuild the site than to work with what you have been provided.
    Message was edited by: David M Brewer

  • [ADF-11.1.2] Setting Table "columnStretching" brings dummy scroll bar

    I am facing a problem where in whenever I set "columnStretching" property of af:table component (which is inside panel collection), a dummy and ugly horizontal scroll bar appears on browser.
    I am facing this issue at least with Google Chrome and Firefox.
    Screenshot: [3 Screen shots uploaded|http://imageshack.us/g/651/withoutcolumnstretching.jpg/]
    Is this an issue with ADF or in the way I am using it ?
    Step to reproduce the issue:
    1. DnD Panel Collection inside Panel Splitter
    2. DnD Table insider Panel Collection OUTPUT : At this point everything is OK- SCREENSHOT1
    3. Set columnStretching property of table to any valid value.
    4. Run the page, at first, you may not find anything weird, OUTPUT: SCREENSHOT2
    5. On browser, move the splitter to change the visual hight/width of table, you will notice a horizontal bar - SCREENSHOT3
    Now, no matter what you do, you won't be able to come out of horizontal bar.
                  <af:panelSplitter id="ps1" orientation="vertical">
                    <f:facet name="first">
                      <af:panelCollection id="pc1">
                        <f:facet name="menus"/>
                        <f:facet name="toolbar"/>
                        <f:facet name="statusbar"/>
                        <af:table value="#{bindings.DepartmentsView1.collectionModel}"
                                  var="row"
                                  rows="#{bindings.DepartmentsView1.rangeSize}"
                                  emptyText="#{bindings.DepartmentsView1.viewable ? 'No data to display.' : 'Access Denied.'}"
                                  fetchSize="#{bindings.DepartmentsView1.rangeSize}"
                                  rowBandingInterval="0"
                                  selectedRowKeys="#{bindings.DepartmentsView1.collectionModel.selectedRow}"
                                  selectionListener="#{bindings.DepartmentsView1.collectionModel.makeCurrent}"
                                  rowSelection="single" id="t1"
                                  columnStretching="column:c2">
                          <af:column sortProperty="#{bindings.DepartmentsView1.hints.DepartmentId.name}"
                                     sortable="false"
                                     headerText="#{bindings.DepartmentsView1.hints.DepartmentId.label}"
                                     id="c1">
                            <af:outputText value="#{row.DepartmentId}" id="ot1">
                              <af:convertNumber groupingUsed="false"
                                                pattern="#{bindings.DepartmentsView1.hints.DepartmentId.format}"/>
                            </af:outputText>
                          </af:column>
                          <af:column sortProperty="#{bindings.DepartmentsView1.hints.DepartmentName.name}"
                                     sortable="false"
                                     headerText="#{bindings.DepartmentsView1.hints.DepartmentName.label}"
                                     id="c2">
                            <af:outputText value="#{row.DepartmentName}" id="ot2"/>
                          </af:column>
                          <af:column sortProperty="#{bindings.DepartmentsView1.hints.ManagerId.name}"
                                     sortable="false"
                                     headerText="#{bindings.DepartmentsView1.hints.ManagerId.label}"
                                     id="c3">
                            <af:outputText value="#{row.ManagerId}" id="ot3">
                              <af:convertNumber groupingUsed="false"
                                                pattern="#{bindings.DepartmentsView1.hints.ManagerId.format}"/>
                            </af:outputText>
                          </af:column>
                          <af:column sortProperty="#{bindings.DepartmentsView1.hints.LocationId.name}"
                                     sortable="false"
                                     headerText="#{bindings.DepartmentsView1.hints.LocationId.label}"
                                     id="c4">
                            <af:selectOneChoice value="#{row.bindings.LocationId.inputValue}"
                                                label="#{row.bindings.LocationId.label}"
                                                required="#{bindings.DepartmentsView1.hints.LocationId.mandatory}"
                                                shortDesc="#{bindings.DepartmentsView1.hints.LocationId.tooltip}"
                                                readOnly="true" id="soc1">
                              <f:selectItems value="#{row.bindings.LocationId.items}"
                                             id="si1"/>
                            </af:selectOneChoice>
                          </af:column>
                          <af:column sortProperty="#{bindings.DepartmentsView1.hints.StreetAddress.name}"
                                     sortable="false"
                                     headerText="#{bindings.DepartmentsView1.hints.StreetAddress.label}"
                                     id="c5">
                            <af:outputText value="#{row.StreetAddress}" id="ot4"/>
                          </af:column>
                          <af:column sortProperty="#{bindings.DepartmentsView1.hints.LocationId1.name}"
                                     sortable="false"
                                     headerText="#{bindings.DepartmentsView1.hints.LocationId1.label}"
                                     id="c6">
                            <af:outputText value="#{row.LocationId1}" id="ot5">
                              <af:convertNumber groupingUsed="false"
                                                pattern="#{bindings.DepartmentsView1.hints.LocationId1.format}"/>
                            </af:outputText>
                          </af:column>
                        </af:table>
                      </af:panelCollection>
                    </f:facet>
                    <f:facet name="second">
                      <af:panelBorderLayout id="pbl2">
                        <f:facet name="start"/>
                        <f:facet name="bottom"/>
                        <f:facet name="end"/>
                        <f:facet name="top"/>
                      </af:panelBorderLayout>
                    </f:facet>
                  </af:panelSplitter>
            Edited by: Anandsagar Sah on Aug 2, 2011 11:22 AM

    Looks wired, but not sure if it's a bug.
    The problem is the panel collection. Looks like the size is off a pixel after moving the splitter this triggers the stretch to recalc and as it somehow decides that is does not fit horizontal it shows the scroll bar.
    You can get rid of the horizontal scroll bar in a couple of ways :
    1. if you hide a column
    2. if you show a hidden column
    3. if you reorder the columns
    4. if you trigger a ppr on the panel collection (I prefer this) e.g. put a button on the toolbar
    5. refresh the whole page.
    All solutions are based on the fact that the panelCollection recalculates it size during a ppr.
    Timo

  • Recently Installed Lion (forced once again) scroll bars lost my color and mission control give me a break once again free snow in the winter

    Has any one figured out how to get the scroll bar color back all I am reading is the "mission control" TReed apples and orange response?

    If you want to also block ads in videos on "Vevo" & "Daily Motion" then following the guide given in my initial post & create some new Filters and Rules as follows for "Glimmer Blocker"...
    To Block Ads In Daily Motion Videos Add The Following 2 rules...
    To Block Ads in "VEVO" videos add the following 2 rules...

Maybe you are looking for