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
44 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 ...