ListField background color / highlight

I am creating a ListField with a red background and white text at any time accept for when highlighted.  When highlighted I would like to highlight to change to color pink (text remains black).  In the following code, the background color is still red, however, the highlight is never fired.

Question = new ListField()
{

Boolean _inFocus;

protected void onFocus (int direction)
{
super.onFocus (branch);
_inFocus = true;
Super.Invalidate ();
}

protected void onUnfocus()
{
super.onUnfocus ();
_inFocus = false;
Super.Invalidate ();
}
   
public void paint (Graphics g)
{
g.setBackgroundColor (Color.RED);
g.setColor (Color.BLACK);
Super.Paint (g);

If (_inFocus)
{
g.Clear ();
g.setBackgroundColor (Color.RED);
Super.Paint (g);
}
on the other
{
g.Clear ();
g.setBackgroundColor (Color.PINK;
Super.Paint (g);
}
g.setBackgroundColor (Color.PINK);
}
};

If I remove the line g.setBackgroundColor (Color.RED); the work of highlighting (rose) and the text remains black, the background color of the listfield however goes to white.  Am I miggins something logic here?  Appreciate any comment.  Thank you.

Kile

There is a great knowledge base article ListField coloring:

Create a color ListField

Study the code and be creative .

Good luck!

Tags: BlackBerry Developers

Similar Questions

  • ListField background color NOT COLOR FOCUS

    Hello

    I've seen a lot of threads to display to change the color of the development of a list item.

    But I expect with change field items list in a different color than the default transparent. () When unfocus)

    Can someone help me?

    See you soon

    You can adjust the drawing in the drawListRow
    If you want a background, you can define one in the the domain manager

  • Customizing the background color for an element ListField

    I spent the better half of today trying to figure out how to set the background color for when a ListField element has the focus. I tried the substitution of paint and drowFocus and can not get any color other than the default.

    Someone knows how to do this?

    Try something like that.

     public void drawListRow(ListField list, Graphics g, int index, int y, int w)
    {
        if(list.getSelectedIndex() == index)
        {
             g.setColor(0x0000FF);
             g.fillRect(0,(index*rowHight),rowWidth,rowHeight);
             g.setColor(0x000000);
        }
        g.drawText("Text", 0, y, 0, w);
    }
    

    PS: Call disabled, if the previous paint stays on the screen.

  • How can I change the background color of the sidebar bookmarks?

    Grayish brown (I think) background color does not work for me. I'm a little color blind and the cursor to highlight the selected tab is not enough for me to easily see contrast. I found how to change all kinds of colors in FF, but not the background color of the bookmarks bar. I would like to change the background may be blank.

    I have it! My eyes thank you very much for your help!

  • change the background color of specific table cell

    Hello

    I'm trying to highlight the cell when the max value occurs in the attached VI.

    In addition, as it is a secondary function, possible to change the background color of this specific cell?

    Thank you

    hiNi

    This?

  • Two background colors for the same waveform graph

    Hello guys!

    I have a question for you: I am a new user of labview, so please be nice!

    So here's the deal: I just created a thanks 4 thermocouple temperature registration program.

    In real time, I then have a waveform graph 4 curves as soon as I start my program. And in my program, I had a button that allows me to record the temperature in a file for a period of time at a certain frequency.

    So, what I have is: I got my chart of waveform with a black background for example, and once I pressed the button, the background color will be changed automatically to highlight the part of the graph where the record occurs, then the background will return to the black after finished recording. In this way, on the same graph, I could say that registration took place from here to there by looking at the graph. I have two different background on the same graph.

    I don't know how to change the background of a chart using the property node, but is it possible to do what I want?

    I hope I'm clear. Otherwise, feel free to ask me for more details... I might post my vi if necessary

    See you soon

    Well, I know this is not exactly what you want to do, but you can try the following.

    Change the color of the line on the chart when recording occurs.

    You could therefore have a red line, then press on save, then it turns blue, then back to red.

    And when that is confusing since you have 4 different lines on the chart 1,

    You can change to a red line and a dotted red line, for example.

    Would that be acceptable? If so, I can show you how to do this.

  • Change the background color for a selected item in a ListView?

    Hello

    No idea how to change the color of tbackground of a ListView selected item to blue for a different color?

    I tried wrapping the ListView in a container, then by changing the background color of the container, but it does not work. And ListView, nor the ListItemComponent takes a background attribute.

    Thank you

    Oh, I did that last night.
    Thus, in the container for StandardItem, add this line:

     background: ListItem.selected || ListItem.active ? Color.create("#4D9EC9") : Color.Transparent
    

    and onTriggerred of the signal, add two lines:

    // for highlighting
    listView.select(indexPath, true);
    
    // for clearing highlight
    listView.clearSelection();
    

    PS: listView is the id of the ListView

    ListView {
        id: listView
    ....
    
  • Cascades label background color.

    Hello

    Is it possible to set the background color of the label? I would like to simulate a highlight on some of my labels but can't find anything in the docs that can do.

    Thank you!

    It is possible to style HTML text (I never got any work), but if you put the label in its own container, you can then set the background for the container.

    Container {
       id: bunchOLabels
       Container {
          background: Color.Yellow
          Label {
            text: "Yellow"
    
          }
       }
       Container {
          background: Color.Blue
          Label {
            text: "Blue"
          }
       }
    }
    
  • Change the background color of the text box for the required field

    Guys,

    I want to change the background color of textfield required when the user is in data entry Mode. And when the record is validated successfully the background color should be back to the default.

    That's what I've done so far.

    Created a Visual attribute that contains the background color.

    In the record of the creation of the data block added the code below.

    IF: SYSTEM. BLOCK_STATUS = 'NEW' THEN

    SET_ITEM_PROPERTY ('MASTER_APM_INVOICE.) BATCH ', VISUAL_ATTRIBUTE, 'ENABLE_COLOR');

    SET_ITEM_PROPERTY ('MASTER_APM_INVOICE.) VENDOR', VISUAL_ATTRIBUTE, 'ENABLE_COLOR');

    SET_ITEM_PROPERTY ('MASTER_APM_INVOICE.) AMOUNT ', VISUAL_ATTRIBUTE, 'ENABLE_COLOR');

    SET_ITEM_PROPERTY ('MASTER_APM_INVOICE.) ACCOUNTING_DATE', VISUAL_ATTRIBUTE, 'ENABLE_COLOR');

    SET_ITEM_PROPERTY ('MASTER_APM_INVOICE.) INVOICE_DATE', VISUAL_ATTRIBUTE, 'ENABLE_COLOR');

    ON THE OTHER

    SET_ITEM_PROPERTY ('MASTER_APM_INVOICE.) BATCH ', VISUAL_ATTRIBUTE, ");

    SET_ITEM_PROPERTY ('MASTER_APM_INVOICE.) VENDOR', VISUAL_ATTRIBUTE, ");

    SET_ITEM_PROPERTY ('MASTER_APM_INVOICE.) AMOUNT ', VISUAL_ATTRIBUTE, ");

    SET_ITEM_PROPERTY ('MASTER_APM_INVOICE.) ACCOUNTING_DATE', VISUAL_ATTRIBUTE, ");

    SET_ITEM_PROPERTY ('MASTER_APM_INVOICE.) INVOICE_DATE', VISUAL_ATTRIBUTE, ");

    END IF;


    And in the key to commit the following code is added

    SET_ITEM_PROPERTY ('MASTER_APM_INVOICE.) BATCH ', VISUAL_ATTRIBUTE, ");

    SET_ITEM_PROPERTY ('MASTER_APM_INVOICE.) VENDOR', VISUAL_ATTRIBUTE, ");

    SET_ITEM_PROPERTY ('MASTER_APM_INVOICE.) AMOUNT ', VISUAL_ATTRIBUTE, ");

    SET_ITEM_PROPERTY ('MASTER_APM_INVOICE.) ACCOUNTING_DATE', VISUAL_ATTRIBUTE, ");

    SET_ITEM_PROPERTY ('MASTER_APM_INVOICE.) INVOICE_DATE', VISUAL_ATTRIBUTE, ");



    The problem is, form opens in the mode of data entry, so mandatory fields have changed background color, and mode query and run the query, background colors are changed in accordance with a.


    Any help how to solve this problem?


    Also, what tag should I use to highlight the code in my post, the FAQ forum says its {code: sql} but his does not and the code is not formatted.



    Concerning



    Dear Faisal Niazi,

    Write code to set the normal Visual attribute in the trigger WE POPULATE DETAILS or after REQUEST of the block trigger.

    Manu.

  • How do you change the background color of an email header/footer page/set while creating an email template?

    See the topic. Thanks in advance!

    Hello

    Change the background color of the background of the browser:

    In the e-mail or the model, click on the Tools icon. Go the the last before icon (shown highlighted in light blue), and then click the fill color color to evoke the color wheel. Select your color it.

    You can also go to the (last) piece of Page tools icon and enter the background color.

    To change the background of the footer:

    Asset > library > Email Footer > Footer you want to change and use the same principles. You can do this in rich format or you can click on the Src button to switch to the source code and enter your color values here.

    Headers, well that would be everything depends on how you create your header. For me, they are all the graphics then I'd go to my source photoshop file, edit and re-upload a new jpg file.

    Hope this helps

  • Footer now floating in the middle of the page and no background color

    Hi all

    Worked on it for days with no luck. I hope someone can find the stupid mistake, because I know there must be something stupid, but it's driving me around the bend! The page has always been very well until I've recoded part of the body (the four columns with titles, pictures and text) in order to facilitate the 508 compliance. Since then, the orange footer which was firmly inside began floating to halfway to the top of the page and the orange background color disappeared.

    I went by my code line-by-line delimiting each start and end div tag and everything is fine. Here is a screenshot of the lower part of the page showing how the footer should look like.

    site.jpg

    Here is a screenshot of how it looks now in offline mode:

    site-wrong.jpg

    as you can see if all goes well, the footer has lost its orange background and is sitting at halfway to the top of the page.

    Here's the HTML code:

    < ! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional / / IN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" > ""

    " < html lang ="en"XML: lang ="fr"xmlns =" http://www.w3.org/1999/xhtml ">

    < head >

    < meta http-equiv = "Content-Type" content = text/html"; charset = utf-8 "/ >"

    < meta name = "viewport" happy "width = 1100" = >

    < name meta = "keywords" content = "Meadows museum, Southern Methodist university, SMU, Dallas, Texas, Algur Hurtle Meadows, The Meadows Foundation, Dr. Mark A. Rogl & aacute;" n, medieval, baroque, tenth in the 20th century Spanish art, 10th to 20th century Spanish art, collection of Spanish art, Spanish painting, Meadows school of art, masterpieces, the great painters of the world, El Greco, Velázquez, Ribera, Murillo, Goya, Miró, Picasso, Juan gray, Renaissance, altarpieces, polychrome wood, Impressionist landscape sculptures, rococo oil sketches, modernist abstractions, sculptures, sculptors of the 20th century , Rodin, Maillol, Giacometti, Henry Moore, David Smith, Claes Oldenburg, James Surls, Santiago Calatrava, Texas artists, Frank Reaugh, Jerry Bywaters, Otis Dozier, Alexandre Hogue, William Lester, exhibitions, education, educational workshops, conferences, interviews of Gallery, seminars, symposium, Museum Shop, golden age of Spain, neo-palladien structure, Jones Great Hall, founder, room show, Restaurant Gates, Moss Chumley Award, William B. Jordan internships , Fortuny, Sorolla, Steve Mumford, Don Quijote, tapestries of the eighteenth century, Roger Winter, Stanley Marcus, Mark Lemmon, the Barrett Collection, Mexican art, DeGolyer library, painting of Greek vase, Juan van der Hamen y the & oacute; n, Division of film and Television, music and dance, performing artists art studio, tales, artist demonstrations, activities, community education program of MLA discussion and book club, master courses in the Liberal Arts, Spanish, corporate membership, membership Museum, Museo Nacional del Prado, Prado Museum designer = Pam Muirheid ">"

    < name meta = "description" content = "The Meadows Museum is committed to the advancement of knowledge and the understanding of art through the collection and interpretation of the works of the highest aesthetic and historical significance, as evidenced by the founding collection of Spanish art" >

    < name meta = "robots" content = "index, follow" >

    < title > home - Meadows Museum < /title >

    < name meta = "google-site-verification" content = "WJGKz4uefsWUilZUdPa5ggL23MSk1IsHeLMzUz3B1QE" / >

    < style type = "text/css" >

    <!--

    {body

    background-color: #.

    }

    a: link {}

    color: #505262;

    text-decoration: underline;

    }

    a: active {}

    color: #505262;

    text-decoration: underline;

    }

    a: visited {}

    color: #505262;

    text-decoration: underline;

    }

    a: hover {}

    color: #505262;

    text-decoration: none;

    }

    ->

    < / style >

    < link href = "css/layout.css" rel = "stylesheet" type = "text/css" / > "

    < script src = "ajxmenu1.js" type = "text/javascript" > < / script > "

    < style type = "text/css" >

    <!--

    {.style1}

    color: #FFFFFF

    }

    ->

    < / style >

    < link rel = "stylesheet" href = "ajxmenu1.css" type = "text/css" / > "

    < style type = "text/css" >

    <!--

    {.style23}

    do-size: 10px

    }

    ->

    < / style >

    < link rel = "stylesheet" href = "ajxmenu3.css" type = "text/css" / > "

    < link rel = "stylesheet" href = "ajxmenu4.css" type = "text/css" / > "

    < style type = "text/css" >

    <!--

    {.style24}

    color: #AE543C

    }

    {.style26}

    color: #f1efe0

    }

    {.style27}

    color: #b6241d

    }

    ->

    < / style >

    < link rel = "stylesheet" href = "ajxmenu8.css" type = "text/css" / > "

    < link rel = "stylesheet" href = "ajxmenu13.css" type = "text/css" / > "

    < style type = "text/css" >

    <!--

    {.style28}

    color: #AF4D33

    }

    {.style29}

    Police-family: Geneva, Arial, Helvetica, without serif

    }

    ->

    < / style >

    < link rel = "stylesheet" href = "ajxmenu16.css" type = "text/css" / > "

    < script type = "text/javascript" >

    var _gaq = _gaq. [];

    _gaq.push (['_setAccount ',' UA-32262060-1 ""]);

    _gaq.push (['_trackPageview ']);

    (function() {}

    GA var = document.createElement ('script'); GA.type = ' text/javascript '; GA. Async = true;

    ga.src = ("https:" == document.location.protocol? ) https://SSL ' : ' http://www ( ') + «.google-analytics.com/ga.js ";

    var s = document.getElementsByTagName ('script') [0]; ParentNode.InsertBefore (ga, s);

    })();

    < /script >

    < script type = "text/javascript" language = "javascript" > AC_FL_RunContent = 0; < /script >

    < script type = "text/javascript" src = "slideshow/AC_RunActiveContent.js" language = "javascript" > < / script > "

    < script type = "text/javascript" language = "JavaScript" > < / script >

    < script type = "text/javascript" language = "JavaScript" >

    <!--

    function errorSafe() {return true ;}

    Window.OnError = errorSafe;

    function newWin(url,name,rs,sc,mn,tl,lo,wd,hi) {}

    openWindow = window.open (url, name,' resizable = ' + rs +', scrollbars = ' + sc +', menubar = ' + mn +', toolbar = ' + tl + ', lo cation =' + lo +', width = ' + WD + ', height =' + hi) ;}

    Name.Window = "menu"

    function open_window (url) {}

    E-mail = window.open (url, "E-mail", "toolbar = 5, location = 0, directories = 0, status = 1, the menu bar = 0, scrollbars = yes, resizable = yes, width = 800, height = 600");

    }

    ->

    < /script >

    < script src = "ajxmenu1.js" type = "text/javascript" > < / script > "

    < script src = "ajxmenu3.js" type = "text/javascript" > < / script > "

    < script src = "ajxmenu4.js" type = "text/javascript" > < / script > "

    < script language = "JavaScript1.2" type = "text/javascript" src = "mm_css_menu.js" > < / script >

    < script src = "ajxmenu8.js" type = "text/javascript" > < / script > "

    < script src = "ajxmenu13.js" type = "text/javascript" > < / script > "

    < script src = "ajxmenu16.js" type = "text/javascript" > < / script > "

    <! - beginning of Google Translator - >

    < name meta = "google-translate-customization" content = "9966f40ce63f3936-63b7db40478c71ff-g3ab4db8eb77d6f75-1 b" >

    < / meta >

    <! - end of the Google Translator - >

    < / head >

    < body bgcolor = "#f1eee1" >

    < div class = "hidden" > go to the main content. < / div >

    <! - begin logo - >

    < div id = "logo" >

    " < role header ="banner"> < a href =" http://SMU.edu/meadowsmuseum/ "> Homepage - Meadows Museum < /a > < / header > .

    < / div > <! - end logo - >

    <! - begin navbackground - >

    < div id = "navbackground" >

    <! - begin nav - >

    < div id = "nav" >

    < div class = "AJXCSSMenuBOOIZUD" > <!-AJXFILE:ajxmenu1.css->

    < ul >

    < class li = "tsub" > < a class = "ajxsub" href = "mission_statement.htm" > About Us < /a >

    < ul >

    < li > < a href = "mission_statement.htm" > statement of Mission < /a > < /li > ""

    < li > < a href = "Director.htm" > < /a > < /li > Director's Message "

    < li > < a href = "contacts.htm" > contact us < /a > < /li >

    < li > < a href = "news.htm" > News < /a > < /li > ""

    < li > < a href = "media.htm" > Multimedia < /a > < /li > ""

    < li > < a href = "history.htm" > Museum History < /a > < /li > "

    < li > < a href = "Plaza.htm" > Plaza & garden of sculptures < /a > < /li > ""

    < li > < a href = "Moss_Chumley.htm" > price Moss/Chumley < /a > < /li > "

    < li > < a href = "javascript:open_window(%27___http://www.meadows.smu.edu%27__)" > Meadows School of the Arts < /a > < /li >

    < li > < a href = "javascript:open_window(%27___http://www.smu.edu%27__)" > Southern Methodist University < /a > < /li >

    < /ul >

    < /li >

    < class li = "tsub" > < a class = "ajxsub" href = "visit.htm" > visit us < /a >

    < ul >

    < li > < a href = "visit.htm" > < /a > < /li > General information

    < li > < a href = "tours.htm" > groups & amp; "" Tours < /a > < /li >

    < li > < a href = "access_programs.htm" > accessibility < /a > < /li > ""

    < li > < a href = "shop.htm" > < /a > < /li > Museum Shop ""

    < li > < a href = "students_teachers.htm" > K-12 resources < /a > < /li > ""

    < li > < a href = "dining.htm" > eat < /a > < /li > ""

    < li > < a href = "lodging.htm" > Lodging < /a > < /li > ""

    < li > < a class = "ajxsub" href = "events.htm" > < /a > facility rental

    < ul >

    < li > < a href = "events_rental_images.htm" > rental installation pictures < /a > < /li >

    < /ul >

    < /li >

    < /ul >

    < /li >

    < class li = "tsub" > < a class = "ajxsub" href = "collections_intro.htm" > < /a > Collections

    < ul >

    < li > < a href = "collections_intro.htm" > about the Collections < /a > < /li > ""

    < li > < a class = "ajxsub" href = "collections_highlights.htm" > < /a > Collections highlights

    < ul >

    < li > < a href = "collections_highlights_Algur.htm" > Algur H. Meadows Collection < /a > < /li > ""

    < li > < a href = "collections_highlights.htm" > Meadows Museum Collection < /a > < /li > ""

    < li > < a href = "collections_highlights_sculpture.htm" > Elizabeth meadows Sculpture Coll. < /a > < /li > ""

    < /ul >

    < /li >

    < li > < a href = "collections_provenance.htm" > source & amp; "" Search < /a > < /li >

    < li > < a class = "ajxsub" href = "#" > < /a > recent Acquisitions

    < ul >

    < li > < a href = "collections_acquisitions_Goya.htm" > Goya < /a > < /li > ""

    < li > < a href = "collections_acquisitions_Barcelo.htm" > Barceló < /a > < /li > ""

    < li > < a href = "collections_acquisitions_Madrazo.htm" > Madrazo < /a > < /li > ""

    < li > < a href = "collections_acquisitions_Munoz.htm" > Muñoz < /a > < /li > ""

    < /ul >

    < /li >

    < /ul >

    < /li >

    < class li = "tsub" > < a class = "ajxsub" href = "exhibitions_current.htm" > < /a > exhibitions

    < ul >

    < li > < a href = "exhibitions_current.htm" > current < /a > < /li > ""

    < li > < a href = "exhibitions_upcoming.htm" > next < /a > < /li > ""

    < li > < a class = "ajxsub" href = "#" > after < /a >

    < ul >

    < li > < a href = "exhibitions_2013 - present.htm" > < span > 2013 - today ' hui </span > < /a > < /li >

    < li > < a href = "exhibitions_recent_past.htm"> 2010-12 < /a > < /li >

    < li > < a href = "exhibitions_past_07 - 09.htm" > 2007-09 < /a > < /li >

    < li > < a href = "exhibitions_recent_past2.htm"> 2004-06 < /a > < /li >

    < li > < a href = "exhibitions_2001 - 3.htm" > 2001-03 < /a > < /li >

    < /ul >

    < /li >

    < li > < a href = "longterm_loans.htm" > visit of the masterpieces < /a > < /li > ""

    < li > < a class = "ajxsub" href = "#" > Prado Meadows < /a >

    < ul >

    < li > < a href = "about_Prado_Meadows.htm" > Prado Meadows < /a > < /li > ""

    < li > < a href = "docs/Pradopartnershipexpansionrelease.pdf" > Expansion of the partnership < /a > < /li > ""

    < li > < a href = "exh_Prado_Meadows_press.htm" > press release El Greco < /a > < /li > "

    < li > < a href = "exh_Prado_Meadows_Ribera_press.htm" > press release - Ribera < /a > < /li > "

    < li > < a href = "about_Velazquez_Prado_release.htm" > < span > </span > < /a > < /li > Hövelmann - press release ""

    < li > < a href = "prado_press.htm" > news < /a > < /li > ""

    < li > < a href = "prado_fellowship.htm" > grant < /a > < /li > ""

    < /ul >

    < /li >

    < /ul >

    < /li >

    < class li = "tsub" > < a class = "ajxsub" href = "public_programs.htm" > < /a > Education

    < ul >

    < li > < a href = "public_programs.htm" > program calendar < /a > < /li > "

    < li > < a href = "internships.htm" > training < /a > < /li >

    < li > < a href = "fellowships.htm" > grant < /a > < /li > ""

    < li > < a href = "students_teachers.htm" > K-12 resources < /a > < /li > ""

    < li > < a href = "symposia.htm" > seminars < /a > < /li > ""

    < /ul >

    < /li >

    < class li = "tsub" > < a class = "ajxsub" href = "membership.htm" > join < /a >

    < ul >

    < li > < a href = "membership.htm" > join or renew a membership < /a > < /li > ""

    < li > < a href = "member_travel.htm" > Member travel < /a > < /li > "

    < li > < a href = "volunteer.htm" > volunteer < /a > < /li > ""

    < li > < a href = "internships.htm" > training < /a > < /li >

    < li > < a href = "work_here.htm" > job < /a > < /li > ""

    < li > < a href = "support.htm" > Don < /a > < /li > ""

    < /ul >

    < /li >

    < class li = "SAD" > < a href = "50th_anniversary.htm" > 50th birthday < /a > < /li > ""

    < class li = 'timg' > < img src = "data: image / gif;" "base64, R0lGODlhAQABAIAAAP / / / yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw ==" alt = "" / > < /li >

    < /ul >

    < / div >

    < / div > <! - end nav - >

    < / div > <! - end navbackground - >

    < br / >

    <! - Begin wrapper - >

    < div id = 'wrapper' >

    <! - begin slide show - >

    < div id = "slideshow" >

    <! - dwuser_XML_Flash_Slideshow_v4 start - >

    <!-do not remove the line below!  It is necessary for the v4 DWUser XML Flash Slideshow. ->

    < script type = "text/javascript" src = "v4flashslideshow/slideshow.js" > < / script >

    < div class = "dwuser_xfs_v4_holder" style = "width: 1100px;" height: 358px; "" > < strong > < a href = "http://www.adobe.com/go/getflashplayer/" > you must update your Flash Player and enable Javascript to view this content & raquo; < /a > < / strong > < / div >

    < script type = "text/javascript" >

    <! [CDATA]

    If (typeof (window ['XMLFlashSlideshow_v4']) == "undefined") {XMLFlashSlideshow_v4 = function() {}; alert (' to use the XML Flash slideshow v4, you need to download the v4flashslideshow/slideshow.js file and have a properly defined ' + string.fromCharCode(0)) (60) + 'script' + string.fromCharCode(0)) (62) + "reference to him in your HTML code.") ;};}

    XMLFlashSlideshow_v4 ({width: ' 1100', height: ' 358', level: 'a,' xml: ' v4flashslideshow/slideshow_data1.xml', backgroundColor: '#F1EFE0', backgroundAlpha: ' 1', preloaderColor: "#FFFFFF", preloaderTextColor: '#FFFFFF', externalSkinURL: ", touchMode: 'inline', touchBackgroundColor: '#F1EFE0', backgroundImage:'images/slideshow/Calatrava3_big.jpg', rightClickLabel:"upcoming events slideshow"});

    []] >

    < /script >

    <! - end dwuser_XML_Flash_Slideshow_v4 - >

    < / div > <! - end slide show - >

    <! - begin bodyArea - >

    < div id = "bodyArea" >

    <! - Begin programseventstitle - >

    < div id = "programseventstitle" >

    < h3 > EVENTS and PROGRAMS < br / >

    "< / h3 > < a href ="public_programs.htm"> < img src="images/index/class.png "alt ="programs and events"width ="275"height ="143"/ > < / a >

    < ul id = "programsevents" >

    < p > < a

    href = "public_programs.htm #Symposium" > International "

    Colloquium < /a > < br / > Sat, 7 Feb, 10:00-15:00 < /p >

    < p > < a

    href = "public_programs.htm #Toast" > Champagne "

    Toast < /a > < br / > Sat, February 7, at 3:30-17:00 < /p >

    < p > < a href = "public_programs.htm #music" > music ' "

    The Meadows < /a > < br / > Sat, 7 Feb, 18:30 < /p >

    < p > < a

    " href = ' http://www.meadowsmuseumdallas.org/public_programs.htm#drawing "> drawing .

    with masters < /a > < br / > Sunday, 8 Feb, 01:30-15:00 < /p >

    < p > < a

    href = "public_programs.htm #conn" > access "

    Program: Connections < /a > < br / >

    Wednesday, February 11, 10:30-12:30 < /p >

    < /ul >

    < / div > <! - end programseventstitle - >

    <! - Begin newstitle - >

    < div id = "newstitle" >

    < h3 > NEWS < / h3 > < a href = "news.htm" "> < img src="images/index/Bacon_thumb.jpg "width ="275"height ="143"alt ="news"title ="news"/ > < /a >"

    < ul id = "news" >

    < p > 23/12/14 - < a href = "docs/50th_updated.pdf' target = '_blank' > Meadows Museum seems to come gold anniversary in 2015 < /a > (PDF) < /p >"

    < p > 15/12/14 - < a href = "docs/MossChumley2014Award.pdf' target = '_blank' > Meadows Museum announces 2014 Moss/Chumley award-winning artist: Darryl Lauster < /a > (PDF) < /p >"

    < p > 11/03/14 - < a href = "docs/Abello_2014.pdf' target = '_blank' > Meadows Museum in this first exhibition in US of paintings of"

    Collection of Juan Abelló, among the private Collections of top world < /a > < /p > (PDF)

    < /ul >

    < / div > <! - end newstitle - >

    <! - Begin multimediatitle - >

    < div id = "multimediatitle" >

    " MULTIMEDIA < h3 > < / h3 > < a href =" http://Vimeo.com/109750163 "target ="_blank"" > < img src="images/50th_anniversary/thumb_homepage.jpg" alt = "multimedia" title = "multimedia" width = "275" height = "143" / > < /a > "

    < ul id = "multimedia" >

    < p > < a href = "media.htm" > watch videos, live webcasts and podcasts < /a >. ' " < /p >

    < p > < strong > 50th birthday < facilities > < br / >

    " The Museum close to SMU of experience as the museographic approaches its < a href =" http://Vimeo.com/109750163 "target ="_blank"> 50th birthday < /a >. Find out what is happening this year, what's in the news and discover the fascinating history of the meadows milestones < /a > < a href = "50th_anniversary_timeline.htm" > Museum. < /p >

    < p > < a href = "media.htm" > 20 June 2014 < em > News ARE < /em > story about the artist John Bramblitt. ' " < /a > < /p >

    < /ul >

    < / div > <! - end multimediatitle - >

    <! - Begin supportustitle - >

    < div id = "supportustitle" >

    < h3 > SUPPORT U.S.! < / h3 >

    "< a href ="support.htm"> < img src="images/news_programs/MeadowsandLois.jpg "width ="275"height ="143"/ > < / a >

    < ul id = "supportus" >

    < p > < a href = "membership.htm" > Join/renew your membership < /a > < /p > ""

    < p > < a href = "support.htm" > make a donation to the Museum < /a > < /p >

    < p > < a href = "shop.htm" > Browse our store online < /a > < /p > ""

    < p > < a href = "volunteer.htm" > become a Docent < /a > < /p > ""

    < p > < a href = "shop.htm" > < / a > < a href = "volunteer.htm" > volunteer < /a > < /p > ""

    < p > < a href = "" > join our E-newsletter < /a > < /p >

    < /ul >

    <! - start Google Translator - >

    < div id = "google_translate_element" > < / div >

    < script type = "text/javascript" >

    function googleTranslateElementInit() {}

    New google.translate.TranslateElement ({pageLanguage: 'en'}, 'google_translate_element');

    }

    "< /script > < script type =" text/javascript"src="//translate.google.com/translate_a/element.js?cb=googleTranslateElementInit "> < / scrip t >

    <!--end Google Translator-->

    < / div > <! - end supportustitle - >

    < div class = 'push' > < / div >

    < / div > <!-end part of the body->

    <! - start the footer - >

    < div id = "footer" >

    <! - begin searchbar - >

    < div id = "search bar" >

    < form role = "Search" style = "margin-right: 0px;" margin-top: 12px; float: left; width: 265px; "" action = " http://Search.FreeFind.com/find.html " method = "get" accept-charset = "utf - 8" target = "_self" > ""

    < input type = "hidden" name = "If" value = "47230699" >

    < input type = "hidden" name = "pid" value = "o" >

    < input type = "hidden" name = "n" value = "0" >

    < input type = "hidden" name = "_charset_" value = "" >

    < input type = "hidden" name = "bcd" value = "" & #247; ">"

    < input type = "text" name = size "query" = "15" style = "border: thin" >

    < input aria-label = "Search" type = "submit" value = "Search" >

    < / make >

    < br / >

    < br / >

    " < a href =" https://www. "" Facebook.com/MeadowsMuseumDallas "> < img src="images/symbols/facebook_white.png "alt ="like us on Facebook"title ="like us on Facebook "width ="28"height ="28"/ > < /a > < a href =" https://Twitter.com/MeadowsMuseum "> < img src="images/symbols/twitter_white.png "alt ="Follow us on Twitter"title ="follow us on Twitter"width ="25"height ="25"/ > < /a > < a href =" https://blog. "" SMU.edu/tabularasa/ "> < img src="images/symbols/blog_white.png "alt ="Museum blog"title ="Museum blog"width ="23"height ="23"/ > < /a > < a href =" http://visitor.constantcontact.com/manage/optin/ea?v=001WVdpo956d6mu5VjDxJQqvxlxNOVSB0HGHh q6v_z9sTXd8YFRILmxqroHCfw5TVmt2p88AqzgSHcInE_zTaFkPw is "> < img src="images/symbols/e-mail_white.png "alt ="write us"title ="Write to us"width ="27"height ="25"/ > < /a > < a href =" membership.htm "> < img src="images/symbols/JOIN.png "alt = 'join the Museum' title = width 'join the Museum' = height"38"="32 ". "> < /a > < a href =" https://www.google.com/maps/preview#! q = 5900 + Bishop + Blvd., Dallas + TX 75205 & data =! 1 m 4! 1 m 3! 1 024 d10476!2d-96.785088!3d32.837337!4m10!1m9!4m8!1m3!1d107264!2d-96.783199!3d32.845558!3m2!1i1! 2i768! 4f13.1 "> < img src="images/symbols/google-maps-iphone-icon.png "alt ="find us on Google maps' title = "Find us on Google maps" width = "24" height = "24" / > < /a >

    < / div > <!--End searchbar-->

    <! - begin admissionhours - >

    < div id = "admissionhours" >

    Opening hours: Tue - sat 10:00 - 17:00.

    Thursday until 21:00,

    Sun 01:00 - 17:00

    Closed on Monday.

    Admission: $10 adults, $8, seniors 65 & amp; Over, $4, non - EMS students. Free: Members of the Museum, children under 12, SMU faculty/staff/students. Eve of free game after 17:00 < br / >

    < / div > <! - end admissionhours - >

    <! - begin adresstel - >

    < div id = "addresstel" >

    Meadows Museum, 5900 Bishop Blvd., Dallas, TX 75205, < br / >

    "P.O. Box 750357, Dallas, TX 75275-0357 < img src="images/index/Untitled-1.png "alt =" "width ="6"height ="10"/ > 214.768.2516 < br / >"

    "" " < a href =" contacts.htm"class ="white"" > e-mail < /a > < img src="images/index/Untitled-1.png" alt = "" width = "6" top = "10" / > < a href = "site_map.htm" class = "white" "> < /a > Site map < img src="images/index/Untitled-1.png "alt =" "width ="6"top ="10"/ > site created by < a href =" http://www.mypawprint.com "class ="white"> My Pawprint Productions < /a > < br / > "

    © 2015 meadows Museum

    < / div > <! - end adresstel - >

    < / div > <! - end of footer - >

    < / div > <! - end wrapper - >

    < / body >

    < / html >

    and here's the layout.css file:

    @charset "utf-8";

    * {

    margin: 0px;

    padding: 0px;

    }

    a: link {color: #656252; text-decoration: underline ;}}

    a: active {color: #656252; text-decoration: underline ;}}

    a: visited {color: #656252; text-decoration: underline ;}}

    a: hover {color: #656252; text-decoration: none;}

    }

    a.White:Link {color: #FFFFFF; text-decoration: underline ;}}

    Elder: active {color: #FFFFFF; text-decoration: underline ;}}

    a.White:visited {color: #FFFFFF; text-decoration: underline ;}}

    a.White:hover {color: #FFFFFF; text-decoration: underline ;}}

    / * Smartphones (portrait and landscape)-* /.

    @media screen alone

    and (min-width: 320px)

    and (max-width: 480px) {}

    / * Styles * /.

    }

    / * Smartphones (landscape)-* /.

    @media screen alone

    and (min-width: 321px) {}

    / * Styles * /.

    }

    / * Smartphones (portrait)-* /.

    @media screen alone

    and (max-width: 320px) {}

    / * Styles * /.

    }

    / * iPads (portrait and landscape)-* /.

    @media screen alone

    and (min-width: 768px)

    and (max-width: 1100px) {}

    / * Styles * /.

    }

    / * iPads (landscape)-* /.

    @media screen alone

    and (min-width: 768px)

    and (max-width: 1100px)

    and (orientation: landscape) {}

    / * Styles * /.

    }

    / * iPads (portrait)-* /.

    @media screen alone

    and (min-width: 768px)

    and (max-width: 1024px)

    and (orientation: portrait) {}

    / * Styles * /.

    }

    / * Desktops and laptops-* /.

    @media screen alone

    and (min-width: 1224px) {}

    / * Styles * /.

    }

    / * Screens * /.

    @media screen alone

    and (min-width: 1824px) {}

    / * Styles * /.

    }

    / * iPhone 4-* /.

    @media

    only screen and (- webkit - min-device-pixel-ratio: 1.5).

    only screen and (min-device-pixel-ratio: 1.5) {}

    / * Styles * /.

    }

    . Hidden

    {position: absolute;}

    left:-10000px;

    top: auto;

    Width: 1px;

    height: 1px;

    overflow: hidden ;}

    an img {}

    border-top-style: none;

    border-right-style: none;

    border-bottom-style: none;

    border-left-style: none;

    }

    {to header

    Width: 1100px;

    background-repeat: no-repeat;

    margin-top: 0;

    margin-right: auto;

    margin-bottom: 0;

    left margin: auto;

    padding-top: 0px;

    padding-right: 0;

    padding-bottom: 0px;

    padding-left: 0;

    }

    header a {}

    text-decoration: none;

    background-image: url (.. / images/index/orange_50th_2011_1100.png);

    background-repeat: no-repeat;

    background-position: right top;

    padding: 0;

    display: block;

    height: 130px;

    text-indent:-700px.

    }

    header a: focus {}

    background-position: right top;

    padding: 0;

    height: 132px;

    text-decoration: none;

    display: block;

    background-image: url (.. / images/index/orange_50th_2011_1100.png);

    background-repeat: no-repeat;

    text-indent: 0px;

    text-decoration: underline;

    color: white;

    }

    a: focus {}

    outline: thin dotted;

    outline: 5px auto - webkit-focus-ring-color;

    outline-offset:-2px;

    }

    header b {}

    text-decoration: none;

    }

    H1 {}

    height: 75px;

    Width: 285px;

    do-family: "Trebuchet MS", Arial, Helvetica, sans-serif;

    font size: 50px;

    make-weight: normal;

    color: #f1efe0;

    float: left;

    padding-left: 35px;.

    padding-top: 75px;

    }

    H2 {}

    height: 51px;

    Width: 480px;

    do-family: "Trebuchet MS", Arial, Helvetica, sans-serif;

    font size: 25px;

    make-weight: normal;

    make-style: italic;

    float: left;

    color: #f1efe0;

    padding-top: 99px;

    }

    H3 {}

    do-family: "Trebuchet MS", Arial, Helvetica, sans-serif;

    do-size: 14px;

    color: #666;

    height: 25px;

    padding-left: 10px;

    }

    H4 {}

    do-family: "Trebuchet MS", Arial, Helvetica, sans-serif;

    font size: 15px;

    margin: 25px;

    Color: #666666;

    }

    #logo {}

    background-color: #af4d33; / * change the color to match your orange * /.

    display: block;

    }

    {#navbackground}

    background-color: #776353; / * change the color to match your Brown * /.

    background-repeat: repeat;

    }

    #nav {}

    margin-top: 0;

    margin-right: auto;

    margin-bottom: 0;

    left margin: auto;

    padding-top: 0px;

    padding-right: 0;

    padding-bottom: 0px;

    padding-left: 0;

    Width: 1100px;

    }

    .caption {}

    do-family: "Trebuchet MS", Arial, Helvetica, sans-serif;

    do-size: 11px;

    Color: #666666;

    margin: 25px;

    }

    {p}

    do-family: "Trebuchet MS", Arial, Helvetica, sans-serif;

    font size: 13px;

    color: #414040;

    margin: 25px;

    }

    .caption {}

    do-family: "Trebuchet MS", Arial, Helvetica, sans-serif;

    do-size: 11px;

    Color: #666666;

    margin: 25px;

    }

    {#wrapper}

    background-color: #e2dfcf;

    min-height: 100%;

    height: auto! important;

    height: 100%;

    Width: 1100px;

    margin-right: auto;

    left margin: auto;

    border-right-width: 1px;

    border-left-width: 1px;

    border-right-style: solid;

    border-left-style: solid;

    border-right-color: #999999;

    border-left-color: #999999;

    }

    {#wrapper #white

    background-repeat: repeat;

    padding: 0;

    display: block;

    height: 10px;

    background-color: #FFF;

    Width: 2500 px;

    }

    {#wrapper #slideshow

    height: 358px;

    background-repeat: no-repeat;

    }

    {#wrapper #programseventstitle}

    Width: 275px;

    height: 25px;

    float: left;

    do-family: "Trebuchet MS", Arial, Helvetica, sans-serif;

    do-size: 14px;

    color: #414040;

    make-weight: normal;

    do-variant: normal;

    background-color: #e2dfcf;

    padding-top: 10px;

    }

    {#wrapper #newstitle}

    Width: 275px;

    height: 40px;

    float: left;

    do-family: "Trebuchet MS", Arial, Helvetica, sans-serif;

    do-size: 14px;

    color: #414040;

    vertical-align: middle;

    make-weight: normal;

    margin: 0px;

    background-color: #f1efe0;

    padding-top: 10px;

    }

    {#wrapper #multimediatitle}

    Width: 275px;

    height: 40px;

    float: left;

    do-family: "Trebuchet MS", Arial, Helvetica, sans-serif;

    do-size: 14px;

    color: #414040;

    make-weight: normal;

    margin-top: 0px;

    margin-right: 0px;

    margin-bottom: 0px;

    background-color: #e2dfcf;

    padding-top: 10px;

    }

    {#wrapper #supportustitle}

    Width: 275px;

    height: 40px;

    float: left;

    do-family: "Trebuchet MS", Arial, Helvetica, sans-serif;

    do-size: 14px;

    color: #414040;

    make-weight: normal;

    margin: 0px;

    background-color: #f1efe0;

    padding-top: 10px;

    }

    #wrapper #bodyArea #photoprogramsevents {}

    float: left;

    background-color: #f1efe0;

    Width: 275px;

    height: 143px;

    }

    #wrapper #bodyArea #photonews {}

    float: left;

    background-color: #f1efe0;

    Width: 275px;

    height: 143px;

    }

    #wrapper #bodyArea #photomultimedia {}

    float: left;

    background-color: #f1efe0;

    Width: 275px;

    height: 143px;

    }

    #wrapper #bodyArea #photosupport {}

    float: left;

    background-color: #f1efe0;

    Width: 275px;

    height: 143px;

    }

    #wrapper #bodyArea #programsevents {}

    float: left;

    background-color: #e2dfcf;

    Width: 275px;

    height: 350px;

    }

    #wrapper #bodyArea #news {}

    float: left;

    background-color: #f1efe0;

    Width: 275px;

    height: 350px;

    }

    #wrapper #bodyArea #multimedia {}

    float: left;

    background-color: #e2dfcf;

    Width: 275px;

    height: 350px;

    }

    #wrapper #bodyArea #supportus {}

    float: left;

    background-color: #f1efe0;

    Width: 275px;

    height: 350px;

    }

    #wrapper #bodyArea #footer {}

    height: 100px;

    Width: 1100px;

    do-family: Arial, Helvetica, without serif.

    do-size: 10px;

    background-color: #af4d33;

    padding: 0px;

    color: #FFFFFF;

    background-repeat: repeat;

    Clear: both;

    }

    .footer, .push {}

    Clear: both;

    }

    #wrapper #bodyArea #footer #searchbar {}

    height: 70px;

    Width: 230px;

    do-family: "Trebuchet MS", Arial, Helvetica, sans-serif;

    do-size: 12px;

    background-color: #af4d33;

    Padding: 15px;

    color: #FFFFFF;

    background-repeat: no-repeat;

    float: left;

    text-align: left;

    Clear: none;

    }

    #wrapper #bodyArea #footer #admissionhours

    {

    height: 70px;

    Width: 415px;

    do-family: "Trebuchet MS", Arial, Helvetica, sans-serif;

    do-size: 12px;

    background-color: #af4d33;

    Padding: 15px;

    color: #FFFFFF;

    background-repeat: no-repeat;

    float: left;

    text-align: left;

    Clear: none;

    }

    #wrapper #bodyArea #footer #addresstel {}

    height: 60px banner;

    Width: 330px;

    do-family: "Trebuchet MS", Arial, Helvetica, sans-serif;

    do-size: 12px;

    background-color: #af4d33;

    color: #FFFFFF;

    background-repeat: no-repeat;

    float: right;

    text-align: right;

    padding-top: 22px;

    padding-right: 25px;

    padding-bottom: 0px;

    padding-left: 15px;

    }

    {#google_translate_element}

    Padding: 25px;

    }

    HTML {}

    overflow - y: scroll;

    }

    an img {border: none;}

    }

    Horgykitkat wrote:

    What I found after taking on the heights between text boxes, it's that I found myself with lengths of columns of unequal text (alternation of beige areas). So, I created a repeatable jpg with same alternation beiges and put it under the bottom of the bodyArea tag. Again, if there is a better way, please let me know!

    A repeated background image 'Fake' columns of the same height is perfectly ok.

    It will not work IF your page is sensitive, but it's not so no problem. If it were admissible a better solution would be to take advantage of the css display: table; and display: table-cell;

    Regarding your footer background color does not appear I guess you have floating elements in the footer container. If yes then you need clear floating elements that allows the container to footer wrap around the floating elements inside.

    Follow these steps using css - overflow: hidden; -on the parent container which has floats inside.

  • Change the background color of the table rows af of those who have a larger date today

    Greetings,

    I have a table of af of insurance of the person which show details for each insurance policy. I have change the sql query table to show only those that the insurance is still active ('end_date' variable is greater than today).

    Everything works fine, but on doubts, I want to show all the records, but change the background color red of those lines which have expired ('end_date' variable less today).

    Can you help me please?

    Thanks in advance.

    Using Jdeveloper v11.1.2.4.0 (JSF - components of the ADF)

    This example shows how to do this http://andrejusb.blogspot.de/2010/04/changed-row-highlighting-in-oracle-adf.html

    Timo

  • Marking of the words with the background color, the color disappears when pdf. How to do?

    Hi, I work with a project that should highlight some Word or phrases with different colors. I use the background color option to do this, but when you make a pdf file, disappearance of the color. How to make this work? FM10 unstructured.

    JW

    Unfortunately, this does not work in FM10 (or 11), using the CMYK settings - you have to use RGB and convert colors in the PDF file (with tools like PitstopPro of the Enfocus) or during the stage of postscript with a tool like PubliPDF (see: Grafikhuset Publi PDF for GPL license freebie; details on usage and other information are available at) (: Welcome to Grafikhuset published PDF ).

    You can also try using the joboptions CMYK in RGB mode setting to see if you get an acceptable conversion (be aware that graphics and images in documents may be affected). You must also set GetLibraryColorRGBFromCMYK = None to prevent all doing unnecessary conversions color FM.

    The background color feature works correctly from only FM12 CMYK mode.

  • Choosing a color gives the background color?

    Whenever I take a color by dropper or the tab of shades, it affects him my background color. It allows to define my foreground color. How can I change this?

    Look in the color Panel. You have probably highlighted the background color. Click the foreground color in the Panel, and you should be good to go.

  • Setting the background color of the line according to a column value

    Hello

    in a classic report, I want to change the record to the red background color if the value of a specific column is 'NO' in the folder. Please help me.

    Apex 4.1
    RDBMS 11.2

    Thanks in advance
    lukx

    Hello

    Use custom report template. This post might help
    Re: Highlight a line in a tabular form, based on a column in the row

    Kind regards
    Jari

    http://dbswh.webhop.NET/dbswh/f?p=blog:Home:0

