ApplicationControlBar with top edges and bottom round off square

desire to make a  ApplicationControlBar as the image that follows below. I searched the internet and found nothing that helps me to  change the edges of the object

Hi,
If you create an application skin then find the section topGroup, you just add each corner radius in, below is thesection with  left top corner radius
added.
David.
        <s:Group id="topGroup" minWidth="0" minHeight="0"
                    includeIn="normalWithControlBar, disabledWithControlBar" >
            <!-- layer 0: control bar highlight -->
            <s:Rect left="0" right="0" top="0" bottom="1" topLeftRadiusX="10" topLeftRadiusY="10">
               <s:stroke>
                    <s:LinearGradientStroke rotation="90" weight="1">
                        <s:GradientEntry color="0xFFFFFF" />
                        <s:GradientEntry color="0xD8D8D8" />
                    </s:LinearGradientStroke>
               </s:stroke>
            </s:Rect>
            <!-- layer 1: control bar fill -->
            <s:Rect left="1" right="1" top="1" bottom="2" topLeftRadiusX="10" topLeftRadiusY="10" >
               <s:fill>
                    <s:LinearGradient rotation="90">
                        <s:GradientEntry color="0xEDEDED" />
                        <s:GradientEntry color="0xCDCDCD" />
                    </s:LinearGradient>
               </s:fill>
            </s:Rect>
            <!-- layer 2: control bar divider line -->
            <s:Rect left="0" right="0" bottom="0" height="1" alpha="0.55" topLeftRadiusX="10" topLeftRadiusY="10">
                <s:fill>
                    <s:SolidColor color="0x000000" />
                </s:fill>
            </s:Rect>

