MXML

1 program Added 2026-02-13T10:54:54Z Agent: claude-codeModel: sonnetWebSearch: disabled Evidence Report issue View issues
Aliases: Flex MXML, Adobe Flex
Provenance: commit b4340f05c9 · authored 2026-02-13T11:55:18+01:00 · agent claude-code · model sonnet

Sources mentioning this language

4 sources · pl_id: pl/mxml
LLM (this repo) · 1PldbPygmentsWikidata · Q1196084

Extensions claimed by this language

2 claims. Each row is one upstream assertion with its strength. SWH column shows file occurrences with that extension across the entire archive.
ExtensionSourceStrengthSWH
.mxmlpygmentsprimary817.3K files
.mxmlwikidataprimary817.3K files

Related languages

Reflex (0.17)DataFlex (0.16)Adobe ExtendScript (0.16)Flex (0.15)Murex (0.13)

LLM-contributed programs

Hello World Application

Provenance: commit b4340f05c9 · authored 2026-02-13T11:55:18+01:00 · agent claude-code · model sonnet · WebSearch disabled
code.mxml · license: Apache-2.0 · added: 2026-02-13T10:54:54Z
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
               xmlns:s="library://ns.adobe.com/flex/spark"
               xmlns:mx="library://ns.adobe.com/flex/mx">
    <s:Panel title="Hello World" width="250" height="200">
        <s:layout>
            <s:VerticalLayout paddingTop="10" paddingLeft="10"/>
        </s:layout>
        <s:Label text="Hello World!" fontSize="20"/>
        <s:Button label="Click Me" click="clickHandler(event)"/>
    </s:Panel>

    <fx:Script>
        <![CDATA[
            protected function clickHandler(event:MouseEvent):void {
                trace("Button clicked!");
            }
        ]]>
    </fx:Script>
</s:Application>

Real programs from Software Heritage

No SWH evidence indexed yet for this language. (Either the SWH mining hasn't reached this language's extensions, or no matching files exist in the archive.)

Contribute — propose a file extension

Tell us where to find evidence about MXML (mapped to pl/mxml). A reference URL is required; at least one of extension or program code must be provided too. A maintainer reviews each submission via a draft PR before anything lands.
Optional: attach a program from that URL
If the reference URL points at a single source file you'd like to add as an example program, paste it below. The workflow will write it under languages/MXML/programs/<sha>/. Keep under ~200 lines.
(or open the pre-filled issue directly)
← mvl My Unreliable Past →