Strange error for existing project on Mac while Windows version works with same SDK version

2017-12-01 Thread Fréderic Cox
Hi, I'm having a strange issue with an existing project. The project is built with Flex 4.15 and AIR 20. In order to solve a particular issue I need to use AIR27. I re-added the project (which I didn't work on for 6 months) in Flash Builder and saw it was selecting 4.15 SDK with AIR20. I opened

Re: Strange error for existing project on Mac while Windows version works with same SDK version

2017-12-01 Thread Alex Harui
Hard to say for sure. It looks like there is a binding to the width of something. If you don't have lots of binding expressions maybe you can find the binding to width (probably from DashboardIcon.width) Also, further down in the stack trace, I see: "Cannot create property icon on components

Re: HGroup in pure ActionScript

2017-12-01 Thread Olaf Krueger
Hi, if you've still no luck it would be helpful to provide us a simple more detailed test case. Olaf -- Sent from: http://apache-flex-users.246.n4.nabble.com/

Re: HGroup in pure ActionScript

2017-12-01 Thread Erik J. Thomas
You are using addChild when you should use addElement(). This code works: var hg:HGroup = new HGroup(); hg.right = 0; hg.top = 0; hg.gap = 0; var label:Label = new Label(); label.text = "Hello World"; hg.addElement(label); addElement(hg); Erik On Nov 30, 2017, at 6:41 AM, Tucsonjhall wrote: I'm

TileList selection visible with custom item renderer

2017-12-01 Thread zabdoul60460
Hi, I create a tilelist with custom itemrender (image with checkbox)