Difference with embedded CSS vs loading runtime CSS

Hi,
Move from embedded CSS to runtime CSS, but having some subtle differences.
note the numeric stepper handles have default colors, this is with embedded css and what the client wants
This one is runtime css note the handles are black.
I had this in both before embedded and runtime CSS
NumericStepper {
   fillAlphas: 0.6, 0.4, 0.75, 0.65;
   fillColors: #ffffff, #cccccc, #ffffff, #eeeeee;
   themeColor: #92de78;
I added this to the runtime css and entered the style name for the numeric stepper but still no luck
.numericStepper {
        fillAlphas: 0.6, 0.4, 0.75, 0.65;
        fillColors: #ffffff, #cccccc, #ffffff, #eeeeee;
        themeColor: #92de78;
Any ideas complete css below. BTW my alerts are not using the runtime css as well yet embedded css works fine  
@font-face {
src:url("auth_module/poetica.swf");
font-family: "Poetica Std";
Application {
   backgroundImage: Embed(source="/images/bkg.gif");
   backgroundSize: "100%";
NumericStepper {
   fillAlphas: 0.6, 0.4, 0.75, 0.65;
   fillColors: #ffffff, #cccccc, #ffffff, #eeeeee;
   themeColor: #92de78;
        .numericStepper {
        fillAlphas: 0.6, 0.4, 0.75, 0.65;
        fillColors: #ffffff, #cccccc, #ffffff, #eeeeee;
        themeColor: #92de78;
Alert{
color : #000000;
title-style-name : "alertTitle";
button-style-name :"alertButtonStyle";
header-height:21;
border-thickness: 1;
drop-shadow-enabled: true;
drop-shadow-color :#CCCCCC;
shadowDirection:right;
shadowDistance:7;
background-color: #ffffff;
corner-radius :6;
border-style :solid;
header-colors : #DDDDDD, #ffffff;
footer-colors : #DDDDDD, #ffffff;
border-color : #333333;
.alertButtonStyle {
color : #000000;
.alertTitle{
font-family :Verdana;
font-size :10;
font-weight :bold;
text-align :left;
color :#000000;
.selectedBox {
headerColors:#336633,#447744;
borderColor:#447744;
titleStyleName: "selectedHeaders";
.legendBox {
border-thickness: 2;
border-style:solid;
border-color: #93C789;
.legendMask {
stroke-color: #333333;
stroke-width:2;
shadow-color: #333333;
.legendTitle {
font-size :12;
font-weight :bold;
.accordionHeaders {
font-family: "Poetica Std";
font-size:14pt;
color:#FFCC00;
.copyrighttext {
font-family: "Poetica Std";
font-size:14pt;
TextInput {
   color: #0b333c;
List {
   color: #0b333c;
CheckBox {
   themeColor: #92DE78;
   fillColors: #ffffff, #cccccc, #ffffff, #eeeeee;
   color: #0b333c;
.piecharBackground {
backgroundImage: Embed(source="/images/bkg.gif");
   backgroundSize: "100%";
   color: #93C789;
DataGrid {
   color: #0b333c;
   rollOverColor: #92de78;
   selectionColor: #93C789;
   textRollOverColor: #cc3333;
   headerColors: #000000, #333333;
   headerStyleName: "mydataGridHeaderStyle";
.mydataGridHeaderStyle {
   color: #92de78;
ApplicationControlBar {
   highlightAlphas: 0.4, 0;
   fillAlphas: 1, 1;
   cornerRadius: 0;
   fillColors: #000000, #333333;
   backgroundColor: #000000;
   color: #93C789;
CheckBox {
color: #93C789;
Accordion {
   fillAlphas: 1, 1, 1, 1;
   fillColors: #000000, #333333, #000000, #333333;
   selectedFillColors: #000000, #333333;
   themeColor: #92de78;
   textRollOverColor: #cc3333;
   headerStyleName: "myaccordionHeader";
   borderColor: #93C789;
   backgroundImage: Embed(source="/images/bkg.gif");
   backgroundSize: "100%";
   color: #92de78;
.myaccordionHeader {
   color: #92de78;
TabNavigator {
tabStyleName: "myTabs";
selectedTabTextStyleName: "mySelectedTabs";
dropShadowEnabled: true;
backgroundColor: #2e2e2e;
borderColor: #93C789;
.mySelectedTabs {
color: #92de78;
.backGroundPanel {
        backgroundImage: Embed(source="/images/bkg.gif");
   background-size:"100%";
   color: #93C789;
   textRollOverColor: #92de78;
   dropShadowColor: #92DE78;
Button {
   fillAlphas: 1, 1, 1, 1;
   fillColors: #000000, #333333, #333333, #000000;
   color: #92de78;
   textRollOverColor: #cc3333;
   borderColor: #93C789;
   themeColor: #92de78;
RadioButton {
   themeColor: #92DE78;
   fillColors: #ffffff, #cccccc, #ffffff, #eeeeee;
   color: #0b333c;
CheckBox {
   themeColor: #92DE78;
   fillColors: #ffffff, #cccccc, #ffffff, #eeeeee;
ComboBox {
   themeColor: #92DE78;
   fillColors: #ffffff, #cccccc, #ffffff, #eeeeee;
   color: #000000;
DateChooser {
   headerColors: #000000, #333333;
   themeColor: #92DE78;
   headerStyleName: "mydateChooserHeaderStyle";
   fillColors: #ffffff, #cccccc, #ffffff, #eeeeee;
VScrollBar {
   trackColors: #333333, #666666;
   themeColor: #000000;
   borderColor: #000000;
Panel {
   borderColor: #000000;
   borderAlpha: 1;
   titleStyleName: "mypanelTitle";
   dropShadowColor: #000000;
   roundedBottomCorners: true;
   headerColors: #333333, #000000;
.selectedHeaders{
color :#000000;
font-weight:bold;
.windowStyles {
            color: #92de78;
        TitleWindow {
        color: #92de78;
        closeButtonSkin: Embed("/images/del_24.png");
            /* Set values from defaults.css to null. */
            closeButtonDisabledSkin: Embed("/images/del_24.png");
            closeButtonDownSkin:Embed("/images/del_24.png");
            closeButtonOverSkin:Embed("/images/del_24.png");
            closeButtonUpSkin: Embed("/images/del_24.png");

The documentation says that a NumericStepper is composed of a TextInput and 2 buttons so I do understand why the buttons are getting styled the way they are.
I added a Button and a NumericStepper to a text application using Embedded Styles and it did produce the Button style effect.  I took the Button out and of course the Numeric buttons were rendered as the default Flex style of off grey / white.
Some of the Flex objects have additional style properties that allow you to style the individual components of the object however the NumericStepper does not seem to have that option.
I think the only way around it would be to get the children of the stepper and style them individually
 var btn:Button = numericStepper.getChildAt(1) as Button;
btn.setStyle("fillColors",["#ffcccc","#cccccc"]
and do the same thing for child 2
or extend the NumericStepper and override the style to be what you would like.

Similar Messages

  • Embedded video not loading?

    I seem to be having a problem with embedded video not loading.
    For example:  In Youtube if a video is embedded in a larger screen (example: http://www.youtube.com/channel/UCY30JRSgfhYXA6i6xX1erWg) it will not load but if I load the video in its own page (example: http://www.youtube.com/watch?feature=player_profilepage&v=bLT0z60vBl4) it will work perfectly fine.
    The issue comes when there are videos that don't have the option to load in a full screen (example: http://www.cbc.ca/thenational/watch/).
    I have the latest version, have hardware acceleration unchecked, this happens with all browsers (IE, FF, Chrome), have deleted cookies... what else can I do?

    this happens with all browsers (IE, FF, Chrome)
    Then it HAS to be something outside of Flash Player and the browsers, because:
    IE usues a proprietary plug-in - ActiveX, which is ONLY for IE amd functions independently of the others
    Firefox uses the standard plug-in, which neither IE nor Chrome use, unless you specifically disable Chrome's proprietary plug-in
    Chrome uses its own proprietary plug-in called "PepperFlash" which not only functions independently of the other two, it's a different format (PPAPI vs NPAPI)
    The odds that all three different plug-ins (in two different formats, no less) have the exact same problem with one situation (viewing embedded YouTube video in another page)... are astronomical.

  • On differences between JavaFX CSS and the w3c standard css

    This is a discussion topic which came to mind after reading comments in this thread Re: FXML, css and -fx-font-family
    Feel free to comment or share your thoughts on the topic.
    Note that these comments relate to the naming and semantic meanings of css tags, and not the syntax and parsing of css (as both w3c css and javaFX css seem to be equivalent in the later regard).
    You know, sometimes I find JavaFX's lack of certain css features refreshing. It is nice to have all, well, almost all, of the JavaFX CSS documented on one page. I think if you were to do the same thing for w3c css then it would end up with a much larger, more difficult to understand document and even what the contents of that document should be would probably be pretty controversial, in the same kind of way that the HTML5 specification ended up being. Microsoft contributed over 7000 tests to w3c just to cover only a subset of the css rules available in browsers today. The webkit project lists almost a thousand open CSS bugs: https://bugs.webkit.org/buglist.cgi?product=WebKit&component=CSS&resolution=---. So implementing even partial w3c CSS support is a complex project.
    When I first started using JavaFX CSS I found the differences to w3c CSS quite jarring, and it was hard to account for them. Now that I am used to JavaFX CSS, I don't have as much of an issue. The difference in names and semantics is going to be an impediment to designers working on JavaFX who are familar with w3c CSS - but the designers will quickly also discover that FXML is not HTML and Java is not JavaScript and JavaFX deployment is not HTML deployment. So, perhaps, in the larger picture, it is not as big a deal as it would seem. Still, one can't help think that any impediment to people easily picking up and adopting JavaFX is doing the technology a disservice.
    There are other advantages in having the JavaFX CSS in it's own namespace to w3c css, in that it can evolve seperately, it is not expected to be exactly the same because it has a different name, it is not expected to fully implement w3c css as browsers do because it's clearly a different thing by name, etc. There is even precedent for it in the use by mozilla of moz- CSS prefixes and webkit css properties http://css-infos.net/properties/webkit - the web as not as standard as a lot of people propose. JavaFX CSS is backing a JavaFX rendering engine and not an HTML rendering engine. It is quite remarkable that Oracle was able to build and make available a CSS model for JavaFX that feels as familar as it does to w3c css, as w3c css is targeted very strongly toward styling a completely different technology set (HTML markup and document object model).
    It would be useful to have a tool which translates w3c css to approximations of JavaFX css and vice versa, or the ability for JavaFX to have a mode (perhaps a boolean value when a stylesheet is loaded) to perform an automatic alias or mapping of w3c css to javafx (at least for the subset of w3c css which would make sense to automatically translate to JavaFX css). I haven't checked the JavaFX jira in detail, so perhaps a request for such support already exists - perhaps it is under the private http://javafx-jira.kenai.com/browse/RT-9272 jira.
    The JavaFX css model is really powerful and I have found really useful some of the additions that it adds above the baseline 2.1 css that is found consistently in browsers. With the upcoming Java CSS object model http://javafx-jira.kenai.com/browse/RT-17293, you will also get better programmatic access from Java.
    So, nice work on building and implementing this complex feature . . .

    Thanks for the feedback. Closing the gap between JavaFX CSS and W3C CSS will be an evolutionary process. It would be nice to use a standard's based stylesheet but there is not always a 1-1 mapping to JavaFX. But for those properties that can be mapped, it is something that should be supported. For example, we should be able to handle "font" or "-fx-font".
    I have made http://javafx-jira.kenai.com/browse/RT-9272 public.

  • Is there a way to disable tab font smoothing (maybe with userchrome.css)?

    hello everyone I've just switched from chrome to ff and I'm very satisfied. Just one problem, is there a way to disable tab font smoothing (maybe with userchrome.css)? I've changed the colour of tab font (with userchrome.css) to white to improve readability but with white text is too bold. thanks !!

    hey thanks for the quick reply. here's a screenshot
    http://www.mediafire.com/view/?c2a2l69ci5zbq#bt6qrwr6ku8m5n6
    i think we just have to add some antialiasing in the userchrome.css? but i don't know the code.
    here's my modified userchrome.css
    /* Inactive Tab */
    tab:not([selected="true"]) {
    color:white !important;}
    /* Tab while loading */
    tab[busy] {
    color: blue !important;}
    tab .tab-text {
    font-size: 12px !important;
    /* tab font */
    tab .tab-text {
    font-family:Verdana !important;
    i read somewhere else the problem is more evident with white text on dark background
    thanks

  • Problem signing code for application with embedded runtime

    Hi,
    I have an Adobe Air application which I am publishing with the runtime embedded.  There are lots of reasons for publishing this way.
    I have already seen an unknown publisher message after signing on Windows 8 and a tester reported the same thing on Windows 7.  According to the cert issuer (DigiCert) I need to have an Extended Validation (EV) certificate to get by the Windows 8 issue, but there was no explanation on the Windows 7 issue. 
    As the windows file is essentially a folder wiith ".app" appended to it's name, I'm not sure how signing (which I am doing with the Signature tab on the Flash GUI) ensures that the executable contained in that file is signed.
    Can anyone tell me anything about code signing when publishing an AIR application with embedded runtime?
    Best,
    Chris McLaughlin

    Not that I can think of.  What OS are they running?  Do they have the shared runtime also installed?

  • Would love to see the slider and breaks features added to Muse along with the CSS editor?

    Would love to see the slider and breaks features added to Muse along with the CSS editor?

    "I would love to have iTunes and my iPod sync the songs that the iPod played since its last updating into the song count in iTunes"
    It does already do this... unless you use manual updating. Under auto updating, tracks played on your iPod should up the count in iTunes on your next sync.
    Patrick

  • Working with bootstrap css file after opening the browser

    working with bootstrap css file after opening the browser when i came back on working on bootstrap my computer started hanging and opning new tabs  and showing message " A caused the program to stop working correctly.Windows will close thoe program and notify you if  solution is available"

    Hi Geetha,
    1.) button problem:
    i don't know how you open the form - when you do it with a XML file maybe you packed the wrong XML file into your addon installer.
    2.) the flickering can be a problem of formatted searches or interacting with other addons.
    when addon a. changes a field it can be that addon b. does something because of the event from addon a.
    the same can happen when you have formatted searches that do something when a field changes.
    ok - that are my last tipps for this day
    good night
    David

  • Working with the CSS in JDeveloper 11g

    Hi All,
    I am working on the CSS of the JSF and the ADF Components in JDeveloper11g.
    When adding the components it is generating the css for those component dynamically .
    When seeing the CSS file Iam unable to understand for which component this particular css is getting affected.
    How can I get a clear Idea of how to work with the css of the JDeveloper 11g Components are there any jar files that are generating this css.
    Please help me out.
    Thanks
    Madhavi.

    Hi,
    the use of CSS hasn't change between JDeveloper 11 and 10.1.3. You have two options:
    1) create an external CSS file that uses ADF Faces skin selectors and configure it as a skin to ADF Faces
    2) Use the inlineStyle property of the components to customize the look and feel
    See 10.1.3 documentation:
    http://www.oracle.com/technology/products/jdev/htdocs/partners/addins/exchange/jsf/doc/skin-selectors.html
    Frank

  • Is it possible to export a muse page as and individual html with associated css?

    Is it possible to export a muse page as and individual html with associated css? 

    Yes, Muse has an Export as HTML feature.

  • Is there any choice to get windows Installer with embedded air runtime ???

    I want to get windows installer of air for desktop with embedded air runtime and all swf's

    I've used the following to package captive runtime for Windows distribution:
    Packaging AIR 3 Captive Runtime for Windows Distribution | In Flagrante Delicto!

  • Background image seems to be applied twice Can someone help with this CSS issue....

    Can someone help with this CSS issue....
    http://66.162.81.144/cms400min/default.aspx
    If you view the main page you will see that our background is
    2 shades of
    orange.. if you look at the line that divides those colors to
    the right and
    left you wil notice that the line is higher
    if you notice that it seems that there is another background
    on top of the
    first one..its the only thing i can think of..
    the only place where the image is being referenced is in this
    CSS style
    html, body
    min-height:100%;
    margin-bottom:1px;
    text-align:center;
    background-repeat:no-repeat;
    background-image:url(images/Background-Color2.jpg);
    background-color:#F74902;
    background-position:center;
    background-attachment:fixed;
    Is there something wrong with the above CSS that could or
    would cause this?
    is it because im applying the image to both the HTML and
    BODY?
    ASP, SQL2005, DW8 VBScript, Visual Studio 2005, Visual Studio
    2008

    You've attached the background to both the html and the body.
    I would do this:
    html, body {
    min-height:100%;
    margin-bottom:1px;
    body{
    text-align:center;
    background-repeat:no-repeat;
    background-image:url(images/Background-Color2.jpg);
    background-color:#F74902;
    background-position:center;
    background-attachment:fixed;
    Having said that the image doesn't look any higher on the
    right than the
    left to me in Firefox. Is it just an optical illusion?
    Daniel wrote:
    > Can someone help with this CSS issue....
    >
    >
    http://66.162.81.144/cms400min/default.aspx
    >
    > If you view the main page you will see that our
    background is 2 shades of
    > orange.. if you look at the line that divides those
    colors to the right and
    > left you wil notice that the line is higher
    >
    > if you notice that it seems that there is another
    background on top of the
    > first one..its the only thing i can think of..
    >
    > the only place where the image is being referenced is in
    this CSS style
    >
    > html, body
    >
    > {
    >
    > min-height:100%;
    >
    > margin-bottom:1px;
    >
    > text-align:center;
    >
    > background-repeat:no-repeat;
    >
    > background-image:url(images/Background-Color2.jpg);
    >
    > background-color:#F74902;
    >
    > background-position:center;
    >
    > background-attachment:fixed;
    >
    >
    > }
    >
    > Is there something wrong with the above CSS that could
    or would cause this?
    > is it because im applying the image to both the HTML and
    BODY?
    >

  • Dreamweaver has been running extremely slow with reflow.css.

    Dreamweaver has been running extremely slow with reflow.css. Wondering if anyone else is encountering this issue? If so, any fixes or known variable that causes this to happen?

    I haven't see this. Can you describe a little more about what you are doing and what parts are slow? If there are specifc steps you can also file a bug with the Dreamweaver team:
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform&product=12

  • Speed dial with separate CSS from primary line

    Hello All,
    I have a question about the possibility of using speed dials on a phone in a somewhat restricted sense. What I would like to do is setup a phone with a primary line that is only capable of making internal calls within our organization, and set a few speed dials that can call outside in the local area code for on-call techs. From what I see speed dials can't be set to a specific CSS, which leads me to believe that phone will just use the CSS of the primary line when making speed dial calls.
    The question is, is this possible without messing around with custom CSS's and route patterns?

    No, as you have seen, they will use the CSS from the configured DN to make the call, they cannot be configured with a separate CSS

  • Vertically align the table with or with out css

    How do I vertically align the table with or with out css?
    See the page
    http://happynick.com/pjcartthumbnails/pages/bio.html
    This page is centered horizontally, but not
    vertically.

    http://www.apptools.com/examples/tableheight.php
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "happydreamweaver" <[email protected]> wrote
    in message
    news:fjuajb$dkb$[email protected]..
    > How do I vertically align the table with or with out
    css?
    > See the page
    http://happynick.com/pjcartthumbnails/pages/bio.html
    > This page is centered horizontally, but not vertically.

  • Xml file with embedded xsl reports unknow error: An unknown error has occurred (805303f4)

    Hi,
    I have an xml file with embedded xsl link like below :
    XML :
    <pre><nowiki><?xml version="1.0" encoding="ISO-8859-1"?>
    <?xml-stylesheet type="text/xsl" href="http://abc.com/x.xsl"?>
    <catalog>
    <cd>
    <title>Empire Burlesque</title>
    <artist>Bob Dylan</artist>
    <country>USA</country>
    <company>Columbia</company>
    <price>10.90</price>
    <year>1985</year>
    </cd>
    </catalog></nowiki></pre>
    When opening xml file on IE, opera, safary ... it works ok. But when opening it on FireFox, i have an error like :
    Error loading stylesheet: An unknown error has occurred (805303f4)
    http://abc.com/x.xsl
    How could i solve this problem ?

    A good place to ask questions and advice about web development is at the mozillaZine Web Development/Standards Evangelism forum.
    The helpers at that forum are more knowledgeable about web development issues.
    You need to register at the mozillaZine forum site in order to post at that forum.
    See http://forums.mozillazine.org/viewforum.php?f=25

Maybe you are looking for

  • Three records in single row

    Hi, I have three records in table can I put three records in a single row in alv report, Please suggest, rewarded highly thanks in advance cheers

  • How to create an alert

    hi anybody can tell the ways to create i bot alert

  • How to access the magnifier/marquee zoom tool in Reader XI?

    The subject says it all, really. Richard

  • Difference message size of each virtual domain

    Sun ONE Messaging Server 6.0 Patch 1 (built Jan 28 2004) We has 5 virtual domains on my messaging server. My customer want to limit message size each virtual domain on new channel. domain1.com can deliver message size 5 MB to internet on channel tcp_

  • JCOP put-key

    cm>  put-key 1/1/DES-ECB/404142434445464748494a4b4c4d4e4f 1/2/DES-ECB/404142434445464748494a4b4c4d4e4f 1/3/DES-ECB/404142434445464748494a4b4c4d4e4f => 80 D8 00 81 43 01 80 10 44 97 77 DD F2 8A 51 A6    ....C...D.w...Q.     2C 53 A4 82 A5 33 CC BD 03