Alex, I resolved the problem, and it was my code. It did not occur to me that bad code would run in the debugger player, but cause the standard player to lock up. The code problem was in the function for the AdvancedDataGrid.styleFunction. It had a switch structure with a missing break on a case. It did execute and return the correct results on the debugger player.
Going forward, I will be sure to test on the standard player before releasing code to the test team. Thanks for making me take another look at my code! Paul --- In [email protected], "Alex Harui" <[EMAIL PROTECTED]> wrote: > > Are you comparing the same player platform (release and debugger in > ActiveX/IE, and not release in FireFox and debugger in IE) and > deployment (deployed on a server vs local file system for one and server > for the other)?. I would make some simple test cases and see if they > work in the release players. I expect they will, which is going to mean > that there is something in your code > > > > Timing can be different since the release player is faster. If you are > using any evil debugging tricks like depending on parsing > getStackTrace() you could have issues as well. > > > > One way to debug this is to add a TextArea to your app and spit logging > information to the TextArea. > > > > -Alex > > ________________________________ > > From: [email protected] [mailto:[EMAIL PROTECTED] On > Behalf Of Paul Fischer > Sent: Thursday, April 17, 2008 4:13 PM > To: [email protected] > Subject: [flexcoders] Re: Flex3 App does not work on Flash Player > 9.0.124.0 > > > > Actually, I discovered that difference is not the version number but > whether it is a debugging version of the player. The app always > works with the debugging version and always fails with the non- > debugging version regardless of the version number. > > Any suggestions? Thanks. > > --- In [email protected] <mailto:flexcoders%40yahoogroups.com> > , "Paul Fischer" > <paulfischer60@> wrote: > > > > My Flex3 app executes Axis2 web services using HTTPService and > > displays the results in Charts and AdvancedDataGrids. The > > application works on Player 9.0.115.0. > > > > On version 9.0.124.0: > > 1. The AdvancedDataGrids display only a single row of data > although > > hundreds of rows were retrieved from the web service. > > 2. Following data retrieval, the AdvancedDataGrids do not respond > > to actions for sorting columns or moving columns. > > 3. Tabnavigator controls do not respond to events for changing > the > > active tab. > > 4. Viewstack controls with LinkBars do not respond to mouse > clicks > > on the links. > > 5. The Chart data is retrieved and displayed correctly. > > > > After rolling back to 9.0.115.0, everything works correctly. If I > > roll forward to the current version, it will stop working. My > Flex2 > > applications (with the same functionality, but using standard > > DataGrid) work correctly on either Flash Player version. > > > > I have read all the notices and release notes about the new Flash > > Player version, but I did not expect it to impact my apps because > I > > do not use cross-domain calls, do not use custom HTTP headers, and > > do not use sockets. The web service calls are functioning, but the > > UI components are not functioning with Flex3 but are functioning > > with Flex2. > > > > Has anybody seen a similar issue with the new player version? Any > > suggestions for resolving or finding the root cause? > > > > Thank you, > > Paul > > >

