Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?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" minWidth="955" minHeight="600">
- <s:layout>
- <s:BasicLayout/>
- </s:layout>
- <s:Graphic click="{el1.color=Math.random()*10000}" x="{Math.random()*100}" y="{Math.random()*100}">
- <s:Ellipse width="50" height="50">
- <s:stroke><s:SolidColorStroke scaleMode="normal"/></s:stroke>
- <s:fill><s:SolidColor id="el1" color="0x123456"/></s:fill>
- </s:Ellipse>
- </s:Graphic>
- <s:Graphic click="{el2.color=Math.random()*10000}" x="{Math.random()*100}" y="{Math.random()*100}">
- <s:Ellipse width="50" height="50">
- <s:stroke><s:SolidColorStroke scaleMode="normal"/></s:stroke>
- <s:fill><s:SolidColor id="el2" color="0x123456"/></s:fill>
- </s:Ellipse>
- </s:Graphic>
- <s:Graphic click="{el3.color=Math.random()*10000}" x="{Math.random()*100}" y="{Math.random()*100}">
- <s:Ellipse width="50" height="50">
- <s:stroke><s:SolidColorStroke scaleMode="normal"/></s:stroke>
- <s:fill><s:SolidColor id="el3" color="0x123456"/></s:fill>
- </s:Ellipse>
- </s:Graphic>
- </s:Application>
Advertisement
Add Comment
Please, Sign In to add comment