ViewStack's TabBar: vertical position icon and description

Hello everyone,
I created a ViewStack with two tabs and I quote, in addition to the description, even an icon. The code is as follows:
<mx:ViewStack id="viewstack" creationPolicy="all" left="0" right="0>
<mx:Canvas label="Tab 1" icon="@Embed('icon1.png')" id="tab_1">
                            <! - Any elements ->
               </ Mx: Canvas>
<mx:Canvas label="Tab 2" icon="@Embed('icon2.png')" id="tab_2">
                            <! - Any elements ->
                </ Mx: Canvas>
</ Mx: ViewStack>
In this way, the icon is placed next to the description of the tab, precisely on the left. I would rather that the icon is located above description, but I do not know how. I tried to set the vertical layaout the Application tag, but obviously I will change the entire layout.
You can determine the position of the icon, or do I create a custom component for use in ViewStack Canvas?
Thank you so much aid.

This was for mx:ButtonBar (because I apparently didn't read your question very closely), but it should also work for MX TabBar with a bit of tweaking (like extending Tab instead of ButtonBarButton):
http://blog.flexexamples.com/2010/11/09/changing-the-label-placement-on-an-mx-buttonbar-co ntrol-in-flex-redux/
Peter

Similar Messages

  • How to reduce the size of icons and descriptions of pallets?

    Hi!
    1. The "Control bar" is still something missing and to display the location of the same functions are different depending on the selected tool.
    Therefore, the tools will I need to keep an eye on pallets or icons. But description of the pallets is too great for me, takes place and I can not see as many pallets as I need.
    2. The idea to create multiple workspace and its continuous change is not good for me.
    When I work I prefer to have the tools at its one location, then I can rely on My reflexes when choosing a tool, and not constantly look where this time or constantly switch the workspace.
    3. How to reduce the size of icons and descriptions of pallets I, then he could fit more pallets in one column?
    Best Regards!

    Hi Monika,
    Nice to read you again. Thank you for your response.
    Yes, I read. It does not solve the problem about which I write. I guess that solves your opinion? Please hint.

  • DPR_DOCUMENT iview is having missing folder icon and description

    Hi All,
    The C projects iview DPR_DOCUMENT contains many folders under the document tab. A particular user is facing the issue of missing folder icon and name at the project header level.
    Any suggestions as to why this could be happening or where this can be checked will be very helpful to me.
    Thank You
    Yeshwant More

    hi kappy.
    i followed some documentation posted to the forum and also some guidance from apple tech.
    why, is there something specific i need to consider or make sure i did?
    THANKS

  • Not able to Post PodCast Photo icon and description on iTune page...

    I Have been working hard and reading everything, Yet I have not been able to understand how to post my _photo icon_ and the description for my podcast page. I am working with Garage Band and iWeb '09.
    The photo shows up if you click on the podcast, but not on the main itunes page.
    Can I just work from the programs of Garage Band, iWeb and iTunes for this podcast or do I need to the file programing to run things? I have yet to find out how to _add search/key words_ for people to find my podcast.
    I really want to make an announcement of this podcast but not till I have everything working. I have been trying many ways and things just do not seem to work.
    Thanks
    Mike with the Podcast: Marker Madness
    From http://MarkerMadness.com

    iWeb will not let me change the theme on that page, it wants me to add a new page.
    Open your podcast page, click on 'Themes' in the bar along the bottom (I did this in iWeb 08, I don't know whether 09 is different) and select a new theme. I was able to apply a new theme to an existing site. I don't know whether you will need to do this to all the entry pages, possibly you will. Does this not work for you?
    Maybe I could name a new page the same and delete the old one. Would this still throw itunes off on my account?
    I should think that as long as you were careful to keep the new version with the same name, so that the URL for the feed didn't change, that iTunes would simply accept this as an update.
    Not trying to make things more complicated, would it work to change to a blog page so I can be adding show notes and links from the podcast. Will this still work with iTunes and do everything I will need to work out?
    That's getting beyond my competence in iWeb (which as I say I don't use) so I'm reluctant to advise on this; once again I can only suggest the iWeb forum.

  • How do I change the toolbar menu to show only icons, not icons and descriptive text? Thanks for your help.

    My menu toolbar shows icons with a text to the right of the icon describing it. How do I change the settings so that just the icons show. I'm pretty sure it can be done as I've set my desktop for icons only.

    check under settings/ messages
    or
    settings / notification
    not sure what you are asking or looking for.  kinda hard to follow without my phone infront of me, at work. hope that is some what helpful

  • I created a PDF of my book in Preview and encrypted it. When opened in Adobe Reader, it is rotated to the vertical position rather than the original landscape position. How do I fix this in Preview? I don't want my buyers to have to hassle with rotating.

    I created a PDF of my book in Preview and encrypted it. When opened in Adobe Reader, it is rotated to the vertical position rather than the original landscape position. How do I fix this in Preview? I don’t want to hassle my buyers with rotating. There was no option in Preview to account for this automatic and unwanted rotation.

    Then you rotate it and SAVE or SAVE AS and it will remain that way.

  • Placing the icon and label vertically in MenuBar

    Hi,
    Is there a way, to place the menuitems icon and label vertically in MenuBar. Flex doesn't provided any property for this? It seems we need to extend the MenuBar. Can anyone help me in getting this workaround?
    I have the below code with me. Here I have to place the labelField & iconField vertically (by default, flex is placing them horizontally).
    <mx:MenuBar id="menu"
            themeColor="#FFFFFF"
            width="100%" height="100%" x="0" y="0"
            dataProvider="{iconMenu}" showRoot="false"
            creationComplete="init()"
            itemClick="" labelField="@label" iconField="@icon">
    </mx:MenuBar>
    Thanks in advance.
    -RajaFlex

    It seems, I need to override the following function in MenuBar.as . Can anyone help me in overriding this function.
    override protected function updateDisplayList(unscaledWidth:Number,
                                                      unscaledHeight:Number):void
            super.updateDisplayList(unscaledWidth, unscaledHeight);
            var lastX:Number = MARGIN_WIDTH;
            var lastW:Number = 0;
            var len:int = menuBarItems.length;
            var clipContent:Boolean = false;
            var hideItems:Boolean = (unscaledWidth == 0 || unscaledHeight == 0);
            for (var i:int = 0; i < len; i++)
                var item:IMenuBarItemRenderer = menuBarItems[i];
                item.setActualSize(item.getExplicitOrMeasuredWidth(), unscaledHeight);
                item.visible = !hideItems;
                lastX = item.x = lastX+lastW;
                lastW = item.width;
                if (!hideItems &&
                    (item.getExplicitOrMeasuredHeight() > unscaledHeight ||
                     (lastX + lastW) > unscaledWidth))
                    clipContent = true;
            if (background)
                background.setActualSize(unscaledWidth, unscaledHeight);
                background.visible = !hideItems;
            // Set a scroll rect to handle clipping.
            scrollRect = clipContent ? new Rectangle(0, 0,
                    unscaledWidth, unscaledHeight) : null;
    Thanks!
    RajaFlex

  • I BOUGHT an application from my iphone Application icon and paid 2.99 dollars too, for phone tracker , downloaded sucessfully and its working too but not tracking the phones as mentioned in the description can any one support me??? better from apple

    I BOUGHT an application from my iphone Application icon and paid 2.99 dollars too, for phone tracker , downloaded sucessfully and its working too but not tracking the phones as mentioned in the description can any one support me??? better from apple!!

    Is this the app you're referring to?
    http://itunes.apple.com/us/app/phone-tracker/id348537489?mt=8
    As you'll note it's made by Presselite and that page has a link to their support.
    Also, you'll find it best not to post questions about iPhone apps in the AppleWorks forum. Best to contact the makers of the app.
    Regards
    TD

  • Hello my name is achuthranesh and my iPhone has in problem. When my iPhone was in vertical position the upper touch screen (up to 4mm) is not working....... Plz help me.....

    Hello my name is achuthranesh and my iPhone has in problem. When my iPhone was in vertical position the upper touch screen (up to 4mm) is not working....... Plz help me.....

    Are you talking about status bar or 4 mm ( screen) below it

  • Icons and add description

    hi
    my server has no '/icons/' folder so my directory listing displays X's (missing images) next to my file names. could someone please tell me what to include in my .htaccess file to change the default path from /icons/ to /somethingelse/
    *i'm on apache 1.3.33 so will this allow me to do it and will it allow to me to add a header and footer to my directory listing using the HeaderName and ReadmeName?
    thanks for any help! WD

    You could add directives your .htaccess file, but it would be far, far easier to just use the standard /icons/ directory and save your icons in there.
    The standard apache installation has an alias for /icons/ to /usr/share/httpd/icons/ and that's where apache will look for any icons to put on directory listings. You might be getting confused that this directory isn't in your DocumentRoot and might think it doesn't work.
    As for the header/footer question add the following directives to your config (either in /etc/httpd/httpd.conf for a global setting, in a virtual host config file in /etc/httpd/sites/, or in a .htaccess file in the appropriate directory:
    HeaderName header.html
    ReadmeName footer.html
    This will look for files called header.html and footer.html in the directory in question and pre/append them to the output. The files can also be absolute URLs so, for example, you could use 'HeaderName /header.html' to serve header.html from your server's document root rather than the current directory.
    All these, and more, are covered in the Apache mod_autoindex documentation

  • My ipad 2 screen is frozen / locked in vertical position how do I fix that?

    My ipad 2 screen is locked into vertical position and I have tried shutting it off and checking the lock rotation nothing so far has worked. It does have a lock at the top of screen. Help!!!

    Double tap the home button and swipe all the way the right in the task bar at the bottom - see if the lock icon is in the far left corner of the task bar. If so - tap it to unlock the rotation.
    Or check the side side switch above the volume control on the right side of the iPad.
    You might want to read this as well.
    http://support.apple.com/kb/HT4085
    If those don't work - try a reset.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons.

  • How do I set an icon and type for my own extension?

    Hello everybody
    I would like to be able to give a particular icon to a file type that my program will generate and set it to always open in a particular program.
    For instance, my program might generate a settings file called myProgram.prefs - so I'd like all .prefs files to have a particular icon and to open up in notepad when double clicked.
    Looking on the various forums I guess I should be able to do this with just a few lines of code but I can't work it out! Can anyone help please?
    Many thanks
    Rich

    Thank you for your input guys - but no, that really isn't what I was after. I say 'was' because I've done some more searching and experimenting and achieved what I wanted:
    Public Sub CreateDefaultIconAssociation(ByVal APP_EXTENSION As String, ByVal PROG_ID As String, ByVal FILE_DESCRIPTION As String, ByVal ICON_PATH As String)
    ' Check To See If Extension Exists. Create New Keys If It Doesn't
    If Registry.CurrentUser.OpenSubKey("Software\Classes\" & APP_EXTENSION, True) Is Nothing Then
    ' Create The Extension Key
    Registry.CurrentUser.CreateSubKey("Software\Classes\" & APP_EXTENSION).SetValue("", PROG_ID, Microsoft.Win32.RegistryValueKind.String)
    ' Create The PROG_ID Key and File Description Value
    Registry.CurrentUser.CreateSubKey("Software\Classes\" & PROG_ID).SetValue("", FILE_DESCRIPTION)
    ' Create DefaultIcon And Set Default String To Icon File
    Registry.CurrentUser.CreateSubKey("Software\Classes\" & PROG_ID & "\DefaultIcon").SetValue("", ICON_PATH)
    ' Create command to open files in notepad - the %1 is necessary otherwise just an empty notepad will be opened
    Registry.CurrentUser.CreateSubKey("Software\Classes\" & PROG_ID & "\shell").SetValue("", "")
    Registry.CurrentUser.CreateSubKey("Software\Classes\" & PROG_ID & "\shell\open").SetValue("", "")
    Registry.CurrentUser.CreateSubKey("Software\Classes\" & PROG_ID & "\shell\open\command").SetValue("", """" & Environment.SystemDirectory & "\notepad.exe"" ""%1""")
    End If
    End Sub
    Public Sub RemoveDefaultIconAssociation(ByVal APP_EXTENSION As String, ByVal PROG_ID As String)
    ' Remove Extension Key
    Registry.CurrentUser.DeleteSubKey("Software\Classes\" & APP_EXTENSION, False)
    ' Remove DefaultIconKey
    Registry.CurrentUser.DeleteSubKey("Software\Classes\" & PROG_ID & "\DefaultIcon", False)
    ' Remove commandKey
    Registry.CurrentUser.DeleteSubKey("Software\Classes\" & PROG_ID & "\shell\open\command", False)
    ' Remove openKey
    Registry.CurrentUser.DeleteSubKey("Software\Classes\" & PROG_ID & "\shell\open", False)
    ' Remove shellKey
    Registry.CurrentUser.DeleteSubKey("Software\Classes\" & PROG_ID & "\shell", False)
    ' Remove PROG_ID Key
    Registry.CurrentUser.DeleteSubKey("Software\Classes\" & PROG_ID, False)
    End Sub
    These can be called with:
    CreateDefaultIconAssociation(".test", "my.progid", "my description", "my icon path")
    RemoveDefaultIconAssociation(".test", "my.progid")
    Thanks
    Rich

  • What is this icon, and what does it do?

    When you open an email and are in the read mode, at the bottom of the
    Screen, right in the middle there is an icon that looks like a box with an arrow
    Pointing into it. When I hit that, the piece of mail I am reading disappears.
    I can't find the description even in the iOS manual. What is this icon and what
    Is it doing to the mail that disappears? Occasionally I can find that email in the
    All mail folder.. But not always.. So confusing!

    I believe that is the "archive" button. You have a setting for that instead of delete. Do you see the trash can? If not, that is what it is. Here is a link to the iPhone manual and you can see about changing that, but I would have to say it is probably in settings, mail.
    http://manuals.info.apple.com/enUS/iPhone_iOS4_UserGuide.pdf

  • Ovi map - My Position icon MISSING (N8)

    Hi,
    I just got my N8 few days ago. After updating Ovi maps to the newest version ( 3.06 if not mistaken ) I have noticed a few problems.
    1) My Position icon is totally missing, that means i can't locate my current position in gps. that's really bad.
    2) Gps cant lock even after a pro-long scanning time, moreless 30 mins anywhere. I'm using intergrated positioning. Red signal blinking, no data found.
    3) I tried to delete the CITIES folder and qf file, and reinstalled the ovi map downloaded, but problem still remains.
    I haven tried anyform of hard or soft reset  yet, as i found lots of people facing problems doing that. Is there any other way to ocmpletely remove ovi map & reinstall it again, or i need to do a reset ?
    I would like to get some advice from you guys on solving my gps issues. Thank you

    Some cars have coated windscreens which can reflect gps signals and this will slow down position fix. One way of testing would be to compare how long it takes to get a fix in the car as out of the car. I generally get a fix after about a minute.
    My suggestion if it is a windscreen coating problem would be to get yourself an external bluetooth gps receiver. They are very cheap nowadays. The advantage of using this is the external receiver is usually much more sensitive and you can also place them anywhere in the car to get the best possible signal.  I have a few of them. They work well and would normally get a position fix in seconds. 

  • Slide names and descriptions?

    I am new to DPS and pretty average in InDesign. Where to I edit the name of the slides so that they appear when viewing the .folio in Adobe Content Viewer? It would appear in the menu on the left, and the vertical view of all slides in the .folio. Thanks!

    I think you're trying to use InDesign and DPS as tools to generate one complete slideshow. In InDesign's jargon "slideshows" are merely (small or large) interactive parts within a page. The way you want to use it, is to use a pages as a complete slide and the whole folio as a slideshow. Nothing wrong with that, but you might consider a different approach, or even a different tool and file format for such a purpose.
    Nevertheless, try making a horizontal InDesign file (1024x768) with a page for each slide. Upon testing and uploading, look for the "Horizontal swipe only" setting.
    It might still be difficult or even impossible to get titles and other (meta) info in a specific area like the table of contents, because you're actually 'misusing' the functionality of DPS. If you want to get those titles and a nice Table of Contents as well, you need 1 article with 2 layouts (InDesign files) for each slide and title. Make 1 horizontal InDesign file for each slide and 1 vertical InDesign file for a title, combine these two as Layouts into an Article, and add Properties like Titles and description again, to cater for the automated Table of Contents.
    See the tutorials for more info on how to do all these steps and find these options. You can find them here. But beware, you might find it quite challenging for this purpose.

Maybe you are looking for

  • Rows to Column Conversion in ABAP

    Hello guys, I wanted to create a report in which I need to convert rows in to column. e.g. I have a itab_col which contains my column header as follows. itab_col-plant        itab_col-name 1000                     Plant A 2000                     Pla

  • Skipping in one part when i play my movie in the dvd player

    i've created a one hour movie. in the middle it skips about ten seconds. this only happens on dvd players. a few times it didn't skip. when i rewind i can see the footage that it skips. i've tried re-capturing the footage as well as using different m

  • Upgrade options from Mac OS X 10.5.8 ??

    I have a MacBook Pro from 2009 with Mac OS X 10.5.8. What are my options to update/upgrade the OS X??

  • It's possible ON UPDATE CASCADE in table relationships?

    Hi, how are you? Sorry my weak English, I'm brazilian. I like create an "ON UPDATE CASCADE" in my table relationship but find only "ON DELETE CASCADE" in Oracle 9i Database Online Documentation. I would like your help. Thank you. Eduardo A. Reche Lop

  • Managing deploy list with multiple .properties

    During the development process I and other engineers list the individual beans in the weblogic.properties' weblogic.ejb.deploy= list. We do this rather than create one big jar to deploy because it allows for quicker turnaround. The problem is that we