Flash CS4 introduces many new and exciting features and delivers an entirely new experience in Flash dev.
Adobe Flash CS4 Pro
| CSS Property: text-align | AS Property: textAlign |
| Recognized values are left, center, and right. | |
| CSS Property: font-size | AS Property: fontSize |
| Only the numeric part of the value is used; units (px, pt) are not parsed; pixels and points are equivalent. | |
| CSS Property: text-decoration | AS Property: textDecoration |
| Recognized values are none and underline. | |
| CSS Property: margin-left | AS Property: marginLeft |
| Only the numeric part of the value is used. Units (px, pt) are not parsed; pixels and points are equivalent. | |
| CSS Property: margin-right | AS Property: marginRight |
| Only the numeric part of the value is used. Units (px, pt) are not parsed; pixels and points are equivalent. | |
| CSS Property: font-weight | AS Property: fontWeight |
| Recognized values are normal and bold. | |
| CSS Property: font-style | AS Property: fontStyle |
| Recognized values are normal and italic. | |
| CSS Property: text-indent | AS Property: textIndent |
| Only the numeric part of the value is used. Units (px, pt) are not parsed; pixels and points are equivalent. | |
| CSS Property: font-family | AS Property: fontFamily |
| A comma-separated list of fonts to use, in descending order of desirability. Any font family name can be used. If you specify a generic font name, it will be converted to an appropriate device font. The following font conversions are available: mono is converted to _typewriter, sans-serif is converted to _sans, and serif is converted to _serif. | |
| CSS Property: color | AS Property: color |
| Only hexadecimal color values are supported. Named colors (like blue) are not supported. | |
| CSS Property: display | AS Property: display |
| Supported values are inline, block, and none. | |