Apply boldface or oblique type to controls inline : Font « Graphics « Flex






Apply boldface or oblique type to controls inline

          

<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Style>
    @font-face {
        src:url("a.ttf");
        fontFamily: myFont;
        flashType: true;
    }
    @font-face {
        src:url("a.ttf");
        fontFamily: myFont;
        fontWeight: bold;
        flashType: true;
    }
    @font-face {
        src:url("a.ttf");
        fontFamily: myFont;
        fontStyle: italic;
        flashType: true;
    }
    .myStyle1 {
        fontSize: 32;
        fontFamily: myFont;
    }
    </mx:Style>
    <mx:VBox styleName="myStyle1">
        <mx:Label text="Plain Label"/>
        <mx:Label text="Italic Label" fontStyle="italic"/>
        <mx:Label text="Bold Label" fontWeight="bold"/>
    </mx:VBox>
</mx:Application>

   
    
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.Point to defined ranges with unicodeRange attribute of @font-face declaration
2.Set device fontSet device font
3.Embed a.ttf font file
4.Apply embedded font inlineApply embedded font inline
5.Change font size with CSSChange font size with CSS
6.Embedding a font by specifying a filenameEmbedding a font by specifying a filename
7.Reuse the embedded font inside other style definitionsReuse the embedded font inside other style definitions
8.Set fontFamily style property in MXMLSet fontFamily style property in MXML
9.Use tagUse <font> tag
10.define the fontSize property with a value of 20 pixelsdefine the fontSize property with a value of 20 pixels
11.Sub Component Inheritance for font size styleSub Component Inheritance for font size style
12.Define fontSize, an inheritable property, to the global selectorDefine fontSize, an inheritable property, to the global selector
13.Fonts are inheritable style propertiesFonts are inheritable style properties
14.Embed fonts by location by using the [Embed] tag syntaxEmbed fonts by location by using the [Embed] tag syntax
15.Embed same font for different character ranges
16.Setting ranges in font-face declarationsSetting ranges in font-face declarations
17.List embedded fonts
18.Specify fontWeight and fontStyle in the @font-face and selector blocksSpecify fontWeight and fontStyle in the @font-face and selector blocks
19.Load font from ttf file and use it in style
20.Add font weight to embedded font
21.Define and use font faceDefine and use font face
22.Set unicode range for font faceSet unicode range for font face
23.Font face and font familyFont face and font family
24.Make maxFontSize and minFontSize properties that you defined as variables usableMake maxFontSize and minFontSize properties that you defined as variables usable
25.Use embedded fonts for your axis titlesUse embedded fonts for your axis titles
26.Embed Font with ActionScript
27.Use Embedded FontsUse Embedded Fonts
28.Determine All Fonts Installed on a User's ComputerDetermine All Fonts Installed on a User's Computer
29.Style for embedded fontStyle for embedded font
30.The use of the tagThe use of the <font>tag
31.Embed FontEmbed Font
32.Set the fontSize to 15 and the color to 0x9933FFSet the fontSize to 15 and the color to 0x9933FF
33.selector defines the fontSize as x-smallselector defines the fontSize as x-small
34.Device FontDevice Font
35.Use myFontFamily, the value of the fontFamily property, as the font in the VGroup type selectorUse myFontFamily, the value of the fontFamily property, as the font in the VGroup type selector
36.Embedded Font Face InlineEmbedded Font Face Inline
37.Embedded Font Face with ActionScript By Location
38.Detecting Embedded FontsDetecting Embedded Fonts
39.Enumerate FontsEnumerate Fonts
40.Embedded Font Character RangeEmbedded Font Character Range
41.Embed same font twice, each time restricting the font to different character ranges.Embed same font twice, each time restricting the font to different character ranges.
42.Emebedded font familiesEmebedded font families
43.Embed both a non-CFF version and a CFF version of the fontEmbed both a non-CFF version and a CFF version of the font
44.Multiple FacesMultiple Faces
45.Apply Multiple Faces InlineApply Multiple Faces Inline