How is it possible to have multiple styles for a single control

Hi ,
I have a CSS associated with my MXML File . Now how can i assign all these things to my TextInput ,for example by doing below , i can only assign font Size , how can i assign all these styles at a time to my TextInput
<mx:Label name="UserName" width="80" x="89" y="80" text="UserName" styleName="p">
This is my external css file
.h1 {
    font-size: 24;
.p {
    font-size: 50;
.a {
    text-decoration: underline;
.a:hover {
    color: #FF0000;
Thanks in advnace .

Hi,
Try to combine your declarations.
     .newStyle {
font-size: 50;
       text-decoration: underline;
<mx:Label name="UserName" width="80" x="89" y="80" text="UserName" styleName="newStyle">

Similar Messages

  • Is it possible to have multiple users on a single ipad

    Is it possible to have multiple users on a single ipad

    Once a device or computer is associated with your Apple ID, you cannot associate that device or computer with another Apple ID for 90 days.
    http://support.apple.com/kb/ht4627

  • How to have multiple orders for a single contract

    Hi all, my question is:
    How to have multiple orders with respect to a contract which is valid for many years? The orders are given periodically over the lifetime of the contract. Once the order is given, the order quantity needs to be confirmed and then the order needs to be billed.
    Thanks in advance.

    Hi Bappaditya,
    To get multiple orders from a contract, you can either create an order as a follow up document from the contract
    Or
    Maintain the contract determination settings.
    In such a case, everytime you create an order the contract determination happens, for the particular business partner and product.
    For this to happen you need to maintain the customizing settings:
    1. Copy Control between contract and order
    2. Contract determination setting in the order transaction type
    The qunatity confirmation can be done by standard setting at itme category level.i.e. If the quantity is more than that stated in the contract an error is raised.
    For billing of order you will have to maintain the billing setings like billing type, biliing item category, billing item determination.
    Hence every time your order is created it comes in the billind due list from where you can create the blling document.
    Wish the information is helpful.
    Regards,
    Shalini Chauhan

  • How is it possible to have 4 buttons for fast forward/reverse in iTunes?

    Hi,
    I want 4 Buttons for fast forward/reverse. So 2 Butoons for next/previous track and 2 buttons for +10/-10 seconds. How is it possible? It sure is...

    Hi,
    Try to combine your declarations.
         .newStyle {
    font-size: 50;
           text-decoration: underline;
    <mx:Label name="UserName" width="80" x="89" y="80" text="UserName" styleName="newStyle">

  • How to place outbound files to multiple channels for a single agreement

    Hi All,
    We need to send single HIPAA 834 document to two different locations(channels) of the same TP. We have single HIPAA 834 agreement with one TP and one channel. is there a way to add two TP outbound channels for a single TP/agreement?
    Thanks,
    Kathar

    Hi Kathar,
    is there a way to add two TP outbound channels for a single TP/agreement?One TP may have multiple channels but one agreement can have only one associated channel. You may consider using the broadcast feature of Oracle B2B here.
    You may read about this feature here -
    https://blogs.oracle.com/oracleb2bgurus/entry/broadcast_feature_in_oracle_as
    Please note that this blog was written for 10g but concept and implementation is same in 11g.
    You need to create two TP profiles for same TP (you should use different name/identifiers for both) and then make them part of same group by adding identifier "Grouping" in both the profiles with same value. From middleware pass the header "Grouping:<value>" in action name or event name header. At runtime B2B will send the same message to both TP profiles.
    Regards,
    Anuj

  • Is it possible to have multiple page layout in single document?

    HI all,
    I am having a pdf document which contains 10 pages. I want to make the first three pages in Landscape layout and the remaining 7 pages in Portrait, is it possible?
    Thanks in advance
    Sreejesh K V

    Sreejesh K V wrote:
    HI all,
    I am having a pdf document which contains 10 pages. I want to make the first three pages in Landscape layout and the remaining 7 pages in Portrait, is it possible?
    Thanks in advance
    Sreejesh K V
    Sure. Print the first threee pages to PDF in landscape, the remaining seven in portrait, then combine them in Acrobat either by opening the first and inserting pages from the second or by using File>Create PDF>From multiple files.

  • Possible to have multiple views for one scene?

    Away3D allows multiple Views to be created for one Scene, allowing different camera positions for the same geometry.
    Can Proscenium support this? I've been banging my head against a brick wall for a while now...
    Joe

    Hi Kopaacabana,
    (I  feel like I'm in one of those post-apocalyptic scenes where the last two humans left on earth finally meet.....)
    Thanks for answering!
    Yes, I've actually got two cameras quite happily working in the scene, the problem is that I need to re-use the geometry for the scene in two windows, or at least, two separate parts of one window simultaneously. Away3D can do it very easily, where one sets up a 'View', which has a 'Scene' it views. With Proscenium it seems that the whole thing is tied up with an Instance3D, which is fine for one camera, but the scene nodes seem tied up as children of some root scene node. I've tried assigning the scene data as a child of two instances of BasicScene (hacking the stage3ds[number] to be different for each), but that causes an exception.
    Just changing the activeCamera changes the view to the new camera, where I actually need to be able to render to two windows/screen areas from one set of geometry.
    I would have hoped that the paradigm would have been 'here is some geometry, lights, etc., now do with it what you will'
    Adobe, are you there to help us out, like, anyone at all? Are we wasting our time with this?
    Joe

  • How to set multiple styles on a single component in flex ?

    Hi ,
    I would like to know how to set multiple styles on a single component in flex.
    Can anyone give me an example as to how to set multiple styles for a single component ?
    Thanks ,
    Regards,
    Ajantha

    Hi tuliptaurus,
    You can setStyleName property for chnaging the external css dynamically by using the setStyle() method ...
    btn.setStyle("styleName","blendButtonSkinOther");
    You can change the external css by using the styleaName property with setStyle method..the line in blue..where blendButtonSkinOther is another css class..
    blendButtonSkin {
        fontFamily: Arial;
        fontSize: 11;
        color: #F1F1F1;
        textRollOverColor: #F1F1F1;
        textSelectedColor: #F1F1F1;
        horizontal-align:center;
        width:150;
        height:30;
        cornerRadius:5;
        upSkin:ClassReference('assets.skins.BlendButtonSkin');
        downSkin:ClassReference('assets.skins.BlendButtonSkin');
        overSkin:ClassReference('assets.skins.BlendButtonSkin');
        disabledSkin:ClassReference('assets.skins.BlendButtonSkin');
        selected-up-skin: ClassReference('assets.skins.BlendButtonSkin');
        selected-down-skin: ClassReference('assets.skins.BlendButtonSkin');
        selected-over-skin: ClassReference('assets.skins.BlendButtonSkin');
    blendButtonSkinOther {
        fontFamily: Arial;
        fontSize: 11;
        color: #F1F1F1;
        textRollOverColor: #F1F1F1;
        textSelectedColor: #F1F1F1;
        horizontal-align:center;
        width:150;
        height:30;
        cornerRadius:5;
        upSkin:ClassReference('assets.skins.BlendButtonSkin');
        downSkin:ClassReference('assets.skins.BlendButtonSkin');
        overSkin:ClassReference('assets.skins.BlendButtonSkin');
        disabledSkin:ClassReference('assets.skins.BlendButtonSkin');
        selected-up-skin: ClassReference('assets.skins.BlendButtonSkin');
        selected-down-skin: ClassReference('assets.skins.BlendButtonSkin');
        selected-over-skin: ClassReference('assets.skins.BlendButtonSkin');
    Thanks,
    Bhasker Chari

  • Multiple Passphrases for a Single SSID ?

    We are getting ready to deploy a special SSID for handheld devices to be used on.
    Is there any way to have multiple passphrases for a single SSID ?  The reason I am looking at this is that we may have users who come into one of our offices and may not have gotten/received the email advising of the passphrase change.  My hope would be that we could implement Passphrase A when we initially deploy the new SSID and then in say 3 months, change the password.  We would like to leave the Passphrase A active for about a week which should be sufficient time for them to change it and then we could delete Passphrase A, leaving only Passphrase B active.  In WEP there was something like this but I dont see this as an option in WPA2.  Unfortunately with some of the devices that I have looked at, WPA2 Enterprise isnt an option, so that is why I am looking at things from this perspective.
    Any suggestions would be appreciated.
    Ron

    Hello Ronald,
    No you cannot have multiple passphrase or WPA-PresharedKey for the same SSID.
    Thank you,
    Serge

  • Is it possible to have multiple search results page using one Search Enterprise Center site?

    Hi,
    We're using SharePoint 2013 and I'm trying to modify the search results page for one site collection. By default, it uses the search results page from the parent site which is the search center being used by default for the web application. I need to make
    sure that the site collection will only retrieve search results within the site collection (search everything has to be disabled). I found a way but I had to create another search center site to accomplish this, otherwise, it will affect the search center
    site of all other site collections on the web app.
    Now is it possible to have multiple search results page using one Search Enterprise Center site?

    Hi,
    According to your description, you want to retrieve the search results within the site collection.
    As a workaround, you can create a custom result source for the site collection and you will retrieve the search result within the site collection.
    More information about how to create result source in SharePoint 2013, please refer to :
    http://technet.microsoft.com/en-us/library/jj683115(v=office.15).aspx
    http://techmikael.blogspot.com/2013/04/limiting-search-results-in-sharepoint.html
    Best regards

  • Is it possible to have multiple locations in the Google Maps widget?

    Hey folks,
    Lets say you're designing a website for a client with multiple stores, you just want to point them all out, right?
    Just want to know if it is possible to have multiple locations in the Google Maps widget. I guess it shouldn't be that difficult, but I can't figure it out..
    any help would be highly appreciated!
    thanks,
    Thom

    It seems that you can only use one address for this widget.
    For this to work you will need to create the map in Google Maps with all your points and then copy the embed .html from Google into Muse.
    Example of an embed google map with multiple points imported into Muse:
    (Object/Insert HTML)

  • Is it possible to have multiple links in single page?

    Is it possible to have multiple links in single page for
    linking in different slides like in a websites? My deadline is
    nearing in. Adobe folks please help me.

    > Is it possible to have multiple links in single page for
    linking in
    > different slides like in a websites? My deadline is
    nearing in. Adobe
    > folks please help me.
    >
    Add multiple click boxes to the page.
    Steve
    Adobe Community Expert: eLearning, Mobile and Devices
    European eLearning Summit - EeLS
    Adobe-sponsored eLearning conference.
    http://www.elearningsummit.eu

  • Is it possible to have multiple "ATI HD 3870" in a macpro?

    is it possible to have multiple "ATI HD 3870" in a macpro?
    thinking of getting me a mp but want more videocards with more vram (more more more)
    now there is the option to get 4 ati2600 can i also install 4 3870's?
    -mj

    Power limit on the video card power supply is 350 watts. A 3870's maximum power consumption is 170 watts.
    There are slots for up to four video cards. That's all. If the four cards don't require more power than the power supply can provide, then you could install four cards. For example you could install four 7300s since each card only requires 50 watts..
    As I said more video cards just gets you more monitors. There is not improvement in video performance nor amount of video RAM.

  • Is it possible to have multiple pause the require view to click "continue" button to proceed?

    Is it possible to have multiple pauses the require view to click "continue" button to proceed?

    1. Turn the video into a symbol.
    2. Set stage, symbol and video to not autoplay.
    3. Set play in the video playback at the start of the video timeline.
    4. Set pause in the video playback at the prefered time on symbol timeline.
    Once I convert it to a symbol , the pause funtion is not showing on playback.
    5. Zoom in as much as you can on symbol timeline and set trigger "stop all" for the symbol right after the pause playback marking.
    6. Set play in the video playback right after the "stop all trigger" marking.
    7. Create button with action play symbol.
    You can now play a video which will stop at a pre set pause, and make it countinue to run by clicking the play button again.

  • Is it possible to have multiple different texts conversations with the same two people?

    In iOS 8.1.3 is it possible to have multiple different text conversations with the same person? I'm looking for a way to set an old conversation aside to talk about something new.
    Is this possible?

    speculation is agaisnt the ToS here, but you never know (I was shocked when we got 8 track recording in GB2)
    best thing to do is to send Apple some Feedback and let them know what features you want (they really do read what's sent):
    http://www.bulletsandbones.com/GB/GBFAQ.html#sendfeedback
    (Let the page FULLY load. The link to your answer is at the top of your screen)

Maybe you are looking for

  • G4 booting problem

    Hi all, I am having trouble starting my G4, i push the power button, the desktop comes up but nothing else.. and the little blue magnifying glass icon in the top right corner appears but nothing else...How can i fix this problem? Thanks in advance

  • Reflecting cube in query designer

    hi can any body tell me that i have created one cube and that cube which i have created that i want should also reflect in my query designer how should i make it reflect in query designer regards gurkiran

  • How to run ICWC in 2007

    Hi All, How can I run IC WebClient in CRM 2007. Is there any T-code for that ?. whats the main application which holds all the main components. Also please give a  brief description of the main BSP components need to know for developments / customiza

  • Can't find an application close event.

    I have a script that runs on the document close event.  It looks like the document close event doesn't fire when the application is closed while a document is open. I checked for an application close event in the Script listener log, but there wasn't

  • Set up DataSource on Tomcat

    Hi, I'm porting my faces app to Tomcat 5.5.9. I create a DataSource in the tomcat/admin tool. I've got 2 questions: do I specify "com.sun.sql.datasource.DriverAdapter" as the driverClass (just like in SunOne8)? Also, which .jar is this class located