Re: [flexcoders] incorrect component focus when returning to Flex app

2010-04-28 Thread Alex Harui
Is component X a custom component? Use of tabChildren and tabEnabled have changed in Flex 4. You have to use hasFocusableChildren and tabFocusEnabled instead. On 4/28/10 3:13 PM, "technusiast" wrote: Hello, In my FB4 app, I click on an item renderer, which puts the focus on the text

Re: [flexcoders] XMLListCollection DataGrid Performance vs Any Other DataProvider Type

2010-04-28 Thread Alex Harui
Convert the XML to Class instances. On 4/28/10 10:06 AM, "jamesfin" wrote: Here's the scenario... Simple datagrid with XMLListCollection data provider. Average collection size is 200 rows of XML (shown below) 10 columns in the datagrid with a unique item renderer for each. 1 Column can

RE: [flexcoders] Flash Builder 4 "java heap space" error.

2010-04-28 Thread Christopher McArthur
Thanks for the detials. Unfortuantely, Ive increased the numbers a great deal, tried a variety of different values, and read through the nice page you linked, and I am *still* getting the errors. And not just me, my entire development team on a large variety of hardware. Any suggestions on

RE: [flexcoders] Implement question

2010-04-28 Thread Gordon Smith
If class C implements interface I, and object o is an instance of C, then the expressions "o is C" and "o is I" are true. This means that o can be passed to any code that expects either a C or an I; it satisfies both types at once! Generally you use the interface I to express the public "contrac

Re: [flexcoders] Implement question

2010-04-28 Thread Oleg Sivokon
The difference is like reading a book vs seeing it in the shop window of Barns and Nobel when you drive by. I mean the only thing that connects between the two is that there's an interface involved, other than that there's nothing in common.

[flexcoders] Re: Yahoogroups really sucks - let's go somewhere else.

2010-04-28 Thread Mike
The only reason I remain on this group is because the Adobe forums do not provide a daily digest. I do not want lots of individual emails, I would rather have the digest pushed to me, so I can read it if/when I am ready. I may not be online when I read the digest, so email works best for me.

[flexcoders] incorrect component focus when returning to Flex app

2010-04-28 Thread technusiast
Hello, In my FB4 app, I click on an item renderer, which puts the focus on the text input field within the item renderer. I then click on another component X in the same app. The focus is now correctly in the last component I clicked on. I then click away from the FB4 app browser, on another

[flexcoders] RobotLegs Framework

2010-04-28 Thread Patricia Han
Hi Everyone, Have you used Robotlegs framework? Please share your experience with me. (compare with Cairngorm or PureMVC) Thanks, Pat

[flexcoders] Implement question

2010-04-28 Thread Dan Pride
What is the practical difference between implementing an interface (Like say IResponder) and passing in a variable typed as IResponder in the construction method? Thanks Dan Pride

[flexcoders] Re: Flex 4: Advice on tricky extending problem, architecturing help needed

2010-04-28 Thread astronaute75
All components share a common superclass of course. Sorry "type" was actually english, not OO, my mistake. :) --- In flexcoders@yahoogroups.com, Oleg Sivokon wrote: > > All 500+ "hostComponents" are extending an unique master component, so they > all share same type. > There is a contradiction i

Re: [flexcoders] Re: Flex 4: Advice on tricky extending problem, architecturing help needed

2010-04-28 Thread Oleg Sivokon
All 500+ "hostComponents" are extending an unique master component, so they all share same type. There is a contradiction in this line, it may be either *All 500+ "hostComponents" are extending a unique master component*, OR* they all share same type*. It is not possible to have both at the same ti

Re: [flexcoders] Efficient SOAP WebService invocation

2010-04-28 Thread Oleg Sivokon
@Peeyush: It generates useless wrapper... that is, besides the generated service you will get another class "in the middle". Note that inheriting classes, unlike decorators will drag all their superclass properties with them, and you will never utilize even 50% of them in any particular situation.

[flexcoders] ViewStack historyManagementEnabled fails when nested in spark component

2010-04-28 Thread method_air
Any ideas why historyManagementEnabled seems to be failing here: The MX viewstack is nested in a spark component. History management wo

[flexcoders] Re: Flex 4: Advice on tricky extending problem, architecturing help needed

2010-04-28 Thread astronaute75
All 500+ "hostComponents" are extending an unique master component, so they all share same type. The skin is assigned to the master component, so all "hostComponents" get it too. Now, it is not maintainable to have 1 skin per component and more important, it will promote code duplication. Imag

[flexcoders] Selection highlighting in Flashbuilder 4

2010-04-28 Thread Richard Rodseth
I just started using FB4 (standalone) for real work, and the selection highlighting in the editor is driving me nuts. Is there some preference I need to change? Basically, I get no highlighting when dragging over text, until I release the mouse. I'm on OS X.

