This is an automated email from the ASF dual-hosted git repository. joshtynjala pushed a commit to branch flexdoc in repository https://gitbox.apache.org/repos/asf/flex-site.git
commit 5ba50ee2b415e78609601b8054191d5d3e3ccbb4 Author: Josh Tynjala <[email protected]> AuthorDate: Tue Sep 16 14:28:15 2025 -0700 using: fix some bad documentation links that don't exist --- content/doc/flex/using/flx_about_dataproviders_ab.html | 6 +++--- content/doc/flex/using/flx_controls_ctr.html | 4 ++-- content/doc/flex/using/flx_databinding_db.html | 6 +++--- content/doc/flex/using/flx_datamodels_dm.html | 8 ++++---- content/doc/flex/using/flx_dpcontrols_dpc.html | 2 +- 5 files changed, 13 insertions(+), 13 deletions(-) diff --git a/content/doc/flex/using/flx_about_dataproviders_ab.html b/content/doc/flex/using/flx_about_dataproviders_ab.html index be944c057..01e17fb80 100644 --- a/content/doc/flex/using/flx_about_dataproviders_ab.html +++ b/content/doc/flex/using/flx_about_dataproviders_ab.html @@ -2555,7 +2555,7 @@ data objects.</p> <p>can be any of the following: Strings containing well-formed XML; or <a href="https://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/XML.html" target="_blank">XML</a>, <a href="https://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/XMLList.html" target="_blank">XMLList</a>, or <a href="https://flex.apache.org/asdoc/mx/collections/XMLListCollection.html" target="_blank">XMLListCollection</a> objects, -including objects generated by the <a href="mxml/xml.html" target="_blank"><fx:XML></a> and <a href="mxml/xmlList.html" target="_blank"><fx:XMLList></a> compile-time +including objects generated by the <samp class="codeph"><fx:XML></samp> and <samp class="codeph"><fx:XMLList></samp> compile-time tags. (These tags support data binding, which you cannot do directly in ActionScript.) Flex can automatically structure a Tree or menu-based control to reflect the nesting hierarchy of well-formed XML. </p> @@ -3033,7 +3033,7 @@ must conform to the data descriptor requirements, as discussed in <a href="flx_a descriptors and hierarchical data structure</a>. Also, as with an XML object, the tag must have a single root element. </p> - <p>In most situations, you should consider using an <a href="mxml/xml.html" target="_blank"><fx:XML></a> or <a href="mxml/xmlList.html" target="_blank"><fx:XMLList></a> tag, as + <p>In most situations, you should consider using an <samp class="codeph"><fx:XML></samp> or <samp class="codeph"><fx:XMLList></samp> tag, as described in <a href="flx_about_dataproviders_ab.html#WS2db454920e96a9e51e63e3d11c0bf69084-7b5c_verapache">XML-based data objects</a>, instead of using an <samp class="codeph"><fx:Model></samp> tag. The XML-based tags support data binding to elements, and the DefaultDataDescriptor @@ -3427,7 +3427,7 @@ XML, but it can also be well-formed XML defined within the <samp class="codeph"> The <a href="https://flex.apache.org/asdoc/mx/controls/treeClasses/DefaultDataDescriptor.html" target="_blank">DefaultDataDescriptor</a> class can handle well-formed XML data structures.</p> - <p>You can use an <a href="mxml/xml.html" target="_blank"><fx:XML></a> or <a href="mxml/xmlList.html" target="_blank"><fx:XMLList></a> tag + <p>You can use an <samp class="codeph"><fx:XML></samp> or <samp class="codeph"><fx:XMLList></samp> tag to define an <a href="https://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/XML.html" target="_blank">XML</a> or <a href="https://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/XMLList.html" target="_blank">XMLList</a> object in MXML. Unlike the XML and XMLList classes in ActionScript, these tags let you use MXML binding expressions in the XML text to extract diff --git a/content/doc/flex/using/flx_controls_ctr.html b/content/doc/flex/using/flx_controls_ctr.html index 874752640..d9cce5584 100644 --- a/content/doc/flex/using/flx_controls_ctr.html +++ b/content/doc/flex/using/flx_controls_ctr.html @@ -8624,13 +8624,13 @@ dispatched by the VideoPlayer control: <pre class="codeblock"><?xml version=" <p>The VideoPlayer control dispatches the <samp class="codeph">complete</samp> event when the video completes. The event object for the complete event -is of type <a href="org/osmf/events/TimeEvent.html" target="_blank">org.osmf.events.TimeEvent</a>. </p> +is of type <a href="https://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/org/osmf/events/TimeEvent.html" target="_blank">org.osmf.events.TimeEvent</a>. </p> <p>The VideoPlayer control dispatches the <samp class="codeph">mediaPlayerStateChange</samp> event when the state of the control changes. The control has several states, including the <samp class="codeph">buffering</samp>, <samp class="codeph">loading</samp>, <samp class="codeph">playing</samp>, and <samp class="codeph">ready</samp> states. The event object for the <samp class="codeph">mediaPlayerStateChange</samp> event -is of <a href="org/osmf/events/MediaPlayerStateChangeEvent.html" target="_blank">org.osmf.events.MediaPlayerStateChangeEvent</a>. +is of <a href="https://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/org/osmf/events/MediaPlayerStateChangeEvent.html" target="_blank">org.osmf.events.MediaPlayerStateChangeEvent</a>. The event handler for the <samp class="codeph">mediaPlayerStateChange</samp> event uses the <samp class="codeph">state</samp> property of the event object to determine the new state of the control.</p> diff --git a/content/doc/flex/using/flx_databinding_db.html b/content/doc/flex/using/flx_databinding_db.html index 388d7d7b3..5feb3dce5 100644 --- a/content/doc/flex/using/flx_databinding_db.html +++ b/content/doc/flex/using/flx_databinding_db.html @@ -52,7 +52,7 @@ triggering event when the source property changes. </p> <p>Flex provides three ways to specify data binding: the curly braces (<samp class="codeph">{}</samp>) -syntax in MXML, the <a href="mxml/binding.html" target="_blank"><fx:Binding></a> tag +syntax in MXML, the <samp class="codeph"><fx:Binding></samp> tag in MXML, and the <a href="https://flex.apache.org/asdoc/mx/binding/utils/BindingUtils.html" target="_blank">BindingUtils</a> methods in ActionScript. The following example uses the curly braces (<samp class="codeph">{}</samp>) syntax to show a Label control that gets its data from a TextInput @@ -99,7 +99,7 @@ ActionScript in data binding expressions</a> and <a href="flx_databinding_db.htm an E4X expression in a data binding expression</a>. </p> <p>You can use -the <a href="mxml/binding.html" target="_blank"><fx:Binding></a> tag +the <samp class="codeph"><fx:Binding></samp> tag as an alternative to the curly braces syntax. When you use the <samp class="codeph"><fx:Binding></samp> tag, you provide a source property in the <samp class="codeph"><fx:Binding></samp> tag's <samp class="codeph">source</samp> property and a destination property in its <samp class="codeph">destination</samp> property. @@ -495,7 +495,7 @@ than one destination property</h3> <div> <p>You can bind a single source property to more than one destination property by using -the curly braces (<samp class="codeph">{}</samp>) syntax, the <a href="mxml/binding.html" target="_blank"><fx:Binding></a> tag, +the curly braces (<samp class="codeph">{}</samp>) syntax, the <samp class="codeph"><fx:Binding></samp> tag, or the <samp class="codeph">BindingUtils</samp>methods in ActionScript. In the following example, a TextInput control's <samp class="codeph">text</samp> property is bound to properties of two data models, and the data model properties diff --git a/content/doc/flex/using/flx_datamodels_dm.html b/content/doc/flex/using/flx_datamodels_dm.html index 7b23c645e..250b128e5 100644 --- a/content/doc/flex/using/flx_datamodels_dm.html +++ b/content/doc/flex/using/flx_datamodels_dm.html @@ -95,7 +95,7 @@ they are not visual components.</p> <div> - <p>The most common type of MXML-based model is the <a href="mxml/model.html" target="_blank"><fx:Model></a> tag, + <p>The most common type of MXML-based model is the <samp class="codeph"><fx:Model></samp> tag, which is compiled into an ActionScript object of type mx.utils.ObjectProxy, which contains a tree of objects when your data is in a hierarchy, with no type information. The leaves of the Object tree are scalar @@ -164,7 +164,7 @@ example shows:</p> <div> - <p>An <a href="mxml/xml.html" target="_blank"><fx:XML></a> tag + <p>An <samp class="codeph"><fx:XML></samp> tag represents literal XML data. Setting the <samp class="codeph">format</samp> property to <samp class="codeph">e4x</samp> creates an XML object, which implements the powerful XML-handling standards defined in the ECMAScript for @@ -185,7 +185,7 @@ model as a binding source. </div> <div> <p>As an alternative to using an MXML-based model, you can -define a model as a variable in an <a href="mxml/script.html" target="_blank"><fx:Script></a> tag. +define a model as a variable in an <samp class="codeph"><fx:Script></samp> tag. The following example shows a very simple model defined in an ActionScript script block. It would be easier to declare this model in an <samp class="codeph"><fx:Model></samp> tag.</p> @@ -306,7 +306,7 @@ an <fx:Model> tag or <fx:XML> tag</h2> <div> - <p>You can specify an external source for an <a href="mxml/model.html" target="_blank"><fx:Model></a> or <a href="mxml/xml.html" target="_blank"><fx:XML></a> tag + <p>You can specify an external source for an <samp class="codeph"><fx:Model></samp> or <samp class="codeph"><fx:XML></samp> tag in a <samp class="codeph">source</samp> property. Separating the content of a model from the MXML that defines the user interface improves the maintainability and reusability of an application.</p> diff --git a/content/doc/flex/using/flx_dpcontrols_dpc.html b/content/doc/flex/using/flx_dpcontrols_dpc.html index 31ce3a3c6..b6c54e837 100644 --- a/content/doc/flex/using/flx_dpcontrols_dpc.html +++ b/content/doc/flex/using/flx_dpcontrols_dpc.html @@ -3238,7 +3238,7 @@ otherwise the Tree control might display obsolete data.</p> <dd> <p>A string containing valid XML text, or any of the following -objects containing valid E4X format XML data: <samp class="codeph"><fx:XML></samp> or <a href="mxml/xmlList.html" target="_blank"><fx:XMLList></a> compile-time tag, +objects containing valid E4X format XML data: <samp class="codeph"><fx:XML></samp> or <samp class="codeph"><fx:XMLList></samp> compile-time tag, or an XML or <a href="https://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/XMLList.html" target="_blank">XMLList</a> object.</p> </dd>