Similar Messages

  • Darker top third and bottom third this AM

    I came down this morning and when I woke the computer [PowermacG5] from sleep saw something I'd never seen before = my 30" ACD came up and the top and the bottom 1/3 were darker than the middle 1/3 - I checked the pref. and adjusted the brightness but it didn't improve it = I then rebooted the whole computer and now it's gone = I'm certainly glad it's gone but thought I would ask whether anyone knows the cause/fix etc.
    I had just upgraded to 10.4.9 but don't see the correlation, at least yet

    Hi
    Normally a partially dimmed LCD indicates a problem with the back light(s). Assuming the 30" ACD has three (top, middle and bottom), it seems unlikely though that two would temporarily fail simultaneously and then work again after a reboot. I guess one option would be to keep an eye on it to see whether it happens again.

  • Top 5 and Bottom 5

    Hi all ,
    Can anyone help me in solving the following problem ..
    How to get top 5 and bottom 5 selling books in a single query
    Eg:
    Book name No.sold
    A 45
    B 78
    C 8
    D 6
    T 66
    E 33
    AA 35
    AB 95
    AC 51
    AD 5
    AE 42
    desired output :
    Top 5 bname | bottom 5 bname
    AB AD
    B D
    T C
    AC E
    A AA
    Thanks in advance
    Sana

    Since, in general, more than one book can have same no_sold, more than 5 books can have top/bottom no_sold. If you want all 5 top and bottom selling books, use:
    with t as (
               select  book_name,
                       no_sold,
                       dense_rank() over (order by no_sold desc) rnk_top,
                       dense_rank() over (order by no_sold) rnk_bottom,
                       row_number() over (order by no_sold desc) rn_top,
                       row_number() over (order by no_sold) rn_bottom
                 from  books
    select  t1.book_name,
            t2.book_name,
            t1.no_sold top_no_sold,
            t2.no_sold bottom_no_sold,
            nvl(t1.rnk_top,t2.rnk_bottom) rank
      from      t t1
            full join
                t t2
              on (
                      t2.rn_bottom = t1.rn_top
      where t1.rnk_top <= 5
        and t2.rnk_bottom <= 5
      order by nvl(t1.rn_top,t2.rn_bottom)
    BO BO TOP_NO_SOLD BOTTOM_NO_SOLD       RANK
    AB AD          95              5          1
    B  D           78              6          2
    T  C           66              8          3
    AC E           51             33          4
    A  AA          45             35          5
    SQL> If all you want is any 5 top/bottom sold books:
    with t as (
               select  book_name,
                       no_sold,
                       row_number() over (order by no_sold desc) rn_top,
                       row_number() over (order by no_sold) rn_bottom
                 from  books
    select  t1.book_name,
            t2.book_name,
            t1.no_sold top_no_sold,
            t2.no_sold bottom_no_sold,
            t1.rn_top rn
      from      t t1
            inner join
                t t2
              on (
                      t1.rn_top <= 5
                  and
                      t2.rn_bottom <= 5
                  and
                      t2.rn_bottom = t1.rn_top
      order by rn
    BO BO TOP_NO_SOLD BOTTOM_NO_SOLD         RN
    AB AD          95              5          1
    B  D           78              6          2
    T  C           66              8          3
    AC E           51             33          4
    A  AA          45             35          5
    SQL> SY.

  • I was working with my iPad with 1% battery and it turned off....

    I was working with my iPad with 1% battery and it turned off . I connected it to USB cable but my iPad wants to turns  on with 1% battery but after a minute it turns off again.it happend for more than10 times.Please help me .My iPad is the 3rd Generation only WIFI.

    Hi asdflnbbg,
    Welcome to the Support Communities!
    The article below may be able to help you with this.
    Click on the link to see more details and screenshots. 
    iPad: Charging the battery
    http://support.apple.com/kb/ht4060
    Cheers,
    - Judy

  • Top N and Bottom N

    Hi, I have a question about using the top N and bottom N conditions in a query.  If I set my condition to show the bottom 1, and there are multiple rows that have 0%, then how does the query determine which row to display as the bottom 1?
    I ask this because I have such a query and result set as described above.  The bottom 1 that is returned actually shows up in the middle of the list when I display all rows.
    Any help is appreciated.  Thanks.

    Hi Audrey,
    this is an excellent question. It took me a while to find the answer. The OLAP engine is using the standard ABAP SORT statement to rank the values.
    TOP N:
        SORT c_t_rank BY value DESCENDING.
    BOTTOM N:
        SORT c_t_rank BY value.
    Now the SORT statement does not preserve the original order of the records. If values are identical, the outcome of the sort is not defined. Potenially it could be different every time you execute the query. The SORT statement also has an option to preserve the order of the records, but because this has a performance impact, it is not used by the OLAP engine.
    Kind regards,
    Marc
    SAP NetWeaver RIG, US BI

  • I can not get the phone to turn back on. My email had been blinking off so I tried turning it off. After holding down top button and bottom button it the apple sign came up then went out as it has before when I have approached it this way. But now no go.

    My phone is dead it will not turn back on after taking a step I have used in the past when I have had issues with the phone. In the past I haeld the top button and the button on the face down and it will turn black then the apple sign comes up then off. I can then turn it back on and it seems to be reset and all is good not so today. It will not turn back on.

    1. Plug phone into AC adaptor and charge for at least 30 minutes
    2. If not on, reset phone: press both home and power buttons for at least 10 seconds, releasing when the Apple logo appears.
    If no reponse to above, there is hardware damage and you need to take it to Apple or whoever provides iPhone service in your country.

  • PowerMac G5 Dual 2.5 - Only Boots with Side Cover and Fan Guard OFF!!

    I have the strangest problem with my PowerMac G5 Dual 2.5.  This has been my Pro Tools rig forEVER.
    At some point early last year, my Mac wouldn't boot.  It would not see the hard drive, and would show that dreaded alternating icon in the middle of the screen indicating as much.  I tried resetting, tried power off/on, tried resetting PRAM.  Nothing.  I took the cover off, and fan guard off to get at the hard drive.  Verified the data and power cable were seated in hard drive.  Cover still off, I booted up the system.  Voila!!!  Booted right up like nothing was ever wrong.  I put the cover back on, and went about my business, passing it off as a one-off power glitch (the power in my house ***** rocks).  Next time I rebooted the Mac, the exact same thing happened. 
    I can repeat this at will.  If I leave the cover on, the system will not ever, ever boot.  The minute I take the cover and fan guard off, causing the fans to spin at max speed when turned on, the system boots without issue.  So, I reset PRAM and PMU.  I even tried replacing that green/white cylindrical battery on the motherboard.  Reseated power/data cable on hard drive.  ****, I even tried a different hard drive and memory (explained below).  No change. 
    Since then, I have relegated this system to the emergency backup system, and procured Dual 2.7 G5 PowerMac.  I transferred the pro tools cards, hard drive (without formatting it) and memory (8 GB) to this new 2.7, and have not had a single, solitary issue with it.  So, I know it's not the hard drive, memory, OS install, or Pro Tools cards.
    What in the name of the Apple Gods could be causing this issue?  Any ideas at all?

    Hi Chris,
    Good info & work so far, but indeed strange, only thing I can think of is something to do with that little switch for the fan cover... near the bottom as I recall, but it may be some kind of short in it's circuit.

  • Exchange rate and GST round off differences

    Hi,
       When we create a invoice with tax then some times the vendor invoice tax amt may differ from the tax amt calculated by our system. This may be due to the rounding differences. So how to handle these kind of payments?
    Can any one pls explain me the procedure for handling the exchange rate differences.
    Thanks,
    Sravanthi.

    Dear Sravanthi,
    The difference is not because of the rounding off. Rounding off differnce come only till nearest rupee. And that is acceptable. But in your case I think the difference is coz of the exchange rate maintained in the system. If you maintain the exchange at which the vendor invoice is preapared then i think ur problem may get resolved.
    Also execute F.05 - Valuation of open items in foreign currency, before you run the payment transaction.
    Hope this will help you.
    Regards,
    Ajay

  • Top 5 and bottom 5 selling products

    My source table contains
    Book_id Quantity Selling_date
    My problem is to find out top and bottom 5 selling books for a particular year.
    For example,
    For year 2010,
    Top_5 Bottom_5
    b1 b2
    b6 b8
    In this way I want to get output for watever year I want.
    Waiting for a reply,
    Thank You.

    Hi,
    Welcome to the forum!
    915235 wrote:
    My source table contains
    Book_id Quantity Selling_date
    My problem is to find out top and bottom 5 selling books for a particular year.
    For example,
    For year 2010,
    Top_5 Bottom_5
    b1 b2
    b6 b8
    In this way I want to get output for watever year I want.Here's one way to get the results for a given year:
    WITH     got_nums     AS
         SELECT    book_id
         ,       SUM (quantity)          AS total_quantity
         ,       TRUNC (selling_date, 'YEAR')     AS selling_year
         ,       RANK () OVER ( ORDER BY      SUM (quantity)     DESC
                          )     AS t_num
         ,       RANK () OVER ( ORDER BY      SUM (quantity)     ASC
                          )     AS b_num
         FROM       source_table
         WHERE       EXTRACT (YEAR FROM selling_date)     = 2010     -- or whatever
         GROUP BY  book_id
    SELECT       *
    FROM       got_nums
    WHERE       t_num     <= 5
    OR       b_num     <= 5
    ,       t_num
    ;What do you want if there happens to be a tie? For example, if you have have 7 different books that only sell 1 copy in the year? (I assume you don;t want to include books that sells 0 copies.) The query above would include all 7 in the bottom 5, because they all have an equal claim to being in the bottom 5. If you want to show exactly 5 books, regardless of ties, then use ROW_NUMBER instead of RANK, and add more expressions to the analytic ORDER BY clauses to choose the 5 you want.
    It looks liek there's another part to this problem, which is displaying the book_ids in 2 columns, rather than 1. That's called a Pivot , and how to do it depends on your version of Oracle, and also on how you want to deal with ties. See the forum FAQ {message:id=9360005}
    Waiting for a reply,Of course you are. Saying so makes it sound like you think you're especially impoortant and deserve special attention. That comes across as rude, so don't say things like "Urgent", "ASAP" or "Waiting for a reply" in your messages.

  • Can I have 2 routers with different security and broadcast modes off same modem?

    Hi
    Apologies for not being too technical.  The background is that I have a mac and a dell laptop, both of which used to work off a Linksys WRT54G wireless router even though both computers are set up for N routers.  I then bought a Logitech Squeezebox internet radio, again working off the Linksys G.  The security on all 3 was WEP.
    I was then advised to upgrade my router to N and change security to WPA.  I bought a Netgear WNR2000 N wireless router as the local shop did not have any linksys n routers.  I tried to set up the three devices to this router but it seems that the radio will only broadcast G and WEP security.
    It then appeared that I would have to downgrade the other two computers back to G and WEP also and when I did that the internet speed really slowed down.
    My query is this, can I set up the Netgear N to be linked to my modem and broadcasting at N and WPA, thus linking my computers at top speed, and then can I link my Linksys to my Netgear and have that broadcast a different network on G/WEP for my radio?  If I can or if there is a better solution could someone tell me in easy steps how to do it?
    Very much obliged.

    You don't have to downgrade your router. Just enable mixed mode so it will allow wireless N and G devices to connect to the router. However, it will share the same wireless security mode.
    With regards to your query, the answer is yes. You can setup two (2) wireless routers, one providing N and WPA while the other one providing G and WEP. It might be a little complicated though. You have to cascade the routers. Both should have different SSID and channel.
    Try this setup first before changing the wireless options.

  • Changing the top cover and bottom cover

    hi,
    i want to ask if i change both top and bottom cover of my white macbook myself(macbook model 5.2) does my AppleCare (still got 1 more year valid) still valid for those component inside like the scren, motherboard? bec now there are too much obvious scratches ...
    thank you ~

    If Apple sees the inside has been worked on before, they may refuse warranty. It may be up to the tech's discretion that is working on it.
    Check out the new remodeled MacOSG website! 24-hour Apple-related news & support.
     MacOSG: An Apple User Group  iTunes: MacOSG Podcast  Follow us on Twitter: MacOSG

  • Create  query with top 5 and rest

    Hi,i want to have a query that gives a list in the following format
    customer  - value of orders
    #1            -  20.500
    #2            -  20.100
    #3            -  16.000
    #4            -  15.000
    #5            -  14.000
    Rest         -  49.600
    how can i achieve that in a convenient way  - filters,conditions,exceptions,properties etc - all those new stuff?
    (i am new to BI,so excuse my beginners question,please)

    Hi,i am not sure if it is possible to diaply Value of Rest with standard functionality.Instead you can display Overall result.
    Create a condition TOP N and speify the number as 5. and make sure Suppress Result rows of Customer is set to 'never'.So you will get displayed Top 5 Customers and Overall result.
    if you are saving the result as WorkBook,then add one more Row after Query result to display result  with the Excel formula Overall Result-Top 5.Save the Workbook.

  • Viewing excel sheet on iPad with top row and leftmost column frozen

    I Wish to view excel sheets on iPad with leftmost column and top row frozen the way it is in excel so that one can move side wards and down with headings intact

    You can try converting the top row to a Header Row and the leftmost column to a Header Column.
    SG

  • Macbook Pro won't boot past grey screen with Apple logo and then shuts off

    This is a long story...
    This morning, I would turn it on and it'd go to the grey screen with the Apple logo for a few seconds and then go to the icon that is a circle with a line through it. After reading online, I was able to boot it up in Safe Mode. I messed around a little bit in system preferences thinking I could fix it on my own, not really knowing what I was doing (I'm a *******). I went to Startup Disk in Preferences. I chose the MAC OS X, xxxx and then clicked the lock to prevent further changes and then clicked restart.
    Now when I turn on the macbook, it goes to the grey screen with the Apple logo for at least two-three minutes and then just shuts off. Won't boot into Safe Mode now. Please help. I already tried the Command-Option-P-R keys trick like five times.

    If you have a full retail DVD for 10.6 you can boot from that by holding the C key during startup...but you will then be in install mode if that is what you want to do.  At least go ahead and see if it will boot ok from the 10.6 disk and then you can decide what you want to do further.
    Apple does not have 10.5 for sale anymore from what some other users have said on here so if you want to go that route you will have to find a copy for sale such as from eBay or one of the Mac resellers.
    Before taking the machine to someone, try booting from 10.6 and see if that works...that way you can narrow down problems the machine may be having.

  • Recording LPs with smart recorder and sound quality off.....

    Hi,
    I have X-Fi Extreme music card on my PC and trying to record some LPs with SmartRecorder. These are classical LPs and I find that when played back, the orchestra (violins, choir, etc) sound like this was recorded in a tin can. Any ideas why this would be? I connected all my cables accordingly and?am still?getting this problem.

    Which type of connection are you using there?
    Do you have preamp stage w/ RIAA there before soundcard (you have connected the PC into your stereo system just the way
    like you connect a casette recorder or you have connected your turntable w/ RIAA preamp directly into soundcard) or
    have you connected your turntable (w/o RIAA + preamp) directly into soundcard?
    If you're using the latter method, you need to have EQ w/ RIAA compensation added into signal (you need some ASIO/VST
    capable recording software which allows you add FXs into signal (Hermann Seib's VSTHost) and an EQ capable for
    compensation curve +20dB (20Hz) - -20 dB (20 kHz) (ddmf:IIEQ). It's possible that you
    can't get levels set high enough w/o adding some gain plug-in into signal path. You can use Sonalksis FreeG VST (stereo)
    for this (in VSTHost, place (route) the FreeG either after or before the EQ (try which works better for you)).
    Also, check if the recording source is set correctly (w/ "What U Hear" option you get all added effects added
    into signal (EAX, CMSS) so it's best to set input as Line-In) and turn all effects OFF.
    If you record into lossy format as mp3 or wma, check that the bitrate is set high enough (I suggest you use bitrates
    256 - 320). Also, do not use addons like Chrystalizer, etc..
    If needed some software, http://www.head-fi.org/forums/showpost.php?p=282263&postcount=7
    jutapaMessage Edited by jutapa on 05-08-200704:02 PM

Maybe you are looking for

  • Use IBM JVM in presense of 64 and 32 bit

    Hello, I am running WIN7 and have both the 32 and the 64 bit IBM JVM installed on it, the 64 bit IBM JVM being the system JVM. The latter is mandatory for various applications. I am experiencing problems with the Java plugin of Firefox (version 31.5.

  • 3d video controller driver

    hi my laptop name is- hp pavilion 15-r006tx notebook pc..and in this 3d video controller driver is not installed which creates problems in installing games....without this the hd games would not running....so give me the software or gime me the link

  • Propagation over DB link with connection qualifier

    I have been unable to get propagation between two 10.2.0.4 databases running across a dblink that includes a connection qualifier. The dblink is a fixed user link created like: CREATE DATABASE LINK "DB4.WORLD@TRAINING" CONNECT TO TRAINING IDENTIFIED

  • Transferring mail from laptop to desktop

    I don't have a .mac account and want to transfer mail received on my laptop to my desktop G5. I don't want to simply "forward" the new emails and open them on the desktop (they will all list me as the sender). Apple support suggested making a folder

  • Photoshop Elements 11--want "My Files" sort order to be descending

    Is it possible to have to the ordering of "My Files" folders to be descending rather than ascending?