<?xml version="1.0" encoding="utf-8"?>
<!-- http://blog.flexexamples.com/2008/10/30/using-graphical-and-text-primitives-in-flex-gumbo/ -->
<Application name="FXG_test"
        xmlns="http://ns.adobe.com/mxml/2009"
        layout="absolute"
        backgroundColor="white">

    <Group id="group"
            horizontalCenter="0"
            verticalCenter="0">
        <Ellipse id="ellipse"
                width="100"
                height="100">
            <fill>
                <SolidColor color="red" />
            </fill>
        </Ellipse>
    </Group>

</Application>