[flexcoders] Re: multiple checkbox selection in a datagrid

2009-06-08 Thread halfbaked11704
Thanks for the help...I have a question, how can I fake the keyboard interaction in flash? where did you get the keyDownHandler function? --- In flexcoders@yahoogroups.com, Alex Harui wrote: > > Try one of the examples on my blog > > Alex Harui > Flex SDK Developer > Adobe Systems Inc.

[flexcoders] How to create an overlay on top of a list/datagrid

2009-06-08 Thread gmoniey22
I haven't been able to find any examples of this, which is frustrating, since I believe this should be an easy task. I want to display a canvas (or any other sprite) which simply places a gray overlay over the entire grid/list with some message in the middle. In java this would be as easy as us

RE: [flexcoders] multiple checkbox selection in a datagrid

2009-06-08 Thread Alex Harui
Try one of the examples on my blog Alex Harui Flex SDK Developer Adobe Systems Inc. Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of halfbaked11704 Sent: Monday, June 08, 2009 4:46 PM To: flexcoders@yahoo

[flexcoders] httpservice to arraycollection?

2009-06-08 Thread flexaustin
Ok, its late and I am falling asleep. Can someone be another pair of eyes for me? If httpservice call with IResponder how can I turn my result object which is this: \ to an array or arraycollection? TIA

RE: [flexcoders] A question about ViewStack

2009-06-08 Thread Gordon Smith
A creationComplete event is dispatched very late -- after the component has already been laid out. If you set its selectedIndex early (which is what doing it in MXML does), it should work. Gordon Smith Adobe Flex SDK Team From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On B

RE: [flexcoders] Re: HTTPService.send(params) and nothing happens?

2009-06-08 Thread Tracy Spratt
HttpService is like an AJAX XML-over-HTTP call. It is expecting data to be returned. It will not load or navigate to an html page. You can use navigateToURL to load an html page. When you say, ".access a web page", what do you mean? Display html? Flex can't really do that. If you post t

RE: [flexcoders] A question about ViewStack

2009-06-08 Thread Tracy Spratt
Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of al-al :D Sent: Monday, June 08, 2009 11:30 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] A question about ViewStack Is

Re: [flexcoders] Slider dataTip- is it possibole to have this visibale all the time

2009-06-08 Thread Andrew D. Goodfellow
Does anyone have a good example of manually tool-tipping the thumb on a Slider (like what Manish is referring to)? -Andy On Thu, Jun 4, 2009 at 2:15 PM, Manish Jethani wrote: > > > On Wed, Jun 3, 2009 at 4:29 PM, jossminker wrote: >> I woudl like to have the datatip for my slider visible at all

[flexcoders] A question about ViewStack

2009-06-08 Thread al-al :D
Is it possible to choose which stack to display first in a ViewStack? for example is it possible to choose secondCanvas to display first during creationComplete event? I have tried myViewStack.selectedIndex = 1 or even myViewStack.selectedChild = secondCanvas,

Re: [flexcoders] Getting session in Flex

2009-06-08 Thread Ivan Perez
It means, do you want to use remote comunication between from flex to java? Did you try the remoteObject to make calls? this link would help you: http://livedocs.adobe.com/flex/3/html/help.html?content=data_access_4.html []s, Ivan On Mon, Jun 8, 2009 at 6:07 PM, nhid wrote: > > > Hello, > > H

[flexcoders] Datagrid non-editable but want to tab between columns

2009-06-08 Thread flexcoder2008
I have a datagrid that has some columns formatted using item renderers. I want to enable keyboard navigation so the user can tab across the columns. I know that this behaviour is built in to the datagrid if the editable property is set to true, but how do I accomplish this if I want the grid t

Re: [flexcoders] Flex and .NET

2009-06-08 Thread Angelo Anolin
Hi Adrian, Thanks for the code you gave.  It is something which could probably help me out. You mentioned that you have web service calls which returns a dataset and you are casting directly into an arrayCollection. Would you care to show some examples?  I am still quite new to Flex and it woul

