The following example shows how you can set tab stops in a Flex Gumbo FxTextArea control by setting the tabStops style to an array of TabStopFormat objects.
Full code after the jump.
{ 0 comments }
Just a bunch of Adobe Flex Examples
From the monthly archives:
The following example shows how you can set tab stops in a Flex Gumbo FxTextArea control by setting the tabStops style to an array of TabStopFormat objects.
Full code after the jump.
{ 0 comments }
The following example shows you how to draw an ellipse in a Flex Gumbo application using the new Ellipse graphic primitive in FXG.
Full code after the jump.
{ 4 comments }
The following example shows how you can determine the total bytes of your Flex application by accessing the loaderInfo.bytesTotal property.
Full code after the jump.
{ 0 comments }
The following example shows how you can determine your Flex SDK version within a Flex application by using the internal mx_internal::VERSION property.
You can also find the version number by doing one of the following:
(a) Viewing the flex-sdk-description.xml file in your Flex SDK’s root directory:
<?xml version="1.0"?>
<flex-sdk-description>
<name>Flex 4.0</name>
<version>4.0.0</version>
<build>3934</build>
</flex-sdk-description>
(b) At a command prompt, navigate to your Flex SDK’s /bin/ directory and type mxmlc -version:
C:\\dev\\flexSDKs\\4.0.0.3934\\bin>mxmlc -version Version 4.0.0 build 3934
Full code after the jump.
{ 3 comments }
The following example shows how you can wrap values in a Spark Spinner control in Flex 4 by setting the Boolean allowValueWrap property.
Full code after the jump.
{ 2 comments }
The following example shows how you can align text vertically within a Flex Gumbo FxTextArea control by setting the verticalAlign style.
Full code after the jump.
{ 0 comments }