Re: [flexcoders] Efficient SOAP WebService invocation

2010-04-28 Thread Peeyush Tuli
Can you throw some light on how the autogenerated code is not efficient? *In my application, each server data request creates a new WebService > object, > sets the wsdl url and loads the wsdl.* > Thats exactly not what the autogen code does. You can easily work with a single instance of a busine

[flexcoders] XMLListCollection DataGrid Performance vs Any Other DataProvider Type

2010-04-28 Thread jamesfin
Here's the scenario... Simple datagrid with XMLListCollection data provider. Average collection size is 200 rows of XML (shown below) 10 columns in the datagrid with a unique item renderer for each. 1 Column can display 1 of 10 embedded images depending on an xml attribute. AS3-only Rendere

Re: [flexcoders] Re: Issue with truncateToFit behavior of Label while scaling

2010-04-28 Thread Alex Harui
There are examples in the doc and on FlexExamples.com On 4/27/10 11:36 PM, "msrilatha_reddy" wrote: Hello Alex, Thanks for the reply! We didnt use embedded fonts anywhere in our application. Could you please give an example of using embedded fonts for a Label?? It would be great if you co

Re: [flexcoders] Re: Modal windows and blur problem...

2010-04-28 Thread Alex Harui
Break it down to a simple tests case and if it fails, file a bug. In your workaround, save away the filters array for each child so you can restore it later. Use a dictionary to track the filter set for each child. On 4/28/10 9:16 AM, "aceoohay" wrote: Alex: I have a main application t

Re: [flexcoders] How to trace swf frame?

2010-04-28 Thread Oleg Sivokon
It may not always be possible because SWF may not be a MovieClip, it may be a Sprite or AVM1Movie, whilst sprites don't have frames at all, AVM1 movies might have ftames, but it will be difficult to know, because you'll have to parse the SWF assembly for that... not really that difficult, but may n

Re: [flexcoders] Flex 4: Advice on tricky extending problem, architecturing help needed

2010-04-28 Thread Oleg Sivokon
If there are going to be 500 different skins you cannot avoid making 500 of them :) However you can use inheritance or decorators if all skins will share common traits. The skin could actually adjust itself, if, for example, the difference in appearance may be determined from the type of the host c

Re: [flexcoders] Efficient SOAP WebService invocation

2010-04-28 Thread Oleg Sivokon
> I am not sure why you need to write the plumbing code at that level. It should be handled by the autogenerated code from flex builder webservice wizard itself. It says "Efficient" in the title :)

[flexcoders] Re: Modal windows and blur problem...

2010-04-28 Thread aceoohay
Alex: I have a main application that loads a module using moduleloader, that module has a user initiated popup. The main application has a timer that fires off and loads its own popup. The main application's popup's modalTransparencyColor will color the module's popup, but, the main application

[flexcoders] Re: Modal windows and event handlers...

2010-04-28 Thread aceoohay
Never mind it was simple; this.systemManager.addEventListener(KeyboardEvent.KEY_DOWN, clearScreenSaverTimer); this.systemManager.addEventListener(MouseEvent.CLICK, clearScreenSaverTimer); Paul --- In flexcoders@yahoogroups.com, "aceoohay" wrote: > > Alex: > > Any sample I can look at? > > Pa

Re: [flexcoders] Yahoogroups really sucks - let's go somewhere else.

2010-04-28 Thread thomas parquier
+1 thomas parquier --- http://www.web-attitude.fr/realisations/ msn : thomas.parqu...@web-attitude.fr softphone : sip:webattit...@ekiga.net téléphone portable : +33601 822 056 2010/4/28 Patrick > > > I've been starting to use the Adobe forum more lately for questions, since > I think Adobe fo

[flexcoders] Re: Modal windows and event handlers...

2010-04-28 Thread aceoohay
Alex: Any sample I can look at? Paul --- In flexcoders@yahoogroups.com, Alex Harui wrote: > > Try adding event listeners to systemManager. > > > On 4/27/10 4:36 PM, "aceoohay" wrote: > > > > > > > It would appear that keystrokes and mouse clicks from a modal window > (popupManager) do

[flexcoders] Yahoogroups really sucks - let's go somewhere else.

2010-04-28 Thread Patrick
I've been starting to use the Adobe forum more lately for questions, since I think Adobe folks troll it more. Yahoo groups is really weak, I am so unimpressed with the ui of this tool. I *hate* that this is the defacto tool for Flex developers to search for questions and answers. There's no w

[flexcoders] AdvancedDataGridRendererProvider: dynamic columnIndex and columnSpan