[flexcoders] multiple checkbox selection in a datagrid

2009-06-08 Thread halfbaked11704
hi! everyone, I have a problem regarding with the checkboxes inside the datagrid component. I cannot check a multiple checkbox. When I select another one the previously checked will be unchecked.

Re: [flexcoders] [ANN] Parsley 2.0 Application Framework for Flex + Flash (Dependency Injection, Messaging, MVC)

2009-06-08 Thread Jens Halm
> # A very extensive Developer Manual - > http://www.spicefactory.org/parsley/docs/2.0/maunal/ Sorry, link is broken, this is the right one: http://www.spicefactory.org/parsley/docs/2.0/manual/ Jens -- Flexcoders Mailing List FAQ: http://groups.yahoo

[flexcoders] [ANN] Parsley 2.0 Application Framework for Flex + Flash (Dependency Injection, Messaging, MVC)

2009-06-08 Thread Jens Halm
Hello all, this weekend we released Parsley 2, the completely redesigned version of our Flex + Flash Application Framework, taking it to a new level of power and flexibility: # Versatile IOC Container: Supports configuration with AS3 Metadata, MXML, XML files, ActionScript # Dependency Inject

[flexcoders] Getting session in Flex

2009-06-08 Thread nhid
Hello, How do I get an HttpSession from Flex to pass to the java backend? Thank you for your help.

[flexcoders] Re: HTTPService.send(params) and nothing happens?

2009-06-08 Thread ciminop
Hi, I am using POST. In the simplest of terms, I'm trying to access a web page that requires login with username and password. The client is not exposing web services or a database port, but I can create a customized PHP access page. The requirement is for a customer who downloads an applicatio

Re: [flexcoders] Re: how to fix poor performance in this example (AdvancedDataGrid and Binding)

2009-06-08 Thread Pan Troglodytes
Oh yeah, another thing I should point out is that in the real grid, I have multiple columns. As such, a solution that relies on the itemRenderer might be problematic due to gaps between items and such. I would just use the itemRollOver and itemRollOut to do it all, but rollOut doesn't get reliabl

Re: [flexcoders] Re: how to fix poor performance in this example (AdvancedDataGrid and Binding)

2009-06-08 Thread Pan Troglodytes
That was a good idea and it does get rid of the arraycollection walking. But I get the SAME problem with the grid losing highlighting when I did it using AdvancedGridItemRenderer, thought the symptoms are slightly different: http://www.adobe.com/2006/mxml"; creationComplete="cc()" layout="hor

[flexcoders] Re: DataGrid not releasing memory on removeAll()

