[flexcoders] Re: DataGrid Column Sort Prevents Drag From Updating DataProvider

2009-04-07 Thread chris.cobb40
Hi Alex Thanks for that - I understand what you meant in your reply to the other guy now - just me being slow. I will give it a try. Chris --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: A collection is either sorted or not, and if there is a sort, it won't let you

[flexcoders] How to catch Error 302 from RemoteObject?

2009-04-07 Thread Dan
Hi dear flexpert, This may be a simple question, but after searching through flex doc and this forum, i still cannot figure out how can I, for instance, catch an session timeout exception from SSO such as Siteminder, when I invoke a RemoteObject call? The Siteminder is set so that it will sent

[flexcoders] Re: DataGrid Column Sort Prevents Drag From Updating DataProvider

2009-04-07 Thread chris.cobb40
Hi Alex I gave it a try and I can see what you are getting at but I would be grateful for a bit more help. What I want to do is to - 1. Make copy of the XMLListCollection dataprovider in an array by using toArray(); 2. Remove the sort for XMLListCollection dataprovider. 3. Copy the data

[flexcoders] Advanced datagrid vs Remote object

2009-04-07 Thread senthilkumarirtt
hi i want to call two function in java via remote object from flex when advanced datagrid row selected. also want to know about , give the priority to which function call at first and then next

Re: [flexcoders] Vidoe Tutorials Needed

2009-04-07 Thread Brad Bueche
You can also try lynda.com. They have excellent video's. They even have Joey Lott teaching ActionScript 3.0 (and not framework specific at that!). They have about 50 hours of flex traning alone. They also have Flash CS4 (CS3 and older) training. Dreamweaver training. ColdFusion 8 training.

[flexcoders] Re: Access active column header (DataGrid)

2009-04-07 Thread vitaly.nikolenko
yes, but there's no updateDisplayList in parent DataGridItemRenderer class Which else method can i override to draw graphics and use valid with and height? --- In flexcoders@yahoogroups.com, valdhor valdhorli...@... wrote: As I understand it, there is no backgroundColor style. What I did was

[flexcoders] send request

