tab-colors@TabNavigator

Ask a Question related to Macromedia Flex General Discussion, Design and Development.

  1. #1

    Default tab-colors@TabNavigator

    hi,

    how do i set (meaning which properties) do i need to
    fill when i want to have the selected tabs and unselected
    tabs on a TabNavigator to have colors of my own?

    thx

    ciao robertj
    KUZELJ Guest

  2. Similar Questions and Discussions

    1. tabnavigator
      Is it possible to have 2 rolls of tabs in the tabnavigator?
    2. Colors change to differnt colors when printing
      Whem I use Adobe Illustrator CS or Illustrator 10 a weird thing happens Example Ill be using red ,blue and a light blue color then Ill save the art...
    3. Bitmap image colors match FH colors?
      If I import an image from Photoshop with a particular CMYK background color (as an example) will it match the same CMYK color selected in Freehand...
    4. Printout colors inconsistent with monitor colors
      I'm new in the Photoshop world so I may have missed the explanations of my problems listed in the forum messages. I found Windows solutions but I...
    5. Why do the colors in the 'print preview' not match the colors on the desktop?
      Using photoshop CS on a MAC OSX . Got the calibration OK, the print out pretty much matches the image on the desktop. And while I do plan to further...
  3. #2

    Default Re: tab-colors@TabNavigator

    this example has been taken from the Flex API...there are lotsa examples in the
    API..


    <?xml version="1.0"?>
    <!-- Simple example to demonstrate the TabNavigator layout -->
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" width="100%"
    height="100%" backgroundColor="#FFFFFF">

    <mx:Panel title="Tab Navigator Panel" width="100%" height="100%">

    <mx:TabNavigator borderStyle="solid" width="100%" height="100%">

    <mx:Canvas label="Canvas 1" width="100%" height="100%"
    backgroundColor="#FFFFCC">
    <mx:Label text="Add components here" fontSize="20"
    fontStyle="italic"
    fontWeight="bold" fontFamily="Times New Roman"/>

    </mx:Canvas>

    <mx:Canvas label="Canvas 2" width="100%" height="100%"
    backgroundColor="#99CCFF">
    <mx:Label text="Add components here" fontSize="20"
    fontStyle="italic"
    fontWeight="bold" fontFamily="Times New Roman"/>
    </mx:Canvas>

    </mx:TabNavigator>

    </mx:Panel>

    </mx:Application>

    RajeshBhadra Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139