Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
KUZELJ #1
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
-
tabnavigator
Is it possible to have 2 rolls of tabs in the tabnavigator? -
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... -
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... -
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... -
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... -
RajeshBhadra #2
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



Reply With Quote