2009-04-07 Thread btc132
Hello all I want send a request from a text table to a other web and send a request to click Search button of the web. i done private function send_request():void{ // Create a requestthat sends data to the http://thesaurus.reference.com/ page var

[flexcoders] Article on QA and Testing

2009-04-07 Thread p_shedikare
Hi All, I suggest you all to read this article by Anjan Kumar Sudhir Patnaik on Metrics ~ A Tool to Improve Quality. Please use the link below: http://qaguild.com/weekly_article.php?id=50 Kind Regards, Prashanth

[flexcoders] FAQ model

2009-04-07 Thread christophe_jacquelin
Hello, I am searching an original model in Flex for doing the FAQ of my website. Thank you, christophe,

[flexcoders] Re: Problems opening window from AIR system tray app

2009-04-07 Thread michob
I can't easily grab it right now, but it was basically a similar exception in UIComponent but to do with styles instead of the LayoutManager. I managed to achieve what I wanted by changing my base file to an mxml implementing a WindowedApplication and setting its visibility to false. I'd

[flexcoders] Re: Access active column header (DataGrid)

2009-04-07 Thread valdhor
I don't understand what you mean. I extended the Text class for my ItemRenderer. Here is my item renderer class: package renderers { import mx.controls.*; import mx.controls.dataGridClasses.DataGridListData; import mx.utils.StringUtil; import flash.display.Graphics;

[flexcoders] Get Variables from Popup

2009-04-07 Thread christophe_jacquelin
Hello, I have a main.mxml file and some Popup.mxml files. I want to known the values of variables that are choosen in the popup when I am in the main.xml file. How to get the popup variables values ? Thank you, Christophe,

Re: [flexcoders] Pros and Cons of Writing Air UI's in Pure Flash

2009-04-07 Thread Scott Delap
I don't disagree. I have the same personal sentiment. I hate walling a major portion of our UI off just for the sake of iteration speed. I've tried backporting the Flex4 compiler items but they didn't really help. I also can't seem to find a magic bullet in regards to the compiler.

[flexcoders] Re: resolved...Bar Chart Label - probably easy for most to resolve!!

2009-04-07 Thread flexnewbie06
Thank you... Script: public function setLabel(cat:Object, pcat:Object, ax:CategoryAxis, catItem:Object):String { var label:String; label = catItem.displayName.toString(); return label; }; mxml: mx:verticalAxis mx:CategoryAxis categoryField=ip

[flexcoders] Re: When is Gumbo expiration date?

2009-04-07 Thread rlenoel
Hi, the computer date tip does work. But I don't really understand why this alpha version has an expiration date. Was it planned to release the beta version before the March 31st deadline ? And what about bug reports if nobody can test it anymore ? I tried to reactivate the Gumbo builder with

[flexcoders] Re: maven compile flex project

2009-04-07 Thread vvandens
By the way Ivan, sorry for having missed your name... I can't figure out where Jonas comes from...

RE: [flexcoders] select non-top level items in a hierarchical menu

2009-04-07 Thread Maciek Sakrejda
Right, but that click does *not* cascade through parent menus--this is the problem. If I have a hierarchy, I can only use this trick on the top-most menu unless I add handlers to all menus in the chain, and I'm not sure how to find these a priori... -Maciek -Original Message- From:

RE: [flexcoders] Re: DataGrid Column Sort Prevents Drag From Updating DataProvider

2009-04-07 Thread Alex Harui
It occurs to me that this might be easier and faster if you convert the XML to class instances and only go back to XML at the last minute. Try doing that. Alex Harui Flex SDK Developer Adobe Systems Inc.http://www.adobe.com/ Blog: http://blogs.adobe.com/aharui From: flexcoders@yahoogroups.com

[flexcoders] Cancelling service requests?

2009-04-07 Thread djepyon
How can this be done? I need to be able to cancel an initial service request if a secondary is made. I've tried using the disconnect() and stop() functions on my web service but nothing seems to work. I've resorted to throwing away stale responses but this isn't a load friendly solution.

RE: [flexcoders] Get Variables from Popup

2009-04-07 Thread Tracy Spratt
There are several ways to do this. I typically expose the values I want in public properties of the popup, then dispatch a named event on close, and access the public values in the handler. If you want to get the values before closing, dispatch events when they are set. You can also

RE: [flexcoders] Advanced datagrid vs Remote object

2009-04-07 Thread Tracy Spratt
Call your RO method from a dataGrid change handler. Use AsyncToken to identify the call. I usually just set a string property, like called = 'firstcall'. There are other options. In the resultHandler, get the AsyncToken from the event, and get the value of callid. Use switch() to

RE: [flexcoders] How to catch Error 302 from RemoteObject?

2009-04-07 Thread Tracy Spratt
A fault handler? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Dan Sent: Tuesday, April 07, 2009 3:58 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] How to catch Error 302

[flexcoders] Re: Get Variables from Popup

2009-04-07 Thread Tim Hoff
Hi Christophe, Using events to communicate, and pass data, from the popup to the application is regarded as the most loosly coupled method. If you choose not to add event listeners to the popup directly, you'll have to listen for the events by adding listeners to

[flexcoders] Re: DataGrid Column Sort Prevents Drag From Updating DataProvider

2009-04-07 Thread chris.cobb40
I'm sorry I don't understand what you mean by that - could you explain a bit more please. Sorry for being thick and thanks again. Chris --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: It occurs to me that this might be easier and faster if you convert the XML to class

RE: [flexcoders] Re: DataGrid Column Sort Prevents Drag From Updating DataProvider

