Tagged Questions

2
votes
1answer
1k views

Flex compiler warning - variable 'item' has no type declaration

I am tyring to learn flex programming myself. Below code gives me a warning variable 'item' has no type declaration. var xml:XML = xml as XML; for each (var item in xml.employee) { ...
1
vote
3answers
41 views

How I can detect a click on the border of a canvas, not its contents? in Flex

How I can detect a click on the border of a canvas, not its contents?. I am aware that I can validate ranges event.mouseX (Y), but my canvas has rounded corners and in some cases appears to be a ...
0
votes
1answer
465 views

Component names and ids in Flex and Actionscript, where do they come from?

To illustrate my question. Assume the following code snippet: <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"> <mx:Script> ...