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/mxmlExtensions 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.| Extension | Source | Strength | SWH |
|---|---|---|---|
.mxml | pygments | primary | 817.3K files |
.mxml | wikidata | primary | 817.3K files |
Related languages
LLM-contributed programs
Hello World Application
Provenance: commit b4340f05c9 · authored 2026-02-13T11:55:18+01:00 · agent claude-code · model sonnet · WebSearch disabled
<?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.)