2009-04-07 Thread Alex Harui
For some XML: people person firstNameAlex/firstName lastNameHaruie/lastName /person ... It would be faster to have a class: Class Person { Public var firstName:String;

[flexcoders] Is it possible to include a .as file in actionscript within a function?

2009-04-07 Thread sailorsea21
Hi everyone, is it possible to include an .as file in actionscript within a function but not have the included .as be restricted within the function? private function loaded():void { include axis.as; } Above, the include file will only apply to the function. How can I include a file to

[flexcoders] clear concise article/tutorial on setting up CFC project in Flex Builder?

2009-04-07 Thread dmkramerica
I have full admin priv to CF, and the entire server for that matter, and Gassner's articles on lynda.com only describe setting up Cold Fusion projects in a local environment - which is like super rare in reality. The other information I find seems inconsistent and sometimes contrary so

[flexcoders] Re: DataGrid Column Sort Prevents Drag From Updating DataProvider

2009-04-07 Thread chris.cobb40
I'm with you now - sorry again for being slow. I will give it a try. Thanks again for all your help. Chris --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: For some XML: people person firstNameAlex/firstName

[flexcoders] Re: clear concise article/tutorial on setting up CFC project in Flex Builder?

2009-04-07 Thread valdhor
Have you looked at http://flexcf.com/tutorials ? --- In flexcoders@yahoogroups.com, dmkramerica kramer.da...@... wrote: I have full admin priv to CF, and the entire server for that matter, and Gassner's articles on lynda.com only describe setting up Cold Fusion projects in a local

RE: [flexcoders] Is it possible to include a .as file in actionscript within a function?

2009-04-07 Thread Battershall, Jeff
What problem are you trying to solve by taking this approach? Code re-use? Wny not write a class you can instantiate wherever you want? Jeff -Original Message- From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of sailorsea21 Sent: Tuesday, April 07, 2009

Re: [flexcoders] Is it possible to include a .as file in actionscript within a function?

2009-04-07 Thread - -
If my class creates a graph with a dropdown menu, how can I add it as a child to a component on my MXML module? From: Battershall, Jeff jeff.battersh...@dowjones.com To: flexcoders@yahoogroups.com Sent: Tuesday, April 7, 2009 1:24:50 PM Subject: RE:

[flexcoders] Freelance / Contract Jobs

2009-04-07 Thread Kyle
Does anyone have any good resources for finding Freelance / Contract work in Flex/Flash/Actionscript Development? Thanks! -Kyle

Re: [flexcoders] Freelance / Contract Jobs

2009-04-07 Thread Brad Bueche
You can also try www.riajobs.org. Linkedin has a flexcoders group that is always posting job ops. There is also www.searchcoders.com/jobs brad On Tue, Apr 7, 2009 at 1:57 PM, Kyle ktya...@gmail.com wrote: Does anyone have any good resources for finding Freelance / Contract work in

Re: [flexcoders] Re: When is Gumbo expiration date?

2009-04-07 Thread Matt Chotin
I think we may have originally thought we'd have a beta out earlier, but things change. Trust me, we're not getting that many bug reports from folks, remember that it was only available to folks who attended MAX. Beta is likely to be in June. Matt On 4/7/09 7:26 AM, rlenoel

[flexcoders] Re: Freelance / Contract Jobs

2009-04-07 Thread Kyle
Thanks for the input guys. I actually started the local Adobe Flash users group in San Diego where I live about a year and a half ago, so I've already been using that as a resource. --- In flexcoders@yahoogroups.com, Jeffry Houser j...@... wrote: Other than the Flex Jobs group which

Re: [flexcoders] clear concise article/tutorial on setting up CFC project in Flex Builder?

2009-04-07 Thread Jeffry Houser
dmkramerica wrote: I have full admin priv to CF, and the entire server for that matter, and Gassner's articles on lynda.com only describe setting up Cold Fusion projects in a local environment - which is like super rare in reality. Really, I've done every project that way; with a local

Re: [flexcoders] Freelance / Contract Jobs

2009-04-07 Thread Maciek Sakrejda
http://tech.groups.yahoo.com/group/flexjobs/ -Original Message- From: Kyle ktya...@gmail.com Reply-to: flexcoders@yahoogroups.com To: flexcoders@yahoogroups.com Subject: [flexcoders] Freelance / Contract Jobs Date: Tue, 07 Apr 2009 17:57:26 - Does anyone have any good resources for

Re: [flexcoders] Is it possible to include a .as file in actionscript within a function?

2009-04-07 Thread - -
Thanks Jeff!   From: Battershall, Jeff jeff.battersh...@dowjones.com To: flexcoders@yahoogroups.com Sent: Tuesday, April 7, 2009 2:24:27 PM Subject: RE: [flexcoders] Is it possible to include a .as file in actionscript within a function? var myObj:MyClass =

Re: [flexcoders] Freelance / Contract Jobs

2009-04-07 Thread Jeffry Houser
Other than the Flex Jobs group which someone else pointed to, you can also try networking at your local user group and/or other local groups such as your local chamber of commerce. You can also register at www.flex.org as a consultant, although I find most of the requests I get coming from

Re: [flexcoders] clear concise article/tutorial on setting up CFC project in Flex Builder?

2009-04-07 Thread Brad Bueche
These are what enabled me to make the leap. NOT using the wizard. Valdhor turned me on to these: http://flexcf.com/tutorials This if from Tariq Ahmed: I've collected various CF+Flex articles here: http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=FileobjectID=618 And Dan Vegas

Re: [flexcoders] Re: clear concise article/tutorial on setting up CFC project in Flex Builder?

2009-04-07 Thread David Kramer
I will check it out. Thanks. - Original Message - From: valdhor To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: clear concise article/tutorial on setting up CFC project in Flex Builder? Date: Tue, 07 Apr 2009 17:19:33 - Have you looked at

RE: [flexcoders] Is it possible to include a .as file in actionscript within a function?

2009-04-07 Thread Battershall, Jeff
var myObj:MyClass = new MyClass(); addChild(myObj); -Original Message- From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of - - Sent: Tuesday, April 07, 2009 1:49 PM To: flexcoders@yahoogroups.com Subject: Re:

[flexcoders] Image Control - BitmapData - Resize - JPEG Encoder...changes image coloring?

2009-04-07 Thread Rob Kunkle
Hi Flex Coders - I'm working on an app that does some image resizing and encoding inside of flash...i've come across a real head scratcher here. The resulting file is very similar to images that have been resized and compressed in a normal editor...say photoshop or infranview. *Except* the

[flexcoders] Re: Context Menu Bug in FlashPlayer ?

2009-04-07 Thread jmfillman
I did file a bug with Adobe. Hopefully it'll be addressed soon. Interesting that it was encountered in FlashPlayer 9. I don't recall which version of 9 I had, but I did not encounter this error until I went to FlashPlayer 10. For my application, it is critical that particular conectMenu items

[flexcoders] override commitSelectedIndex for ViewStack component

2009-04-07 Thread gwangdesign
Hi, I am sure this has been discussed somewhere by someone before. So excuse me if this is an old topic. But what I want is when the selectedIndex changes in a ViewStack component, instead of the default behavior of waiting until the current selected child completes its hideEffect to start the

[flexcoders] Combox Issue with Flex

2009-04-07 Thread myworld100us
Folks , Everyone must have seen this kind of thing working in HTML . You have two multi slect box in html and then in between the boxes you would have add, add all , remove remove all buttons which would pull and push elements from and to into the two boxes , I am struggling for weeks to

[flexcoders] HttpSession in Flex

2009-04-07 Thread myworld100us
I have a mxml file which talks to the the server . On the Server i get the user id and password and do vaidation and stuff. Some values I store from the server in session object. Http Session . So esentialy if i do session.setAttribute(userid,xxx) on the server how can i retrive in my mxml

[flexcoders] speech to text API

2009-04-07 Thread Sridhar Polisetti
Hi Does any body know is there any API for speech to text in flex or adobe?

[flexcoders] LogAxis and custom ticks

2009-04-07 Thread floriandresser
Hello. I need a chart that has a vertical LogAxis but labels in linear steps, ie the ticks get closer together as you move up the y axis. Is it possible to overwrite the AxisRenderer in this way to have it display ticks every 100 for example? Any pointers in the right direction would be much

[flexcoders] Unrecognized binding style 'null'

2009-04-07 Thread skywalkr42
Hi all, Apologies if this is a daft question, however I've searched high and low, and no-one appears to have a conclusive answer, so, here goes. In a nutshell, when attempting to use my webservice, I always get the error message Unrecognized binding style 'null'. Only 'document' and 'rpc'

[flexcoders] FLEX defaut xml parser issue with Auto Exponential conversion issue

2009-04-07 Thread Ramabhadra Reddy
cusipvalue7898778E345/cusipvalue if you see above xml tag value, that is having E char. this E is causing the issue. above value(7898778E345) displaying as Infinite When i display this value on flex grid. the reason is this value has E. so the flex parser is implecitly convertion is faling.

[flexcoders] Alert Control help

2009-04-07 Thread lehaianh1986
Hi every one. I need your help. I create an Alert like Wait to update... I show it for user when I do some work from inside. After I finish it, I want remove an Alert by code. I search and see some guide. Here is my code follow it private var msg:Alert = new Alert; private function Load():void

Re: [flexcoders] Combox Issue with Flex

2009-04-07 Thread Jeffry Houser
Just have two lists; with buttons between them. I assume you can deal with the layout. When the move left button is clicked do something like this in the click handler: list2.dataProvider.addItem(list1.dataProvider.getItemAt(list1.selectedIndex))

[flexcoders] Animated Flash Component Resizing when used as Button Skin

2009-04-07 Thread flexcoder1969
I am trying to skin the overSkin of a Flex Button component with an animated Flash .swc component. (Actually, an Accordion Header, but for all practical purposes the same.) All works completely fine, in most cases. The problem I run into is when I have any objects in the Flash animation

[flexcoders] help me - sent request to automatically search

2009-04-07 Thread btc132
Hello all I want sent a request to an other web and send a request to click Search button of the web. i done private function send_request( ):void{ var request:URLRequest = new URLRequest(http://thesaurus. reference. com/); var variables:URLVariab les = new URLVariables( ); variables.sometext =

RE: [flexcoders] override commitSelectedIndex for ViewStack component

2009-04-07 Thread Tracy Spratt
There is a component that does this quite well. It is by tink, called the PairedStackEffect, check it out first. Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of gwangdesign Sent:

RE: [flexcoders] Combox Issue with Flex

2009-04-07 Thread Tracy Spratt
Look at this example, it might get you started. http://www.cflex.net/showFileDetails.cfm?ObjectID=555 http://www.cflex.net/showFileDetails.cfm?ObjectID=555Object=FileChannelID =1 Object=FileChannelID=1 Tracy Tracy Spratt, Lariat Services, development services available _ From:

RE: [flexcoders] FLEX defaut xml parser issue with Auto Exponential conversion issue

2009-04-07 Thread Tracy Spratt
You have left the resultFormat at its default value which is object. This causes Flex to convert your xml into a tree of dynamic objects. This has many side effects, among which is attempting to guess at the data type from the content, and it often guesses wrong. Set resultFormat=e4x and get

RE: [flexcoders] help me - sent request to automatically search

2009-04-07 Thread Tracy Spratt
Does that site expose an API? Tracy Spratt, Lariat Services, development services available _ From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of btc132 Sent: Tuesday, April 07, 2009 11:17 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] help me

Re: [flexcoders] Vidoe Tutorials Needed

2009-04-07 Thread Shabir Gilkar
HI! Brad   Thank you very much dear. I hope this may help me as well and thanks for being there as good helpers. With High Regards Shabir Ahmad Gilkar --- On Tue, 7/4/09, Brad Bueche brad.bue...@gmail.com wrote: From: Brad Bueche brad.bue...@gmail.com Subject: Re: [flexcoders] Vidoe