Maybe you are looking for

  • Dear Sir, can get back you cult - Mozilla add-on

    Dear Sir, can get back you cult - Mozilla add-on ( http://suncult.sourceforge.net/ ). It is not possible to get it for a long time now! It is so important for me. Or tell me is it now the similar module, I try to find it, but I can't. Best regards Mi

  • HP PRO 3405 series MT * blue screen during installation *.

    Hello I tried to install Windows XP on this PC, but I get the blue screen during the installation. Instead, with windows 8 I can install. I need drive for controller? (F6 at startup)

  • WIN8 trackpoint middle third button click action

    Hello. Using a W530 ThinkPad UltraNav driver 16.2.5.0 version with Windows 8. I tried to uninstall--> restart-> reinstall-> restart. The middle button does scrolling. In settings UltraNav (TrackPoint), the only option is to set the sensitivity of sti

  • Range very poor bluetooth Sony Xperia Z3

    Hi, I own a Sony SRS X 5 personal speaker that connects Palm bluetooth for my Z3 Xperia. The problem is that it disconnects when I have the phone 3 feet away, or sometimes less... Is there a problem with the bluetooth on the Z3 Xperia range? I got an

  • How can I fix a limited access on a USB wireless to my router

    I bought a usb adapter linksys AE2500 dual band n wireless and it connects to my router, but after a few minutes, he goes with limited access. How can I prevent this from happening.  Ive already called cisco and had them bad to shoot me for two days.