Re: [flexcoders] Why does Flex 4 hate modules..cont

2010-08-15 Thread Alex Harui
Wally, the report.xml is from the AdminPortal module. Like I said before, if you are using FlashBuilder module projects and use the link-report option, the module’s link-report overwrites the main app’s link-report. On 8/14/10 12:22 PM, Wally Kolcz wko...@isavepets.com wrote:

Re: [flexcoders] Detecting List width from its itemRenderer

2010-08-15 Thread Alex Harui
The renderer should be given an explicitWidth by the time its measure() method gets called. That would be a good time to choose a different size avatar and report a different measuredHeight. On 8/14/10 3:55 PM, Alexander alexander.far...@gmail.com wrote: Hello, I have an itemRenderer

Re: [flexcoders] Why does Flex 4 hate modules..cont

2010-08-15 Thread Alex Harui
I tried to compile the source files, but there are dependencies on skins and other components. Maybe start a new project and copy the code and reduce it down even more. If you still have a problem, post that reduced test case. On 8/14/10 12:22 PM, Wally Kolcz wko...@isavepets.com wrote:

[flexcoders] Re: Missing characters in an embedded font

2010-08-15 Thread Rick Schmitty
Well for whatever reason when I converted the font to OTF and then embedded it all the characters showed up I'd still be interested in why the TTF wouldnt fully work though if anyone is a font guru On Sat, Aug 14, 2010 at 8:34 PM, Rick Schmitty flexc...@gmail.com wrote: I have 2 font files from

[flexcoders] Checking that multiple events have been dispatched

2010-08-15 Thread chenyang3
Hi, in my application I need to ensure that 2 (or more) events have happened before I can do something else. Basically I have 2 objects each being attached to an event listener. How do I check that both events have been dispatched? Do I have to use Timer/Enterframe events or loops to constantly

Re: [flexcoders] Checking that multiple events have been dispatched

2010-08-15 Thread Jake Churchill
Set variables somewhere that you can look at prior to dispatching the next event. nbsp;If they haven't, set a timer and check again. nbsp;Or, you a chain them in the handling of the events. -- Sent from my Palm Pre On Aug 15, 2010 10:21 AM, chenyang3 lt;chenya...@hotmail.comgt; wrote:

[flexcoders] ALEX: AdvancedDataGrid: last row disappears on click

2010-08-15 Thread charliecrystle
I'm about a 9-month Flex programmer; this issue is hampering progress and I've tested it a bunch: I have an ADG, with a 1-item ArrayCollection. Both the ADG and AC are instantiated in actionscript. The ADG displays the single row with its data--that's correct. When ADG.editable is set to

[flexcoders] Layoutmanager and modules

2010-08-15 Thread Wally Kolcz
I am not sure if it has to do with the loading, but seems like I am having problems in Modules when it comes to mixing Spark and Halo components. I seem to have the most problems with Spark Buttons and, in this current case, Halo TabNavigators and Halo Form. Is there any documentation on how

Re: [flexcoders] Layoutmanager and modules

2010-08-15 Thread Wally Kolcz
I am just going to have to reread on SkinableContainers...I deleted my module, created a new one with just a label and it works fine. Seems like I have all kids of problems when I use SkinableContainers to add containers and designs to the modules... On 8/15/2010 1:05 PM, Wally Kolcz wrote:

[flexcoders] How to remove some a string till a particular character

2010-08-15 Thread Wally Kolcz
How can I start at the end of a string, move to the left till the first '/' and extract the value of what was after that first character? I am looking for these: com/wallykolcz/views/portal/AdminPortal.swf would equal AdminPortal.swf com/wallykolcz/views/myVoice/MyVoice.swf would equal

RE: [flexcoders] How to remove some a string till a particular character

2010-08-15 Thread Keith Reinfeld
var result:String = myString.substr(myString.lastIndexOf('/')+1); Regards, Keith Reinfeld Home Page: http://keithreinfeld.home.comcast.net/ http://keithreinfeld.home.comcast.net From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Wally Kolcz Sent: