[flexcoders] How to get GlobelErrorHandling working.

2010-06-21 Thread reflexactions
AFAIK this is player dependent right? So I have latest debug player 10.1.53.64. Using FB4/SDK3.2 In the the main application mxml I have added a listener. systemManager.loaderInfo.addEventListener(uncaughtError, globalErrorHandler); But it never gets called. Is that the right

[flexcoders] Re: How to get GlobelErrorHandling working.

2010-06-21 Thread reflexactions
OK I spotted the obvious error. systemManager.loaderInfo should be: systemManager.loaderInfo[uncaughtErrorEvents] After that I am getting error that I forced into the main app but an error in a module didn't show up in the GEH, it threw an error and went to the old std popup window. Do I

Fwd: [flexcoders] Web Browser as AIR APP... Ur Comments Plz

2010-06-21 Thread Shabir Gilkar
Hi All, Hope you are fine there! Today i am releasing BETA version of Vitizon Browser (AIR APP). I hope you will check this and do suggest me what kind of changes and improvements you think should be maked to this. I hope you will like this as this is my first ever developed and designed App

[flexcoders] AIR Development: Modules vs. Components

2010-06-21 Thread Wally Kolcz
In the beginning of my Flex web development I used components to separate different functionality of my web applications. Being acutely aware of load time and different user bandwidths, I switched to now develop my applications in modules. This has made my web applications load faster. Now I

Re: [flexcoders] AIR Development: Modules vs. Components

2010-06-21 Thread Jeffry Houser
Components and Modules are two different things for very different purposes. I do not believe it is an either or situation. Module are usually designed to be an app in an app; basically a self contained complete set of functionality. Where as components are designed to be flexible units

[flexcoders] Re: Problem with bindings in nested array collections

2010-06-21 Thread valdhor
I have found it much easier to create a custom component and repeat that. I would try creating your VBox as a custom component with a bindable public array collection to hold your assignedpeople then just pass that to your custom component during the repeat. --- In flexcoders@yahoogroups.com,

[flexcoders] Re: How to get GlobelErrorHandling working.

2010-06-21 Thread valdhor
I haven't looked it up but does the uncaught error event bubble? if so, I would add the event listener to both the main app and the systemManager. this.addEventListener(uncaughtError, globalErrorHandler); systemManager.addEventListener(uncaughtError, globalErrorHandler); --- In

[flexcoders] Entity - Data Interchange Format

2010-06-21 Thread wain_mike
Hi all, I want to introduce you to a new lightwieght format called ENTITY. it is smaller than XML and JSON. And is also quicker to generate and parse. You can check it out at: http://www.entity-format.co.uk Its early days, and i only went live with the project yesterday but more ports will be

Re: [flexcoders] Entity - Data Interchange Format

2010-06-21 Thread Paul Andrews
On 21/06/2010 13:59, wain_mike wrote: Hi all, I want to introduce you to a new lightwieght format called ENTITY. it is smaller than XML and JSON. And is also quicker to generate and parse. You can check it out at: http://www.entity-format.co.uk Its early days, and i only went live with the

Re: [flexcoders] Entity - Data Interchange Format

2010-06-21 Thread Tom Chiverton
On Monday 21 Jun 2010 14:06:12 Paul Andrews wrote: It's worthwhile saying that the usage of this format is not free in commercial projects (unless I've read the licence wrong - please correct me if that's the case Wayne), so that's something to be considered besides the format itself.

[flexcoders] Re: Entity - Data Interchange Format

2010-06-21 Thread Wayne
You are correct to a degree tom. The official encoders/decoders are free for none profit use. but the specification is open to all to use and create there own encoder/decoders with. There will be alot more content on the site soon to aid with the process. I am hoping to list both official and

[flexcoders] Re: Entity - Data Interchange Format

2010-06-21 Thread Wayne
It is also important to note that the aim of such text based formats are to keep them human readable. binary does not suit this requirement. --- In flexcoders@yahoogroups.com, wain_mike wain_m...@... wrote: Hi all, I want to introduce you to a new lightwieght format called ENTITY. it is

