diff --git a/content/doc/flex/using/flx_mxmlSyntax_sy.html b/content/doc/flex/using/flx_mxmlSyntax_sy.html index 3d4d93dee..32e7054b2 100644 --- a/content/doc/flex/using/flx_mxmlSyntax_sy.html +++ b/content/doc/flex/using/flx_mxmlSyntax_sy.html @@ -114,8 +114,8 @@
Filenames must not be the same as ActionScript class names, -component id values, or the word application. +
Filenames must not be the same as ActionScript class names or +component id values in the application, or use the word application. Do not use filenames that match the names of MXML tags that are in the fx:, s:, or mx: namespace.
@@ -141,7 +141,7 @@An MXML tag that corresponds to an ActionScript class uses the same naming conventions as the ActionScript class. Class names begin with a capital letter, and capital letters separate -the words in class names. For example, when a tag corresponds to +the words in class names. When a tag corresponds to an ActionScript class, its properties correspond to the properties and events of that class.
@@ -233,8 +233,7 @@It's best to assign scalar values using tag attributes, and that -you assign complex types, such as ActionScript objects, by using +
It's best to assign scalar values using tag attributes, and to assign complex types, such as ActionScript objects, by using child tags.
@@ -260,7 +259,7 @@The valid values of many component properties are defined -by static constants, where these static constants are defined in +by static constants which are defined in an ActionScript class. In MXML, you can either use the static constant to set the property value, or use the value of the static constant, as the following example shows:
@@ -394,7 +393,7 @@Notice that this example includes the [Bindable] metadata +
Note that this example includes the [Bindable] metadata tag before the property definition. This metadata tag specifies that the myText property can be used as the source of a data binding expression. Data binding automatically copies @@ -825,7 +824,7 @@
The first example defines a Vector with a base type of String. The second example defines a Vector of Vectors of type String. Notice that you use the HTML escape characters < and > , -instead of < and >, in the nested Vector. This syntax is necessary +instead of < and >, in the nested Vector. This is necessary to conform to XML syntax rules.