[flexcoders] Re: Datagrid Button Renderer Performance

2007-03-19 Thread Nick Durnell
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: updateDL gets called incase you want to change the font color based on the selection highlight. Thanks for clearing this up, Alex. I don't have row selection enabled on my datagrids so I do not need this constant

[flexcoders] Help - Flex application no longer works!

2007-03-20 Thread Nick Durnell
I am getting the following runtime error when running my application: Error: Could not find resource bundle formatters at mx.resources::ResourceBundle$/getResourceBundle() at mx.formatters::DateBase$cinit() at global$init() at mx.formatters::DateFormatter/format()

[flexcoders] Re: Help - Flex application no longer works!

2007-03-20 Thread Nick Durnell
nearly every time I compiled - I was getting compilation errors though not runtime errors. Giles Roadnight From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nick Durnell Sent: 20 March 2007 16:13 To: flexcoders@yahoogroups.com Subject: [flexcoders] Help

[flexcoders] Re: Help - Flex application no longer works!

2007-03-21 Thread Nick Durnell
Thanks for your help Alex. First of all, I tried adding a DateFormatter to a class which is shared by all my applications and it worked! So as you say this suggests a linker dependency issue but I have no idea where the issue suddenly came from. I have not experimented with RSLs, modules or

[flexcoders] Re: Help - Flex application no longer works!

2007-03-22 Thread Nick Durnell
Should I file a bug report for this? Nick. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: I think there are issues with resources in loaded apps. The apps can end up looking at the main app for their resources instead of their own app.

[flexcoders] DataGrid cell effect

2007-03-28 Thread Nick Durnell
Hi all, I'd like my datagrids to have an effect whereby a cell's background briefly flashes a different colour when its data changes. For example if row 2 gets updated and column 4 has changed value, I want that cell (and that cell only) to flash to draw the attention of the user. Does

[flexcoders] Tree bug?

2007-04-02 Thread Nick Durnell
Hi all, I have a tree containing lots of branches. When a user opens a branch I add a load of leaf nodes to it. I am running into problems where the new nodes are not displayed correctly. Here is a sample application which demonstrates the problem: ?xml version=1.0 encoding=utf-8?

[flexcoders] Re: Tree bug?

2007-04-02 Thread Nick Durnell
Oops - forgot to include the TestObj definition: public class TestObj { public var id:String; public var hasChildren:Boolean = false; public var children:Array; } Nick.

[flexcoders] Re: Tree bug?

2007-04-04 Thread Nick Durnell
Thanks for your suggestion Robert. I've just tried calling invalidateList() on the tree after adding each new node but unfortunately this makes no difference. Nick. --- In flexcoders@yahoogroups.com, Robert Chyko [EMAIL PROTECTED] wrote: have you tried using invalidateList?

[flexcoders] Re: Tree bug?

2007-04-05 Thread Nick Durnell
Hi Robert, Here is a test app which demonstrates the problem: ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; width=200 height=300 layout=absolute creationComplete=createTopNodes(); mx:Script ![CDATA[ import mx.events.TreeEvent; import

[flexcoders] Re: Tree bug?

2007-04-05 Thread Nick Durnell
Sorry to reply to my own post but I have found a workaround to the problem and thought I'd share it. The display issues go away if you collapse and then expand the tree nodes so my workaround is simply to do this programmatically. If I am adding a child node to a node which is expanded (open),

[flexcoders] ASP.NET RSS proxy?

2007-05-30 Thread Nick Durnell
Hi all, I've read here that in order to access RSS data in my Flex application (from sites with no crossdomain policy files) I will need to proxy the RSS data on the server which hosts the Flex application. I have seen links to PHP proxy scripts but does anyone have an ASP.NET equivalent?

[flexcoders] Dead space in TabNavigator

2007-05-31 Thread Nick Durnell
Hi all, All my TabNavigators have a dead space at the top (between the tab bar and the content). For example if I have a tab which contains a green Canvas set to 100% width and 100% height, the whole tab is green apart from a 10 pixel stripe at the top! Does anyone know how to get rid of

[flexcoders] Re: Dead space in TabNavigator

2007-06-01 Thread Nick Durnell
am adding content to the TabNavigator before it is ready or the paddingTop style has been applied. I'll have to do some more digging to find out what is wrong. Nick. --- In flexcoders@yahoogroups.com, Nick Durnell [EMAIL PROTECTED] wrote: Hmmm I may have spoken too soon. I have set

[flexcoders] Re: Dead space in TabNavigator

2007-06-01 Thread Nick Durnell
--- In flexcoders@yahoogroups.com, Michael Schmalle [EMAIL PROTECTED] wrote: Hi, that is because the TabNavigator has a default paddingTop style of 10 pixels. TabNavigator { paddingTop:0; } will solve it for all of them in your application. Peace, Mike It does indeed!

[flexcoders] Re: Dead space in TabNavigator

2007-06-01 Thread Nick Durnell
! Any ideas what is causing this? Thanks, Nick. --- In flexcoders@yahoogroups.com, Nick Durnell [EMAIL PROTECTED] wrote: --- In flexcoders@yahoogroups.com, Michael Schmalle teoti.graphix@ wrote: Hi, that is because the TabNavigator has a default paddingTop style of 10 pixels

[flexcoders] Firefox crossdomain problem

2007-10-08 Thread Nick Durnell
Hi all, I have a Flex app which calls ASP pages on an application server. The application server is located on a different domain to the one hosting the swf so I am using a crossdomain file. Everything works fine in Internet Explorer but refuses to work in Firefox. Here is a simple app

[flexcoders] Problem with RSL and SWFLoaders

2007-12-18 Thread Nick Durnell
Hi all, I have built a large Flex application which consists of a main application window and a number of 'widgets' that are displayed in various areas of the screen. Each widget is itself a Flex application in its own right. When the main application starts up it checks which widgets

[flexcoders] Re: Problem with RSL and SWFLoaders

2007-12-19 Thread Nick Durnell
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: I would try to find out what happened to the other 9? Are they showing progress bars? Is the app stuck? Is CPU usage running high? Hi Alex, I do not see any progress bars for the applications which fail to start. CPU

[flexcoders] Re: Problem with RSL and SWFLoaders

2007-12-20 Thread Nick Durnell
--- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: I think you'd have to debug through it and see what is going on. However, before doing that, is it possible to re-implement this set of apps? Do these sub-apps ever need to run on their own? If not, you should consider