main.mxml
- <?xml version="1.0" encoding="utf-8"?>
- <Applicationname="TextBox_fontWeight_test"
- xmlns="http://ns.adobe.com/mxml/2009"
- layout="vertical"
- verticalAlign="middle"
- backgroundColor="white">
- <Style>
- @font-face {
- src: url("C:/Windows/Fonts/ARIALBD.TTF");
- fontFamily: "ArialEmbedded";
- fontWeight: "bold";
- cff: true;
- }
- </Style>
- <VGroup>
- <TextBoxid="deviceTextBox"
- text="The quick brown fox jumps over the lazy dog. (device)"
- fontFamily="Arial"
- fontWeight="bold"
- fontLookup="device"/>
- <TextBoxid="embeddedCFFTextBox"
- text="The quick brown fox jumps over the lazy dog. (embeddedCFF)"
- fontFamily="ArialEmbedded"
- fontWeight="bold"
- fontLookup="embeddedCFF"/>
- </VGroup>
- </Application>