Setting the Width and Height of an Object in Flex to 100% with Actionscript

Today I had the problem that i needed to create a Flex element by hand and apply to it a width of 100%. This goes as easy with MXML as this <mx:VBox id="wrapperBox"><mx:UIComponent width="100%" height="100%" id="elementXYZ"></mx:VBox> But you cannot code this to achieve the adding programatically with Actionscript: var elementXYZ:UIComponent = new UIComponent(); elementXYZ.width = …

Google Maps Multi-touch Actionscript Code [Update_3]

After I published my youtube video on the Google Maps multi-touch app I have had some demands for the source code of this Google Maps multi-touch Flash application. Hence, I have decided to make the source code of it publicly available on Google Code. You will find the sources on the mapstouch Google Code download …

Google Maps Multi-touch App

I’ve built a small Google Maps multi-touch app with Flex and Flash over the last days: It uses the Google Maps Flash API and the TUIO Actionscript classes and the Touchlib from the Nuigroup. The red stuff on the screen means that i am using the debug mode of Google Maps for Flash. That is …