There is no MXML circle there, so you need to create an environment control yourself, and then you can include it in your MXML.
package mypackage
{
class MyCircle extends UIComponent
{
public var x:int;
public var y:int;
public var radius:int;
override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void
{
graphics.drawCircle(x, y, radius);
}
}
}
then in your MXML you can use your own control if you declare a namespace to link to it at the top of your containing control ...
<mx:VBox label="Currents Quote" width="100%">
<mycontrols:MyCircle x="30" y="30" radius="30"/>
</mx:VBox>
The code above was introduced into the StackOverflow editor, so check if it works!
UIComponent Sprite. Adobe .
EDIT:
<mx:Application
xmlns:mx="http://www.adobe.com/2006/mxml"
xmlns:mycontrols="mypackage.*" >
<mx:Script>