[flexcoders] Datagrid Column Setting Vertical Gap

2010-06-21 Thread Angelo Anolin
Hi FlexCoders, I have a datagrid where I have set the wrapping to true (wordWrap=true) and the row height (variableRowHeight=true). The text wraps properly, except that the Vertical Gap is quite too big. There is a visible space between the lines that were wrapped inside the datagrid. Is

Re: [flexcoders] Datagrid Column Setting Vertical Gap

2010-06-21 Thread Alex Harui
Try “leading” On 6/21/10 9:17 AM, Angelo Anolin angelo_ano...@yahoo.com wrote: Hi FlexCoders, I have a datagrid where I have set the wrapping to true (wordWrap=true) and the row height (variableRowHeight=true). The text wraps properly, except that the Vertical Gap is quite too big.

Re: [flexcoders] Re: How to get GlobelErrorHandling working.

2010-06-21 Thread Alex Harui
GEH for modules is broken in 10.1. On 6/21/10 5:53 AM, valdhor valdhorli...@embarqmail.com wrote: I haven't looked it up but does the uncaught error event bubble? if so, I would add the event listener to both the main app and the systemManager. this.addEventListener(uncaughtError,

Re: [flexcoders] AIR Development: Modules vs. Components

2010-06-21 Thread Alex Harui
I don’t think of modules as “app in an app”. Modules are intended to have some known dependencies on the loading environment, more like DLL’s in Windows. Sub-apps are intended to be stand-alone and hence is the unit for cross-versioning. The primary goal of modules is to move code out of a

RE: [flexcoders] Re: How to get GlobelErrorHandling working.

2010-06-21 Thread Battershall, Jeff
Alex, That's not good news! Is there any way to catch uncaught errors at the module level at least? Jeff From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Alex Harui Sent: Monday, June 21, 2010 1:27 PM To:

[flexcoders] AS3 nested groups

2010-06-21 Thread Scott
I'm trying to draw a calendar grid using HGroup and VGroup If I do the follow it draws 7 boxes: for (var nDay:int = 0; nDay 7; nDay++) { var bcBox:BorderContainer = new BorderContainer(); var lblCalText:Label = new Label(); var vgWeek:VGroup = new VGroup();

Re: [flexcoders] Re: How to get GlobelErrorHandling working.

2010-06-21 Thread Alex Harui
I should first clarify. GEH is working for multiple SWF apps, except for modules. I don’t have the details but I think it is because modules discard their loader right away whereas sub-apps generally do not. The purpose of GEH is to catch all errors thrown that are not caught by try/catch

[flexcoders] subclassing DataGrid

2010-06-21 Thread mitchgrrt
I have: components:MyBetterDataGrid mx:columns mx:DataGridColumn and am getting the error message: Could not resolve mx:columns to a component implementation MyBetterDataGrid extends DataGrid. Why isn't the compiler letting me declare the columns? Is there a way to do this? Thanks.

[flexcoders] Best Practice for making sure you're displaying correct data

2010-06-21 Thread libbychantel
Hello people From time to time I run into this problem which makes me think I am doing something wrong: I have a popup window which receives data and constructs itself. It is reusable across several different windows. However, sometimes on subsequent popups, it shows data from the original

Re: [flexcoders] Datagrid Column Setting Vertical Gap

2010-06-21 Thread Angelo Anolin
Hi Alex, On the adobe docs, the default says that it is 0 only for combo box and 2 for all others. What unit is being used here? I set my leading to 0 but the space is still noticeably big. Setting it to -2 somewhat fixed it. Thanks. Angelo From: Alex

[flexcoders] Constraints and Browser Scrollbars

2010-06-21 Thread frogpeddler
I am trying to create an application that is targeted for a resolution of 1024x768. For those will larger resolutions I would like the application to scale to the available area. For those with smaller resolutions I would like the browsers scroll bars to be visable to allow users to still be