2009-06-08 Thread Dharmendra Chauhan
Hi Adrian Williams Thanks for the reply. I have tried your trick but I could not get it working as expected. Here is the code which I tried in my custom dataGrid:_ arrayCollection.revmoveAll(); for(var key:String in freeItemRenderersTable){ delete freeItemRenderersTable[key];

Re: [flexcoders] Re: minorticks and grid lines for charts

2009-06-08 Thread thomas parquier
You may have also to set dataUnits to "hours". thomas --- http://www.web-attitude.fr/ msn : thomas.parqu...@web-attitude.fr softphone : sip:webattit...@ekiga.net téléphone portable : +33601 822 056 2009/6/8 netdeep > > > > Here's what I tried, but it doesn't work: > > var hAxis:DateTimeAxis =

[flexcoders] Re: Create a naming convention to define multi-level list

2009-06-08 Thread Amy
--- In flexcoders@yahoogroups.com, "fumeng5" wrote: > > Hi, > > I have to devise an ID naming system that'll support lists that are 4-levels > deep. At any one time, I need to know at what level an element is. I have it > up to 3-levels but don't know how to do a 4th. In fact, it's starting to

Re: [flexcoders] communicate between air app and browser?

2009-06-08 Thread Rick Winscot
There is a grundle of information in the Flex 3 Cookbook by O¹Reilly. http://digitalmedia.oreilly.com/helpcenter/flex3cookbook/chapter20.html Depending on your implementation ­ you might be able to use cookies, SharedObject, web services, BlazeDS, or... there are quite a few options. As far as

[flexcoders] Re: DataGrid with double header

2009-06-08 Thread mhbmarcos
Thanks grg_blls. But now, not compilet the source: AdvancedDataGrid not found and, i find in internet, but see datavisualization, and can´t find the download place any solution for this? thanks --- In flexcoders@yahoogroups.com, "grg_blls" wrote: > > You should be using Advanced DataGrid wi

[flexcoders] communicate between air app and browser?

2009-06-08 Thread luvfotography
What's the best way to communicate between a flex app in a browser and an air app?? local connection? If the Air app isn't running, can you start it from the browser somehow? thanks,

RE: [flexcoders] Re: Is SDK 3.4.0 a stable release?

2009-06-08 Thread Alex Harui
It may not be official until Aug or Sept. Alex Harui Flex SDK Developer Adobe Systems Inc. Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of tntomek Sent: Monday, June 08, 2009 8:48 AM To: flexcoders@yahoo

RE: [flexcoders] Grab the Current State of a Button

2009-06-08 Thread Ryan Graham
Set toggle to true on the buttons and then you can check the selected property. btn.toggle = true; trace(btn.selected); HTH, Ryan From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of ericmaslowski Sent: Monday, June 08, 2009 9:58 AM To: flexcoders@yahoog

[flexcoders] Re: Grab the Current State of a Button

2009-06-08 Thread Tim Hoff
For a ToggleButton, look at the selected property: if ( myButton.selected ) { // my state is down } -TH --- In flexcoders@yahoogroups.com, "ericmaslowski" wrote: > > Hello, > I have been trying to do something very simple here with Flex but have hit a wall. I have several toggle buttons

[flexcoders] Grab the Current State of a Button

2009-06-08 Thread ericmaslowski
Hello, I have been trying to do something very simple here with Flex but have hit a wall. I have several toggle buttons throughout the UI that when one is activated others change their states depending on the states of others. So, if button one is pressed button 1 looks at what other buttons a

[flexcoders] Re: ArrayCollection to Delimited String

2009-06-08 Thread Tim Hoff
Good point. I suppose that you could throw in some regex to strip that character out of the objects before concatenating. It's an edge case though. Pipe delimited strings are common in legacy systems; due to the rare usage of a pipe in text. -TH --- In flexcoders@yahoogroups.com, Johannes Nel

[flexcoders] Re: Is SDK 3.4.0 a stable release?

2009-06-08 Thread tntomek
--- In flexcoders@yahoogroups.com, Alex Harui wrote: > > 3.4 is also a pre-release and not an official release > > Alex Harui > Flex SDK Developer > Adobe Systems Inc. > Blog: http://blogs.adobe.com/aharui > > From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups

[flexcoders] Re: ADG/DataGrid cell change performance on large data set

2009-06-08 Thread tntomek
--- In flexcoders@yahoogroups.com, "tntomek" wrote: > > > When I edit a cell and press Tab to move horizontally to the next cell in the > same row the grid behaves wonderfully. If however, I make my next selection > to another row this becomes incredibly slow (10-15 seconds). Is there any > re

Re: [flexcoders] Re: ArrayCollection to Delimited String

2009-06-08 Thread Johannes Nel
if this has to be imported somewhere else you need to consider, what happens if your delimiter is in a piece of text? On Sun, Jun 7, 2009 at 2:25 PM, Angelo Anolin wrote: > > > Hi Tim, > > Thanks for the tip(s). Was able to make this thing work out. > > Regards, > > Angelo > > ---

[flexcoders] Re: DataGrid with double header

2009-06-08 Thread grg_blls
You should be using Advanced DataGrid with Grouped Columns. George --- In flexcoders@yahoogroups.com, "mhbmarcos" wrote: > > hi!!! > i need have a datagrid with double header > eg: > > header1 |header2 > subHeader1 | subHeader2 | subHeader3 | subHeader4 > > d

[flexcoders] Resume for Flex developer [Anyone looking for developer] [1 Attachment]

2009-06-08 Thread Sajid Hussain
Dear Friends , I am Sajid Hussain Web/Flex Architect Rich Internet Applications ,I have around 5 years experience in purely Flash Development and its integration with server side languages like Java,Ms.Net and PHP. In such long time I have done many rich internet applications for web and desktop ,

[flexcoders] Create a naming convention to define multi-level list

2009-06-08 Thread fumeng5
Hi, I have to devise an ID naming system that'll support lists that are 4-levels deep. At any one time, I need to know at what level an element is. I have it up to 3-levels but don't know how to do a 4th. In fact, it's starting to look like a mess to me and I think I'm overcomplicating it. He

[flexcoders] Re: Flex and .NET

2009-06-08 Thread Mark Piller
"with large datasets, we see a lag in the transport time over our web service. For example, we have a data set that returns 5000 rows of 125 columns of data...our T-SQL stored proc generates the data set in 6 seconds or less but then it still takes anywhere from 45s to 1.5m to transport that da

[flexcoders] DataGrid with double header

2009-06-08 Thread mhbmarcos
hi!!! i need have a datagrid with double header eg: header1 |header2 subHeader1 | subHeader2 | subHeader3 | subHeader4 do you have any example or workaround? thanks

[flexcoders] Re: minorticks and grid lines for charts

2009-06-08 Thread netdeep
Here's what I tried, but it doesn't work: var hAxis:DateTimeAxis = new DateTimeAxis(); hAxis.displayLocalTime = true;); hAxis.labelUnits = "hours" hAxis.dataInterval = 1; hAxis.minorTic

Re: [flexcoders] Re: DataGrid not releasing memory on removeAll()

2009-06-08 Thread Adrian Williams
Hi there, We had a similar problem albeit with the AdvancedDataGrid...it wouldn't release the custom renderers even after we told it to...in the end, we had to write a custom script that would track our renderers and when we wanted to GC things, we had to call the script to release the ren

RE: [flexcoders] Re: HTTPService.send(params) and nothing happens?

2009-06-08 Thread Tracy Spratt
"Submit" is an html word and does not apply to Flex. In Flex you can POST or GET, and you can receive data back in the response. You can't load an html page with HTTPService. I am still unclear what you goal is, perhaps you can explain again, without using html words like form and submit?

Re: [flexcoders] Flex and .NET

2009-06-08 Thread Adrian Williams
Hi there... We have a rather large RIA using C#.Net as the backend...and we have a large number of arrayCollections and dataGrids/advancedDataGrids We don't massage any of the data that we are passing with our web services...we literally pass as as it's created...i.e. as an Array or

RE: [flexcoders] Flex and .NET

2009-06-08 Thread Tracy Spratt
Flex and dot.net will exchange xml just fine. With HTTPService, I typically send the xml back and forth as strings, but with webservices, I let .net generate the SOAP, which I consume in Flex without problem. The way I handle update is this: when a Flex control updates some local data, I set

[flexcoders] ARM's Director of Mobile Computing confirms Flash on ARM

2009-06-08 Thread Tom Chiverton
See http://techvideoblog.com/computex/arm-director-of-mobile-computing-about-arm-laptops-with-android-and-ubuntu/ around 5.35. Their talking about latest Flash 10 support. "End of this year" for release, including a chunk of work on the open sourced Tamarin ActionScript engine. The notebook h

Re: [flexcoders] Pushing the Framework RSL to Site Visitors in advance.

2009-06-08 Thread Tom Chiverton
On Wednesday 03 Jun 2009, Pedro Sena wrote: > The invisible swf that would preload the RSL while a html page show some > content that the user would read, that way the swf would be 'transparently' > loaded. A 1x1 pixel .swf that doesn't do much accept have a low frame rate, maybe in a hidden IFRA