Changing Arrows and Color of a JScrollBar inside of a JScrollPane

Hi. I can't believe this hasn't been asked and answered before but I can't find it in these forums if it has.
I am trying to create a JScrollPane in a touchscreen based application - no mouse... The default scrollbar
in my JScrollPane is too small for large fingers. I have successfully increased the size of the scrollbar
to a usable size using: UIManager.put("scrollbar.width", 75).
My next problem is two-fold.
1) The arrows at top and bottom of the scrollbar are now heavily pixelated (i.e. jagged and blocky) and
look like we zoomed in too much on a bitmap. How can I change these arrows to a graphic that is
more related to the current size of my scrollbar?
2) The color of the scrollbar is shades of 'baby blue'. My color scheme for my application is shades of
beige or brown. This makes the scrollbar stand out like a sore thumb. How can I change the color
of the scrollbar?
Note: This is being coded in NetBeans 6.7.1 but I can't find any property in the visual editor that covers
my problems.
Also, I came across the UIManager.put("scrollbar.width", xx) from googling. Is there an official (complete)
list of the properties available to the UIManager?
Thanks

To help out anyone who has been struggling with this as I have, here is the final solution we were able to use. We only needed to work with the vertical scroll bar, but it should be easy to work with now that a better part of the work is done. I do hope this is helpful.
     public ReportDisplayFrame()
          UIManager.put( "ScrollBar.width", 75);
          RDFScrollBarUI rdfScrlBarUI = new RDFScrollBarUI();
          rdfScrlBarUI.setButtonImageIcon( new ImageIcon( "C:/company/images/upArrow.jpg") , rdfScrlBarUI.NORTH);
          rdfScrlBarUI.setButtonImageIcon( new ImageIcon( "C:/company/images/downArrow.jpg") , rdfScrlBarUI.SOUTH);
          tempScrlBar = new JScrollBar();
          tempScrlBar.setBlockIncrement( 100);
          tempScrlBar.setUnitIncrement( 12);
          tempScrlBar.setUI( rdfScrlBarUI);
