[flexcoders] Re: How to configure BlazeDS to use Spring?

2008-01-19 Thread bouiaw
You should read the documentation I wrote on the Igenko wiki : http://code.google.com/p/igenko/wiki/FlexDataServices --- In flexcoders@yahoogroups.com, vkc_nair [EMAIL PROTECTED] wrote: Hi all, Could you please provide an example on how to configure blazeds with spring? Thanks VN

[flexcoders] Re: E4X Namespace Issues...

2008-01-19 Thread fourctv
Then what you need is: private var ns:Namespace = new Namespace(http://...;); default xml namespace ns; use namespace applies to AS3's namespace, has nothing to do with XML. see: http://livedocs.adobe.com/flex/201/langref/statements.html for a clear description of: namespace, use namespace

[flexcoders] Re: Login Problem

2008-01-19 Thread simonjpalmer
if your username is [EMAIL PROTECTED] then the welcome message will say Welcome to the app [EMAIL PROTECTED] which is somewhat impersonal. If there are first and last name properties of the user then it may be friendlier to use those, not to mention it then serves as a visual cue that the

[flexcoders] how to get image real/natural size?

2008-01-19 Thread v.cekvenich
I am making an image from string url of the image name. How would I find it's real/natural image size? .V

[flexcoders] Re: Border Thickness On ComboBox?

2008-01-19 Thread rueter007
Ok, I was wrong. Setting the borderStyle and borderThickness on the combo box does not do anything. Instead, I set a custom skin on the combobox and it works. border-style: solid; border-color: #00ff00; border-thickness: 5; down-skin: ClassReference('ComboBoxSkin'); over-skin:

RE: [flexcoders] Flare For Flex

2008-01-19 Thread Kevin Aebig
Just what I needed to hear. Thanks! !k _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Maciek Sakrejda Sent: Friday, January 18, 2008 12:51 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flare For Flex Hi Kevin, I've gotten flare to work

[flexcoders] Flex Builder 3 Beta 3 download is unavailable?

2008-01-19 Thread m.pengi
The link to flex builder 3 beta 3 at http://labs.adobe.com/technologies/flex/flexbuilder3/ has been 'temporarily unavailable' since I started checking it a day ago. How long has that been going on? Is there another url where beta 3 can be downloaded?

Re: [flexcoders] how to get image real/natural size?

2008-01-19 Thread Sherif Abdou
wouldn't that be the unscaledHeight, and unscaledWidth, so img.unscaledHeight - Original Message From: v.cekvenich [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, January 19, 2008 10:18:25 AM Subject: [flexcoders] how to get image real/natural size? I am making an

[flexcoders] Multiple chartelements as annotationElements [CHART]

2008-01-19 Thread Claude Hussenet
If I have 2 chartelements added as annotation element in my cartesian chart,only the callback function specific to the second chartelemet are executed.It seems that the second chartelement override the registration of the events of the first one. Both chartelements work without any issue if I

[flexcoders] Re: Masked Text Input

2008-01-19 Thread aceoohay
Try; http://weblogs.macromedia.com/flexteam/archives/2006/11/component_maske.\ cfm http://weblogs.macromedia.com/flexteam/archives/2006/11/component_maske\ .cfm --- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: link doesnt work either - Original Message

[flexcoders] May I click a button to ScrollDown in TileList

2008-01-19 Thread flexawesome
Hi there, I am using TileList to build my simple application, is there a way to click a button to scroll down in TileList component? I would like to set vercitalScrollPolicy=off and then add a new button on the stage, user can click the button to scroll down in TileList. Thanks

[flexcoders] Getting a StackTrace from Tomcat for LCDS web app

2008-01-19 Thread Kevin
Does anyone know how to get a stack trace on a Mac running LCDS in Tomcat? I can't for the life of me figure out how to do it. I have tried, crtl-\. jstack kill, but they don't seem to do anything. I have also tried (http://www.adaptj.com/main/download). I think part of the problem is

RE: [flexcoders] how to get image real/natural size?

2008-01-19 Thread Alex Harui
Assuming it is in the same security domain, you can use content.loaderInfo.width/height after the complete event like this: mx:SWFLoader id=ldr source=wooddesk.jpg complete=trace(ldr.content.loaderInfo.width, ldr.content.loaderInfo.height) / From:

[flexcoders] Re: Multiple chartelements as annotationElements [CHART] [SOLVED]

2008-01-19 Thread Claude Hussenet
Instead of creating a transparent square to insure that events are triggered within a chartelement as implemented in this sample (http://demo.quietlyscheming.com/ChartSampler/srcview/index.html) ,I registered the events on this.chart . Claude Hussenet --- In flexcoders@yahoogroups.com, Claude

RE: [flexcoders] Flex Builder 3 Beta 3 download is unavailable?

2008-01-19 Thread Matt Chotin
Yes, we've been having some trouble with adobe.com. we're hoping everything will be up soon. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of m.pengi Sent: Saturday, January 19, 2008 9:18 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Flex Builder 3 Beta 3

[flexcoders] Populating DataGrid

2008-01-19 Thread CK
Hi all, The following shorter code renders the dataGrid, but without data. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute creationComplete=dvdData.send() mx:Script ![CDATA[ import mx.rpc.events.*;

[flexcoders] flex 3 cairngorm

2008-01-19 Thread hworke
Hello, which version of Cairngorm workes with Flex 3, the final beta version? Regards,

RE: [flexcoders] Populating DataGrid

2008-01-19 Thread Clint Tredway
Try this: Import mx.utils.ObjectUtil And then trace out the result to make sure you are getting something back by doing this trace(ObjectUtil.toString(evt.result)) Clint Tredway Cynergy Systems | Consultant 706 7th St SE, Washington DC, 20003 W. http://www.cynergysystems.com E. [EMAIL

Re: [flexcoders] Populating DataGrid

2008-01-19 Thread CK
Hi, Yes using e4x, however evt.result.dvd, did not populate the grid. Chris On Jan 19, 2008, at 1:08 PM, Sherif Abdou wrote: evt.result.dvd instead, ur using e4x correct? - Original Message From: CK [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, January 19,

Re: [flexcoders] Populating DataGrid

2008-01-19 Thread Sherif Abdou
this works evt.result.dvd.* - Original Message From: CK [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, January 19, 2008 3:21:25 PM Subject: Re: [flexcoders] Populating DataGrid Hi, Yes using e4x, however evt.result.dvd, did not populate the grid. Chris On Jan 19,

Re: [flexcoders] Populating DataGrid

2008-01-19 Thread CK
Hi, An unterminated element in the XML. Thanks. Chris On Jan 19, 2008, at 1:19 PM, Clint Tredway wrote: Try this: Import mx.utils.ObjectUtil And then trace out the result to make sure you are getting something back by doing this trace(ObjectUtil.toString(evt.result)) Clint

Re: [flexcoders] Populating DataGrid

2008-01-19 Thread Sherif Abdou
and i Noticed that ur xml is not formed well, have no idea if that is just formatting error from the email or what here is one of them genreCrime/ Dramagenre it should be genreCrime Drama/genre - Original Message From: CK [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent:

Re: [flexcoders] Populating DataGrid

2008-01-19 Thread CK
Hi, That was the problem. Many thanks! CK On Jan 19, 2008, at 1:45 PM, Sherif Abdou wrote: and i Noticed that ur xml is not formed well, have no idea if that is just formatting error from the email or what here is one of them genreCrime/ Dramagenre it should be genreCrime

RE: [flexcoders] How to change the text in datagrid ?

2008-01-19 Thread Randy Martin
You could just do the work in your SQL select statement: select (case when status = 1 then 'open' else 'close' end) as acctStatus from ~randy _ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tracy Spratt Sent: Friday, January 18,

[flexcoders] Sorting DataGrid Header Text

2008-01-19 Thread CK
Hi, Now I've the test data displayed, how does one go about setting the default header order? So when the grid is first rendered it sorts: Title Actors Directors Genre Plot Rating

[flexcoders] Re: Get fields from dataProvider

2008-01-19 Thread markgoldin_2000
var oneRow:Object = ObjectUtil.getClassInfo (gridObj.dataProvider.getItemAt(0)); does return an object but it does not have a list of fields names. --- In flexcoders@yahoogroups.com, Alex Harui [EMAIL PROTECTED] wrote: getClassInfo(gridObj.dataProvider.getItmeAt(0) should return that list.

Re: [flexcoders] Sorting DataGrid Header Text

2008-01-19 Thread Sherif Abdou
use the sort class on the arrayCollection - Original Message From: CK [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Saturday, January 19, 2008 4:27:43 PM Subject: [flexcoders] Sorting DataGrid Header Text Hi, Now I've the test data displayed, how does one go about setting the

Re: [flexcoders] Sorting DataGrid Header Text

2008-01-19 Thread Sherif Abdou
kinda like this var a:ArrayCollection = new ArrayCollection(); var field:SortField = new SortField(/*place how u wnat the sort*/) var sort:Sort = new Sort(); sort.fields=field; a.sort=//ur stuff a.refresh(); - Original Message From: CK [EMAIL PROTECTED] To: flexcoders@yahoogroups.com

RE: [flexcoders] flex 3 cairngorm

2008-01-19 Thread Jim Hayes
That version has worked fine for me across all the flex 3 betas with no trouble or attention whatsoever. I think they might have pulled it out of beta and put a release tag on it quite recently, but checking the labs page should tell you that. Best of luck with it (I'm a fan, myself).

RE: [flexcoders] flex 3 cairngorm

2008-01-19 Thread Jim Hayes
Apologies everybody, my answer was confusing. I was referring to the last beta version of Cairngorm ( 2.2.1 Beta). It is indeed now released and the current download on the cairngorm labs page. It seems to be working fine for me in the current (final) flex 3 beta. -Original Message-

[flexcoders] adobe.com issues

2008-01-19 Thread Matt Chotin
Latest update I've seen is that many of the apps like the Wish Form, some of Livedocs, trial downloads (which includes FB3 beta), and the Fusetalk forums won't be back up until tomorrow sometime. Sorry for the inconvenience, apparently we had a pretty big database failure which is still being

[flexcoders] Re: May I click a button to ScrollDown in TileList

2008-01-19 Thread flexawesome
Any suggestions? Cheers --- In flexcoders@yahoogroups.com, flexawesome [EMAIL PROTECTED] wrote: Hi there, I am using TileList to build my simple application, is there a way to click a button to scroll down in TileList component? I would like to set vercitalScrollPolicy=off and then

[flexcoders] Update ArrayCollection from PopUp TitleWindow

2008-01-19 Thread jmfillman
I've found it amazingly easy to add an item to an ArrayCollection from a PopUp window: var newItem:Object = {date: myDate.id, height: myHeight, subject: mySubject.text, notes: myNotes.text}; mainApp.myAC.addItem(newItem); However, when it comes to updating that item from a PopUp, it appears

Re: [flexcoders] Update ArrayCollection from PopUp TitleWindow

2008-01-19 Thread Sherif Abdou
mainApp.myAC. updateItem( ) where are you getting the updateItem() method from? there is no updateItem() method in the collection, best stradgey for this i would think is so just use the setItemAt() and getItemAt(); m.setItemAt(newItem,m.getItemAt(oldItem)) - Original Message From:

RE: [flexcoders] Re: May I click a button to ScrollDown in TileList

2008-01-19 Thread Alex Harui
You should be able to set the tilelist's verticalScrollPosition from your button's click handler. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of flexawesome Sent: Saturday, January 19, 2008 5:24 PM To: flexcoders@yahoogroups.com Subject:

[flexcoders] Re: Update ArrayCollection from PopUp TitleWindow

2008-01-19 Thread jmfillman
I'm a little dyslexic :-), I meant itemUpdated() --- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote: mainApp.myAC. updateItem( ) where are you getting the updateItem() method from? there is no updateItem() method in the collection, best stradgey for this i would think

RE: [flexcoders] adobe.com issues

2008-01-19 Thread Dale Fraser
Right, Or they are changing over for the release. Wishful thinking? Regards Dale Fraser From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: Sunday, 20 January 2008 12:06 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] adobe.com issues

[flexcoders] Re: Update ArrayCollection from PopUp TitleWindow

2008-01-19 Thread jmfillman
setItemAt and getItemAt work in the main application, but not from the PopUp window. From the PopUp, Cannot access a property or method of a null object reference. Seems only addItem() works from the PopUp. --- In flexcoders@yahoogroups.com, Sherif Abdou [EMAIL PROTECTED] wrote:

Re: [flexcoders] Re: addchild

2008-01-19 Thread [EMAIL PROTECTED]
Now I'm really confused. How do I make a ball using standard Flex components ? Everything I've seen uses a sprite. Where can I find complete Flex examples that use standard Flex components ? Gordon Smith wrote: Built in to the Flash Player are low-level flash.* classes such as Sprite.

[flexcoders] HorizontalList questions

2008-01-19 Thread Dmitri Girski
Hi, I've a couple of question about the HorizontalList component: 1. is there any event which is dispatched when component adds horizontal scrollbar to the display? (horizontalScrollPolicy=auto) 2. How to tell horizontalList to display only full items in the list? I've got custom item renderers

RE: [flexcoders] Re: Update ArrayCollection from PopUp TitleWindow

2008-01-19 Thread Alex Harui
It is really a matter of determining when those values get set. You might be using them before they are defined. Post some of your code. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of jmfillman Sent: Saturday, January 19, 2008 9:08 PM

RE: [flexcoders] flex 3 cairngorm

2008-01-19 Thread tim
I've been using 2.2.1 with beta 3. No problems (apart from my code) so far. Apologies everybody, my answer was confusing. I was referring to the last beta version of Cairngorm ( 2.2.1 Beta). It is indeed now released and the current download on the cairngorm labs page. It seems to be

Re: [flexcoders] Re: Login Problem

2008-01-19 Thread tim
Well the suggestion was just a quick one using binding. The other way if you wanted to format the string would be to use the change event on the text field to trigger a function. So this (again I haven't got FlexBuilder here, so treat this as pseudocode) mx:Script [CDATA] (Does CDATA look