Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
rrm-etal #1
Font Size in a label in Canvas in an Accordian
I generated an Accordion using FLEX Builder 3 and it went very well. The
default container appears to be a Canvas with the Canvas Label as the text on
the Accordion bar. Again, no problems.
The font, however, is small and I can't seem to get it any bigger. I tried
adding a fontSize on the mx:Canvas line generated by FLEX Builder ... however,
it is pretty much ignored.
Thanks,
Bob
rrm-etal Guest
-
How do I make canvas size smaller?
I am sending a business card to a printer, and he would like me to change the canvas size to the exact dimensions of the business card. It seems that... -
Default Canvas Size for New File
Does anyone know how to set the default canvas size so that when I click on a new document, it always comes up to the same size. It seems to... -
Large Canvas Size
Hi, I need to create a 6000mm (6m) x 841mm poster. Illustrator only allows the canvas to go to 5779mm. Is there anyway to extend the canvas? ... -
Changing the font and size for a button label
How do I change the font and size for a button label, textboxes etc. It seems easy to do in MS FrontPage but I'm have problems doing that in... -
Web Design - Canvas Size
Hi, Looking to create my first real design FWMX then slice for web, what size canvas do you use: 640 x 480 800 x 600 1024 x 768 Got my... -
SujitG #2
Re: Font Size in a label in Canvas in an Accordian
Hi,
You have to set the font size of the accordion header. Please try code below.
Hope this helps.
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"
width="100%" height="100%">
<mx:Style>
.accheader
{
font-size: 24;
}
</mx:Style>
<mx:Accordion x="287" y="126" width="200" height="200" fontSize="26"
headerStyleName="accheader">
<mx:Canvas label="Accordion Pane 1" width="100%" height="100%">
</mx:Canvas>
<mx:Canvas label="First" width="100%" height="100%">
</mx:Canvas>
</mx:Accordion>
</mx:Application>
SujitG Guest
-
WebmastaDj #3
Re: Font Size in a label in Canvas in an Accordian
I am having that same problem. I have tried fontSize in the Accordion, and it doesn't work. fontColor works though.
WebmastaDj Guest



Reply With Quote