// other constructor code //
          rdfScreenRedraw();
     private void rdfScreenRedraw()
          String methodName = "rdfScreenRedraw()";
          logger.log(Level.INFO, methodName + ": Revalidating: mainPanel Thread = ["+Thread.currentThread().getName()+"]");
          jPanelRpt.revalidate();
          jPanelRpt.repaint();
     class RDFScrollBarUI extends BasicScrollBarUI {
          private ImageIcon decImage = null;
          private ImageIcon incImage = null;
          public void setThumbColor(Color thumbColor) {
               this.thumbColor = thumbColor;
          public void setThumbDarkShadowColor(Color thumbDarkShadowColor) {
               this.thumbDarkShadowColor = thumbDarkShadowColor;
          public void setThumbHighlightColor(Color thumbHighlightColor) {
               this.thumbHighlightColor = thumbHighlightColor;
          public void setThumbLightShadowColor(Color thumbLightShadowColor) {
               this.thumbLightShadowColor = thumbLightShadowColor;
          public void setTrackColor(Color trackColor) {
               this.trackColor = trackColor;
          public void setTrackHighlightColor(Color trackHighlightColor) {
               this.trackHighlightColor = trackHighlightColor;
          public void setButtonImageIcon( ImageIcon theIcon, int orientation)
               switch( orientation)
                    case NORTH:
                         decImage = theIcon;
                         break;
                    case SOUTH:
                         incImage = theIcon;
                         break;
                    case EAST:
          if (scrollbar.getComponentOrientation().isLeftToRight())
                              decImage = theIcon;
                         else
                              incImage = theIcon;
                         break;
                    case WEST:
          if (scrollbar.getComponentOrientation().isLeftToRight())
                              incImage = theIcon;
                         else
                              decImage = theIcon;
                         break;
          @Override
          protected JButton createDecreaseButton(int orientation) {
               JButton button = null;
               if ( decImage != null)
                    button = new JButton( decImage);
               else
                    button = new BasicArrowButton(orientation);
               button.setBackground( new Color( 180,180,130));
               button.setForeground( new Color( 236,233,216));
               return button;
          @Override
          protected JButton createIncreaseButton(int orientation) {
               JButton button = null;
               if ( incImage != null)
                    button = new JButton( incImage);
               else
                    button = new BasicArrowButton(orientation);
               button.setBackground( new Color( 180,180,130));
               button.setForeground( new Color( 236,233,216));
               return button;
     }

Similar Messages

  • How do I change font and colors back to default?

    I have changed the font and color of the text through the tools button and the options button and the content tab. I find nothing telling me how to change the font and colors back to default font and colors. Can you advise me? I'm using Windows 7 Home Premium OS. Thanks.

    Hi Brenda19605,
    You can use this article to set the fonts and colors: https://support.mozilla.org/en-US/kb/change-fonts-and-colors-websites-use?esab=a&s=font&r=0&as=s
    The default settings for the font are in this article:
    https://support.mozilla.org/en-US/kb/Some%20text%20shows%20up%20bold%20after%20upgrade
    Unfortunately for the default colors has no good reference. But for text it is black (most lower left) color, background is white (most upper left color). Unvisited links is blue (column 8, row 5) and visited link is purple (column 9, row 5).
    Let me know if you need anymore help!
    Lordfreak

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

  • Arrow and Color

    I have two questions,
    I am using Feedburner so this may not be the best place to ask the question, but I'll give it a try and see if anyone knows the answer.
    First, when I click on the arrow just next to the "Get All" button in the Itunes stores on my page, the arrow takes me to my website where the audio files are kept. The URL is
    http://itunes.apple.com/WebObjects/MZStore.woa/wa/viewPodcast?id=311094014
    And secondly, how do I change my background color from blue to black? I assume that is a Feedburner question though.
    Thanks you!

    I don't see any 'Get All' button in the actual Store page, only in iTunes when you subscribe, and this works asa expected - it downloads all the episodes. The Store page has the usual links in the top right-hand corner, the top one being 'Website' which leads to your website. Everything appears to be working exactly as it should.
    As to the page colour, this is set by iTunes and is always the same on individual podcasts. It's possible that some corporate podcasts manage to change the background, but I don't know how they do this: it may be something to do with the 'Artist Page' - go to
    http://www.apple.com/itunes/whatson/podcasts/creatorfaq.html
    and scroll down to the bottom item for information.

  • Hyperion web analysis can not change font and color

    In Hyperion web analysis, when I want to set or change font, a null dialogbox appear ; when I click and want to set or change color, nothing happen,even no dialogbox appears. Why?
    thanks advance!
    Edited by: user1016218 on 2010-1-8 上午7:16

    Hello,
    See my answer in this link:
    Urgently!  In Hyperion web analysis  font and color can not be changed
    May be it helps.

  • Using GREP styles for changing characters and colors

    Hello everybody,
    I have a question regarding GREP styles. I wish to change each letter of an alphabet in text to a square in a different color. For example: every 'a' in the text change to a yellow ■. I thought GREP styles would be perfect for it so I went to find/change, typed in my requests and InDesign told me it has found no 'a' in my text, which isn't possible. How do I fix it? And the other thing- is it possible to change the color of ■ ? Because i couldn't find the option.
    Please excuse me my incompetence, I am a new user of InDesign.
    Thanks in advance for your help! : )

    First off, it sounds like you want to use find/change with GREP, which is fine, rather than a GREP style, which is part of a paragraph style definition and cannot change the text in any way other than apply a character style to the found string, so would not help here.
    The not finding the text makes me think you've limited the search parameters in some way, either by limiting the scope to a selection, or by including a style or format requirement in the find options, perhaps.
    In order to do this, I think you are going to need to make use of the "other" category in the change dropdown and select Formatted Contents of Clipboard (which should clue you in that you need to make one of your colored squares and copy it to the clipboard before you run Find/Change). You can do this with either a plain text query or a GREP query, and there is no advantage to GREP in this case unless you want to match several different things and apply the same clipboard content to any of them.
    You'll need to run a separate find/change for each colored square. It might be possible to script a chain so it runs in a single operation, but that would also require swapping the colored sqaures on the clipboard which complicates things in this case. You might want to ask over in scripting: InDesign Scripting

  • SQL Server Management Studio has stopped working when changing fonts and colors

    I installed sql server management studio 2012 about 3 months ago to test drive and from time to time I'll attempt to change my background color of the TSql editor "In the fonts and colors option under tools"; however, the entire studio crashes
    and restarts.
    This has been ongoing since I first installed it 3 or 4 months ago, and have waited on posting to a fourm for help, assuming I am not the only one this is happening to I've waited for an update that might fix the issue.
    I've got to start on some heavy scripting and that god awful white background kills my eyes. I've got to have a black background or my work day is cut off by about 3 hours becuase of strain.
    What can I provide to someone that would help me with this?
    Thank you,
    Erik
    Specialize in software for the construction industry.

    Hello,
    Could you please apply the following updates and let us know the results?
    http://www.microsoft.com/en-us/download/details.aspx?id=35575
    http://support.microsoft.com/kb/2790947
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Changing brightness and colors of an image

    Here's code for an applet that will create a gradient:
    http://www.sitepoint.com/forums/showpost.php?p=1408696&postcount=5
    How would you load an image and do this same thing to the image?
    Also, how could you add a slider to change the brightness?
    Any tips or code samples would be much appreciated.

    Here's the code that changes the rgb values. But, it doesn't work in some browsers and earlier versions of jre. Can you fix it so that it works? Also, how would you add to this code to make it change the brightness of an image?
    (2 files: grad.java and myPaint.java)
    File: grad.java
    import java.awt.Color; import java.awt.GradientPaint; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.GridLayout; import java.awt.Rectangle; import javax.swing.JApplet; import javax.swing.JComponent; import javax.swing.JLabel; import javax.swing.JPanel; import javax.swing.JSlider; import javax.swing.SwingConstants; import javax.swing.event.ChangeEvent; import javax.swing.event.ChangeListener; public class grad extends JApplet implements ChangeListener { JSlider[] jss; JPanel mainP, slidP; display disp; Color col1, col2; public void init() { mainP = new JPanel(new GridLayout(1, 2)); slidP = new JPanel(new GridLayout(6, 2)); jss = new JSlider[6]; for (int loop = 0; loop < 6; loop++) { jss[loop] = new JSlider(SwingConstants.HORIZONTAL, 0, 255, 0); jss[loop].addChangeListener(this); } slidP.add(new JLabel("Red 1"), slidP.add(jss[0])); slidP.add(new JLabel("Green 1"), slidP.add(jss[1])); slidP.add(new JLabel("Blue 1"), slidP.add(jss[2])); slidP.add(new JLabel("Red 2"), slidP.add(jss[3])); slidP.add(new JLabel("Green 2"), slidP.add(jss[4])); slidP.add(new JLabel("Blue 2"), slidP.add(jss[5])); //add others in order r1, g1, b1, r2, g2, b2; disp = new display(); mainP.add(disp); mainP.add(slidP); getContentPane().add(mainP); } public void stateChanged(ChangeEvent evt) { col1 = new Color(jss[0].getValue(), jss[1].getValue(), jss[2].getValue()); col2 = new Color(jss[3].getValue(), jss[4].getValue(), jss[5].getValue()); disp.setColors(col1, col2); System.out.println("grad.stateChanged()"); disp.repaint(); } class display extends JComponent { Color col1, col2; public display() { col1 = Color.black; col2 = Color.black; } public void setColors(Color col1, Color col2) { this.col1 = col1; this.col2 = col2; } public void paint(Graphics _g) { Graphics2D g = (Graphics2D) _g; int boxW = 300; int boxY = 300; g.setPaint(new GradientPaint(0, 0, col1, boxW, boxY, col2)); g.fill(new Rectangle(0, 0, boxW, boxY)); } } }
    File: myPaint.java
    import java.awt.Color; import java.awt.Paint; import java.awt.PaintContext; import java.awt.Rectangle; import java.awt.RenderingHints; import java.awt.geom.AffineTransform; import java.awt.geom.Rectangle2D; import java.awt.image.ColorModel; import java.awt.image.Raster; import java.awt.image.WritableRaster; /* * Created on 16.09.2004 */ public class myPaint extends Object implements Paint { private Color c1, c2; public myPaint(Color c1, Color c2) { this.c1 = c1; this.c2 = c2; } public int getTransparency() { return OPAQUE;//this constant is in Paint class; } public PaintContext createContext(ColorModel cm, Rectangle deviceBounds, Rectangle2D userBounds, AffineTransform xform, RenderingHints hints) { return new myPaintContext(c1, c2); } class myPaintContext implements PaintContext { private int r1, g1, b1, r2, g2, b2; myPaintContext(Color c1, Color c2) { r1 = (c1.getRGB() >> 16) & 0xff; g1 = (c1.getRGB() >> 8) & 0xff; r1 = c1.getRGB() & 0xff; r2 = (c2.getRGB() >> 16) & 0xff; g2 = (c2.getRGB() >> 8) & 0xff; b2 = c2.getRGB() & 0xff; } public ColorModel getColorModel() { return ColorModel.getRGBdefault(); } public Raster getRaster(int x, int y, int w, int h) { WritableRaster raster = getColorModel().createCompatibleWritableRaster(w, h); int[] data = new int[w * h * 4]; int base = 0; float rat1, rat2; for (int xloop = 0; xloop < w; xloop++) { rat1 = ((float) xloop) / ((float) w);//this is ratio of color1 rat2 = 1 - rat1;//this is ratio of color2; for (int yloop = 0; yloop < h; yloop++) { data[base++] = (int) ((r1 * rat1) + (r2 * rat2)); data[base++] = (int) ((g1 * rat1) + (g2 * rat2)); data[base++] = (int) ((b1 * rat1) + (b2 * rat2)); data[base++] = 255;//alpha } } raster.setPixels(0, 0, w, h, data); return raster; } public void dispose() {} } }

  • Changing Thumbnails and Color after re-opening LR

    Why does LR change each visible thumbnail along the bottom of the screen after, importing, then again after reopening of the program. Color Temp is set to "As Shot" but yet LR makes it a much cooler image thus changing the colors.
    Has anyone else experienced this??

    On a Mac, if you are not using a hardware calibrator, set the monitor profile to the default Color LCD, or do a "by-eye" calibration. Ian put up instructions for that here: http://computer-darkroom.com/colorsync-display/colorsync_1.htm . Contrary to windows machines, monitor profiles do not go bad on macs. You really really really should be calibrating using hardware however. Decent ones can be had for less than $100. To answer your original question. The color shift you are seeing initially is the subject of about 25% of the posts on this forum. What happens is that initially you see the embedded jpeg preview from your camera and after a short while, Lightroom replaces that with its own direct rendering from the RAW data. They simply represent different interpretations of what the camera sees. Usually the jpeg rendering done by the camera is more saturated and warmer than what Lightroom does in its default, rather boring rendering. Usually you have to work a little to get a great rendering out of Lightroom but you have amazing latitude. You don't have the latitude to do much with the jpeg from the camera anymore.

  • Changing size and color of mouse pointer...How? OSX  10.9.1

    I'm having problems seeing my mouse on the screen. It's really frustrating sitting down and not finding it, immediately.
    How do you change it? I just can't find it.

    Adjust cursor size in System Preferences > Accessibility > Display

  • Hotmail suddenly changed appearance and now presents with the top of the page blue with lines. I have a screenshot...

    Running Firefox 15.0. Hotmail suddenly changed appearance and my page is not at the bottom of the screen. The top 5/6 of the page is a series of horizontal blue strips. Text in the blue section is the Windows Live titles like "Home, Devices, Mobile, etc". When I try to compose a new message, text from the blue area partially covers the "To" button, so I have to position the cursor at the very bottom of the button to enter an address. I tried Hotmail in IE and it appears just fine, so it must be a compatibility problem between Hotmail & Firefox. Hotmail has not responded to my email questions. I could understand if this happened at the very beginning of a session, just after I power up, but this happened after I had been active in Hotmail and other sites. Other sites are not affected, just Hotmail, and just in Firefox.

    Reset the page zoom on pages that cause problems.
    *<b>View > Zoom > Reset</b> (Ctrl+0 (zero); Cmd+0 on Mac)
    *http://kb.mozillazine.org/Zoom_text_of_web_pages
    If you have increased the minimum font size then try the default setting "none" as a (too) high value can cause issues.
    *Tools > Options > Content : Fonts & Colors > Advanced > Minimum Font Size (none)
    Make sure that you allow websites to choose their fonts.
    *Tools > Options > Content : Fonts & Colors > Advanced > [X] "Allow pages to choose their own fonts, instead of my selections above"
    *https://support.mozilla.org/kb/Changing+fonts+and+colors
    It is better not to increase the minimum font size, but use an extension to set the default page zoom to prevent issues with overlapping text.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • How to change font size & color of text inside note and callout annotation using code ?

    Hi,
    I want to set different font size & color for the text inside note and callout annotations. And for this, I am setting properties using the DS attribute while creating annotations (see below code).
    //"font: Helvetica,sans-serif 12.0pt;font-stretch:Normal; text-align:left; color:#rrggbb";
    sprintf(buf,
    "%s %2.1f%s%s%s%s;" , "font: Helvetica,sans-serif", float(g_fontSize),"pt; font-stretch:Normal; text-align:left; color:#", str[0], str[1], str[2]);CosDictPutKeyString (cosAnnot,
    "DS",CosNewString (cosDoc, false, buf, strlen(buf)));PDAnnotNotifyDidChange(pdAnnot, ASAtomFromString(
    "DS"), 0);
    But this doesn't work when I just wrire text after creating annotation.
    And suprisingly it works fine when I click first outside of the annotaion and then double click to write text inside annoatation.
    Is this bug of Adobe ? if not then please let me know the fix.
    Regards,
    Arvind

    Hi
    Is there any way(eg. preference) by which we can change default color & font size for annotation?
    Regards,
    Arvind

  • How do I change the color of a JSCrollBar

    Hi all,
    How do I change the color of a JScrollBar. I was able to change the color of the background, but not the scrollbar itself.
    Can anyone help?
    Thanks,
    R.

    Hi,
    Thanks for all your help. I actually found the sun bug report about this problem. The fix is to create a class for the JScrollBar extending JComponent and then override the setUI method.
    Here is the code for anyone who needs it:
    /* class custom JScrollBar **/
    class myScrollBar extends JScrollBar
    public myScrollBar(int orientation){
    super(orientation);
    public void setUI(BasicScrollBarUI ui) {
    super.setUI(ui);
    /* class MyUI**/
    class MyUI extends BasicScrollBarUI
    Color barColor = new Color(51,172,49);
    Color bgColor = new Color(245,245,245);
    protected JButton createDecreaseButton(int orientation) {
    return new ArrowButton(orientation);
    protected JButton createIncreaseButton(int orientation){
    return new ArrowButton(orientation);
    JButton up_button = (JButton)createIncreaseButton(SwingConstants.NORTH);
    JButton down_button = (JButton)createDecreaseButton(SwingConstants.SOUTH);
    JButton left_button = (JButton)createDecreaseButton(SwingConstants.WEST);
    JButton right_button = (JButton)createIncreaseButton(SwingConstants.EAST);
    protected void paintThumb(Graphics g,JComponent c,Rectangle thumbBounds)
    g.setColor(barColor);
    g.fill3DRect((int)thumbBounds.getX(),(int)thumbBounds.getY(),
    (int)thumbBounds.getWidth(),(int)thumbBounds.getHeight(),true);
    protected void paintTrack(Graphics g,JComponent c,Rectangle trackBounds)
    g.setColor(bgColor);
    g.fillRect((int)trackBounds.getX(),(int)trackBounds.getY(),
    (int)trackBounds.getWidth(),(int)trackBounds.getHeight());
    * ArrowButton is used for the buttons to position the
    * document up/down. It differs from BasicArrowButton in that the
    * preferred size is always a square.
    private class ArrowButton extends BasicArrowButton {
    public ArrowButton(int direction) {
    super(direction);
    public void paint(Graphics g) {
    System.out.println("i am inside the button paint");
    g.setColor(new Color(51,172,49));
    g.fill3DRect(0, 0, this.getSize().width, this.getSize().height, true);
    int w = this.getSize().width;
    int h = this.getSize().height;
    int size = Math.min((h - 4) / 3, (w - 4) / 3);
    size = Math.max(size, 2);
    g.setColor((new Color(0,0,0,0)).darker());
    paintTriangle(g,(w - size) / 2,(h - size) / 2,size+1,this.direction,true);
    public void paintTriangle(Graphics g,int x,int y,int size,int direction,boolean isEnabled){
    g.setColor((new Color(0,0,0,0)).darker());
    super.paintTriangle(g,x,y,size,direction,isEnabled);
    public Dimension getPreferredSize() {
    int size = 16;
    if (scrollbar != null) {
    switch (scrollbar.getOrientation()) {
    case JScrollBar.VERTICAL:
    size = scrollbar.getWidth();
    break;
    case JScrollBar.HORIZONTAL:
    size = scrollbar.getHeight();
    break;
    size = Math.max(size, 5);
    return new Dimension(size, size);
    in init():
    //setting the scrollbars
    MyScrollBar vertical = new MyScrollBar(JScrollBar.VERTICAL);
    MyScrollBar horizontal = new myScrollBar(JScrollBar.HORIZONTAL);
    horizontal.addAdjustmentListener(new ScrollHandler());
    vertical.addAdjustmentListener(new ScrollHandler());
    vertical.setUI(new MyUI());
    horizontal.setUI(new MyUI());
    vertical.setBorder(BorderFactory.createLineBorder(grayColor));
    horizontal.setBorder(BorderFactory.createLineBorder(grayColor));
    scrollPane.setHorizontalScrollBar(horizontal);
    scrollPane.setVerticalScrollBar(vertical);
    I hope it helps others.
    R.

  • How can I change the color of a object inside a symbol?

    Hello!
    I'm working on this study and I need to change the color of an object inside a symbol when I click another object.
    The object is called "bola", wich is inside the symbol "ponto" and the clicking object are the colored pencils (each pencil should change the color of the symbol's object, giving the impression you'd selecting a different pencil to draw).
    I think it's simple to understand what I mean when you see the files.
    I already tried this line on click event of the pencils, but it didn't work:
    sym.getSymbol("ponto").$("bola").css("color","#123456");
    Anyone knows how to make that work?
    I would like to improve the experience of drawing as well. I made it with the "mousedown" event. Is that a better way to get a similar effect?
    My files
    Thanks a lot,
    Clayton F.

    Ok here is another sample:
    http://www.meschrene.puremadnessproductions.net/Samples/HELP/LapisB/Lapis.html
    http://www.meschrene.puremadnessproductions.net/Samples/HELP/LapisB/Lapis.zip
    You need to create a var that changes the css background color..
    Hopefully you can understand what I did...
    The text I left showing so that you could see it change...
    I updated the files and all colors should work now.
    Message was edited by: ♥Schrene

  • I want to change the size and color of text in call out boxes and text boxes. How can I do this? Jack

    I want to change the size and color of text in call out boxes and text boxes. How can I do this? Jack

    Highlite the text inside the text box and then press Ctrl+E.

Maybe you are looking for

  • Line items are not appearing for some users

    Hi In one module pool program some line items are not appering for specific users. For Ex: Out of 5 line items user1 is able to see only 3 and user2 able to see all the line items. what might be the reason. Regards John.

  • Operations on master_detail

    HI I AM HAIL TO EVERY BODY IN ORACLE OTN NETWORK FORUM i have question and hope to get answear from the members here iam using (win xp ,jdeveloper r2.4) i have master detail (table_table) on my page can i do operations like(create insert,delete ...)

  • Video Playback in iTunes (and Quicktime) All White

    Since I updated iTunes and Quicktime, playback of all videos in them is now white, with a few dots of colour and just audio playing through. Is there a solution to this yet? Thanks - Dan.

  • Regarding DataType

    Hi,   I am designing a module pool. i have taken the variable in the DB table type as   zmppmtr-wpfffm as QUAN(10)   zmppmtr-wpfffm_calc as QUAN(10)   and i have taken a dummy i/o field and declared that as WPFFFM TYPE I. My problem is when i am calc

  • Problems with external/usb after installing new hard drive

    After having a new hard drive installed (from Mac 10.5.2 to 10.6.8) I have experienced 2 problems so far: 1. I am getting no response (from anything connected from my usb port) ie. mouse.  But plugging in the mouse directly into the mac works fine. 2