2010-04-28 Thread Matthew
I have a need to render the same item on each row of a data grid. The only difference is on each row I need to dynamically compute the columnIndex and columnSpan. On each row it can be different. For example, on row 1 start the item on column 2 and span 5 columns. One row 2 start the item on

[flexcoders] How to trace swf frame?

2010-04-28 Thread markflex2007
I try to play a swf like this: http://www.adobe.com/2006/mxml"; layout="vertical" backgroundGradientAlphas="[1.0, 1.0]" backgroundGradientColors="[#FFFEFE, #FFFEFE]"> My question is how to know which frame the swf is playing when it play I need to trace this. Please

[flexcoders] Re: Creating Spark controlBar with ActionScript

2010-04-28 Thread dannyvenier
Seems that the spark List is the class of choice for extending for menubars, controlBars etc. It is a viable choice anyway, depending on exactly what you want to do. There was a lively discussion on a similar requirement started by James on this thread: http://tech.groups.yahoo.com/group/flexc

[flexcoders] FST or FSDG with checkbox render

2010-04-28 Thread nick.watson45
Hi, does anyone have an example of a FileSystemTree with a checkbox item renderer for all nodes/sub nodes for file/folder selection The cb renderers i have for a DG or Tree control wont work with the FST or FSDG TIA Nick

[flexcoders] [ANN] Flex Test Coverage Kept Simple with Flexmojos

2010-04-28 Thread Marvin Froeder
If you take testing seriously as I do, you most likely know test code coverage tools. And in Flex Universe the *de facto* standard is Flex Cover. Now let’s be honest here, the tool does the job but it isn’t simple. Using it requires a special compiler to run code on Flex projects. Flexmojos is p

[flexcoders] Trying to intergrate the xcelsius reports screen with adobe then into webdynpro

2010-04-28 Thread suhaan.shaik
Hi All, I created the pie chart into xcelsius reports with no data into it and created the external data connectivity generated the SWF file and tried to embed it into the adobe flex. I tried to create a flex project initially and then tried to create the MXML component and then tried to create

[flexcoders] Flex 4: Advice on tricky extending problem, architecturing help needed

2010-04-28 Thread astronaute75
Hello fellows :) The situation: Actually I extend an AS component CompA into many other MXML components CompA1, CompA2... CompA500 and so on. They all share same skin CompASkin, because it is convenient and maintainable. Now, there is a requirement: small sub part of the skin have to be differe

[flexcoders] How to hide the disclosure icon in AdvanceDataGrid

2010-04-28 Thread sudeshdas
Hi All, I am working with AdvancedDataGrid control. I have to hide the disclosure icon's of particular item only in the grid based on certain conditions. can any one help me to solve this problem. Thanks Sudesh.

Re: [flexcoders] Efficient SOAP WebService invocation

2010-04-28 Thread Peeyush Tuli
I am not sure why you need to write the plumbing code at that level. It should be handled by the autogenerated code from flex builder webservice wizard itself. On Mon, Apr 26, 2010 at 11:16 PM, sasuke wrote: > > > > @Oleg & Mike > > Thanks for the answers. Multi-invocation safe webservice and ope

Re: [flexcoders] AIR update blocked by proxy server

2010-04-28 Thread Tom Chiverton
On Tuesday 27 Apr 2010 12:32:52 you wrote: > My understanding is that AIR reads the client browser's proxy settings It reads the operating systems settings. On Windows, those would be IE's, not FireFox's for instance. -- Helping to dynamically cultivate exceptional extensible ROI as part of the

Re: [flexcoders] Re: AIR update blocked by proxy server

2010-04-28 Thread Tom Chiverton
On Tuesday 27 Apr 2010 15:47:36 you wrote: > The customer's netadmin wants to know what ports the UPDATE FRAMEWORK uses > for inbound and outbound traffic. Does anyone know?? 80 and/or 443 I would expect. A simple package capture will tell you. -- Helping to challengingly consolidate seamless e

[flexcoders] Re: Issue with truncateToFit behavior of Label while scaling

2010-04-28 Thread msrilatha_reddy
Hello Alex, Thanks for the reply! We didnt use embedded fonts anywhere in our application. Could you please give an example of using embedded fonts for a Label?? It would be great if you could modify the example which i have given to work with embedded fonts. Thanks, Srilatha M --- In flexcoder

[flexcoders] Re: Flex 4 RichEditableText component ignores multipe space

2010-04-28 Thread johanlopes
--- In flexcoders@yahoogroups.com, Peter DeHaan wrote: > > Can you please file a bug at http://bugs.adobe.com/flex/ and include your > test case and we can take a look. > > Peter > > > Thanks for the quick reply Peter! I've submitted it as a bug: https://bugs.adobe.com/jira/browse/SDK-26319