RE: [flexcoders] Re: **JOB **Flex developer needed ASAP (Contract to hire!!).

2006-04-13 Thread Jason Hawryluk
Dave, I fully realize the potential of Flex to let you crank out an application quickly. You have a "Team" of people this is a requirement for "one" contractor. The thing that got me was the “rollout” part of the demand. I agree that when you fully understand the domain of the intended

Re: [flexcoders] Re: Question to Adobe about Flex Framework 1.5 Code Quality

2006-04-13 Thread Mykola Paliyenko
I don't think you should change working code only because it's doesn't have the perfect design, but that might just me. Of course, you can do something refactoring. You can only break ;-)LOL, With such approach Flex will remain the same crap as it is now -- Flexcoders Mailing List FAQ:

RE: [flexcoders] Do I have To Use FDS to update databases?

2006-04-13 Thread João Fernandes
You don't need FDS to update databases. Using remoteObject is enough. One of big advantages of FDS is mantaining all clients synchronized with data. João Fernandes -Original Message- From: flexcoders@yahoogroups.com on behalf of Faisal Abid Sent: Thu 13-Apr-06 1:40 AM To:

RE: [flexcoders] Clarification if Remoting is included with Flex 2.0

2006-04-13 Thread João Fernandes
Jennifer, What I think Mike wanted to know was if he needed the enterprise version of Flex to play with remoting to connect to ColdFusion server. Since he's speaking of ColdFusion, yes he will be able to use remoting with the core Flex 2 without needing the enterprise version and for the

Re: [flexcoders] Re: Question to Adobe about Flex Framework 1.5 Code Quality

2006-04-13 Thread Weyert de Boer
Mykola Paliyenko wrote: I don't think you should change working code only because it's doesn't have the perfect design, but that might just me. Of course, you can do something refactoring. You can only break ;-) LOL, With such approach Flex will remain the same crap

[flexcoders] Re: Custom dg validator

2006-04-13 Thread bhaq1972
are you using your textinput as the cell renderer ie mx:DataGridColumn columnName=rptPricesOper cellRenderer=yourTextInput/ if so, you can do add a setValue function to your textinput and as mentioned, use listOwner and getcellIndex to get the colName eg add following code to your script

[flexcoders] Re: Flex2B2 - Handling keyboard events

2006-04-13 Thread bhaq1972
Its still a problem Matt. My code is exactly the same as the example, but i'll paste here anyway. ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; initialize=initApp() mx:Script ![CDATA[ private function initApp():void

Re: [flexcoders] List dataProvider bug?

2006-04-13 Thread Oriol Gual
Thanks guys! Now it is all working okay!2006/4/13, jeremy lu [EMAIL PROTECTED]: 1. you should assign ArrayCollection instead of Array as a dataProvider to controls, cuase Array won't broadcast any event hence modelChangedHandler() inside controls will never get triggered. (btw, use this:

Re: [flexcoders] programatically assigning an ArrayCollection as the DataProvider bug...

2006-04-13 Thread Ted Patrick
Always learning... :) A type cast is NOT about changing the type at runtime. I agree but the pattern of use for casting using Class( obj ) collides directly with global functions created for type conversion. If the following methods are used to upcast an object, these can wildly change the

[flexcoders] Flex2B2 - few questions

2006-04-13 Thread bhaq1972
1) DispatchChangeEvent doesn't seem to be available is that correct? 2) private variables no longer seem to be accesible in inherited object. is that correct? eg. myBox.as package { public class myBox extends mx.containers.Box { public var string1:String=; private var

[flexcoders] How to clear date field

2006-04-13 Thread sandip_patil01
Hi All, Can anybody tell me how to clear date field. I am using , mx:DateField tag. From this user can select whatever date he want to select. Suppose if user want to leave text box empty after selecting date.i.e.blank text box. How this can be achived ? Thanks, Sandip --

RE: [flexcoders] Re: Flex2B2 - Handling keyboard events

2006-04-13 Thread Matt Horn
I am out of ideas. If someone else wants to try the example, cool. Same code, same compiler. Same player (I assume you're using the one that came with the beta as I did.) Maybe the version of IE? I am using 6.029. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL

[flexcoders] Re: Resizing a Panel

2006-04-13 Thread Peter Martin
I have tried event.updateAfterEvent() but it made no difference. I looked at the links below and the resizing is exactly what I want to achieve - how did you deal with the sluggish cursor movement? Thanks Peter. --- In flexcoders@yahoogroups.com, jeremy lu [EMAIL PROTECTED] wrote: handling

[flexcoders] Amfgateway call

2006-04-13 Thread siddiquihashim
Hi All Coders,I have implemented java filter API to log /amfgateway/* transaction timings.It appears that all the remote object requests from flash player are with the same request URI which is in the format'http://server:port/context/amfgateway'Is there a way to append additional details to

[flexcoders] Extended Visual Component Defaults in Design View

2006-04-13 Thread grae_hall
I've created a series of extended visual components for the project I'm currently working on so I've got a centralised location to adjust the appearance and methods of any component I put on the stage. So for example, I have XPanel, which extends Panel, and I've overridden commitProperties to

[flexcoders] Re: Custom dg validator

2006-04-13 Thread gault17
Thanks for the suggestion. In case anyone is interested, this is the code that worked: ?xml version=1.0 encoding=utf-8? mx:TextInput xmlns:mx=http://www.macromedia.com/2003/mxml; mx:Model id=theModel text{text}/text /mx:Model mx:Validator field=theModel.text validate=customValidate(

[flexcoders] Re: Custom dg validator

2006-04-13 Thread gault17
Andrew, I had created a custom DataGrid that overrode the setFocusedCell function. This allowed me to create my custom TextInput as the cell editor and add a listener on the cellFocusOut event. This listener populated the event object value and colName attributes. The purpose of using this

RE: [flexcoders] How to clear date field

2006-04-13 Thread Peter Martin
DateField has a text property, which you can set to an empty string. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sandip_patil01 Sent: 13 April 2006 12:21 To: flexcoders@yahoogroups.com Subject: [flexcoders] How to clear date field Hi All,

[flexcoders] F2B2 : RE: Extended Visual Component Defaults in Design View

2006-04-13 Thread grae_hall
I've cleaned it up a little - and rectified my main mistake - after reading some more documentation I've set the defaults in the constructor. I've not yet been able to figure out how to have those defaults present in the design view, yet. So, any help would be appreciated. This is my updated

RE: [flexcoders] How to clear date field

2006-04-13 Thread Carolyn Cole
I posted a question earlier to this list and the response that I got for 1.5 at least was to add a clear button next to the date field. When the clear was clicked you can set the text field like Peter suggested. It would be nice if there was an integrated way. Maybe 2.0 has a different way. At

RE: [flexcoders] How to clear date field

2006-04-13 Thread Sandip Patil
Hi,I think I am not able to clear my question.After using mx:DateField tag calender like dates coming.If user select date from that, date is showing in text box.Suppose if then user decide that he wants that text box empty he can't do that because he has selected from calender

[flexcoders] Re: Flex2B2 - Handling keyboard events

2006-04-13 Thread bhaq1972
Yes thats the version of IE i have as well. Thanks anyway. I will get back to this problem at a later date. --- In flexcoders@yahoogroups.com, Matt Horn [EMAIL PROTECTED] wrote: I am out of ideas. If someone else wants to try the example, cool. Same code, same compiler. Same player (I

Re: [flexcoders] Re: Resizing a Panel

2006-04-13 Thread jeremy lu
hi Peter, I'm using a combination of mouseDown, mouseMove and MouseUp event and also taking care of the offset when mouse clicked on the bottom right black grip. (there's a x/y delta between mouse down point and the top/left point of black grip) On 4/13/06, Peter Martin [EMAIL PROTECTED] wrote:

[flexcoders] FW: Validator and Binding problem

2006-04-13 Thread Simon Fifield
Hi, I have a form with fields whose values are bound to a ValueObject. The VO is set to a List's selectedItem when this changes. This all works fine until I add Validators for the form fields. And to make matters worse the problem seems to occasionally go away for no apparent reason.

[flexcoders] How to Store datagrid data into xml file

2006-04-13 Thread imtiyazms
Hi, This is my first mail to flex coders, Iam very new to flex i just want to save the data which is in datagrid into a xml file... may be it is silly but please respond me as early as possible Thanks imtiyaz.m.s -- Flexcoders Mailing List FAQ:

RE: [flexcoders] Re: Resizing a Panel

2006-04-13 Thread Peter Martin
Thanks. It sounds like my implementation is very similar to yours. I sorted my problem by adding setCapture(); to my mouseDown handler and releaseCapture(); to my MouseUp handler. I also put event.updateAfterEvent(); in my mouseMove event handler to be on the safe side.

[flexcoders] Re: Storing Datagrid data in XML File

2006-04-13 Thread Jeremy Rottman
Are you talking about using an xml file as a dataprovider that populates datagrid, or are you talking about an editable grid that saves to an xml file? --- In flexcoders@yahoogroups.com, MS Imtiyaz [EMAIL PROTECTED] wrote: Hi This is my first mail to flex coders, Iam very new to flex

RE: [flexcoders] Amfgateway call

2006-04-13 Thread Peter Farland
If your serlvet mapping is /amfgateway/* then you should be allowed to append path info to the endpoint URI after the servlet mapping. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of siddiquihashimSent: Thursday, April 13, 2006 4:20 AMTo:

RE: [flexcoders] Re: um, where is my session?

2006-04-13 Thread Matt Chotin
Sorry to jump in late on this, I'm not really watching the list at the moment while we try to lock down. In Beta 2 we introduced flex.messaging.FlexSession which apparently didn't make it too much into the docs. The FlexSession is tied to either the HttpSession or the RTMP connection, but

[flexcoders] Storing Datagrid data in XML File

2006-04-13 Thread MS Imtiyaz
Hi This is my first mail to flex coders,Iam very new to flex i just want to save the data which is in datagrid into a xml file... may be it is silly but please respond me as early as possibleThanks [EMAIL PROTECTED] Jiyo cricket on Yahoo! India cricket Yahoo!

Re: [flexcoders] Do I have To Use FDS to update databases?

2006-04-13 Thread Faisal Abid
Okay, Thank You So Much , Also can anyone lead me to a sample code or a tutorial on how to make this happen ? Just so i can build on that sample code and learn form it. You don't need FDS to update databases. Using remoteObject is enough. One of big advantages of FDS is mantaining all clients

Re: [flexcoders] Flex 2 on Mac OS X

2006-04-13 Thread Bolo Michelin
Nobody Can help me with flcompile ?2006/4/12, Bolo Michelin [EMAIL PROTECTED]: :) It was my fist link. I sais was problem with this point.When i test it, i have this problemLast login: Wed Apr 12 10:22:13 on ttyp1java -jar flex/lib/mxmlc.jar -load-config flex/frameworks

RE: [flexcoders] Flash 8.5 Release -- Vote of Confidence

2006-04-13 Thread Tony Pujals
Hey, this wasnt a troll! ;-) No one has any insight or opinion on this? Let me add that Im extremely pleased with beta 2 and at this point Ive pretty much made up my mind to use it for the project, but if Flash 8.5 ends up being significantly late (eg, later than July), I will probably

RE: [flexcoders] Do I have To Use FDS to update databases?

2006-04-13 Thread Mike Anderson
Actually, I would benefit from a quick tutorial like this too - I did this a ways back with Flex 1.5 and .NET Remoting - but I have to track down all my old source code. I am sure there are some differences now with Flex 2.0 as well - so I'd love a definitive example, on how to create a quick

Re: [flexcoders] Re: Resizing a Panel

2006-04-13 Thread jeremy lu
strangely, I didn't use any of those methods(setCapture, releaseCapture, updateAfterEvent) anyway, will contact you offlist for this :-) On 4/14/06, Peter Martin [EMAIL PROTECTED] wrote: Thanks. It sounds like my implementation is very similar to yours. I sorted my problem

[flexcoders] editable Datagrid + Event Listener

2006-04-13 Thread Jeremy Rottman
I am using an editable datagrid that allows admins to enter a number that is stored in my database. Since flex does have the enter attribute for the datagrid, I wrote a listener to handle the enter key for me. However, I cant figure out how to apply it to my datagrid. Can someone give me a bit of

[flexcoders] Re: How to clear date field

2006-04-13 Thread Doug Lowder
Select the same date again to clear the selection. Not intuitively obvious IMHO, but this seems to be expected behavior. --- In flexcoders@yahoogroups.com, Sandip Patil [EMAIL PROTECTED] wrote: Hi, I think I am not able to clear my question. After using mx:DateField tag

[flexcoders] Re: How to clear date field

2006-04-13 Thread Doug Lowder
The integrated way is for users to select the same date that's already selected, but a Clear button sounds more user-friendly to me. Doug --- In flexcoders@yahoogroups.com, Carolyn Cole [EMAIL PROTECTED] wrote: I posted a question earlier to this list and the response that I got for 1.5 at

RE: [flexcoders] Storing Datagrid data in XML File

2006-04-13 Thread Tracy Spratt
What Flex version? Then, where do we need to start? How far have you gotten? Tracy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of MS Imtiyaz Sent: Thursday, April 13, 2006 10:49 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Storing

RE: [flexcoders] editable Datagrid + Event Listener

2006-04-13 Thread Tracy Spratt
What Flex version? On #2, set editable=false on the non editable columns. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Jeremy Rottman Sent: Thursday, April 13, 2006 1:44 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] editable

Re: [flexcoders] Clarification if Remoting is included with Flex 2.0

2006-04-13 Thread Simeon Bateman
On 4/12/06, Mike Anderson [EMAIL PROTECTED] wrote: Do you think you could take this opportunity to explain to me, the finer differences between the 2 different Remoting flavors? Also, why I should seriously consider shelling out the money, to purchase the more robust version of the Remoting

Re: [flexcoders] Do I have To Use FDS to update databases?

2006-04-13 Thread Simeon Bateman
Mike,if you would like to see an example of this done, please feel free to tune into my breeze presentation for the BACFUG next wednesday night. I will be walking though using Flex and CF together in a Standard RPC Remoting method. Check out http://bacfug.org/ for more details.simeonOn 4/13/06,

Re: [flexcoders] Flex 2 on Mac OS X

2006-04-13 Thread Simeon Bateman
Sorry man, I use Ant inside eclipse.simeonps. Works great though :)On 4/13/06, Bolo Michelin [EMAIL PROTECTED] wrote: Nobody Can help me with flcompile ?2006/4/12, Bolo Michelin [EMAIL PROTECTED] : :) It was my fist link. I sais was problem with this point.When i test it, i have this

Re: [flexcoders] Do I have To Use FDS to update databases?

2006-04-13 Thread Faisal Abid
where is the link , it says that I have to personally attend and i live no where near that area, should I rsvp and then ill get the breeze link ?? Simeon Bateman wrote: Mike, if you would like to see an example of this done, please feel free to tune into my breeze presentation for the

[flexcoders] drag and drop components between cells in a datagrid

2006-04-13 Thread pk_wasp
Is it possible to have a DataGrid with custom item renderer components and drag/drop them between the indvidual cells using DragManager/Proxy Framework etc? or is there a better way?.e.g. a Grid, then using addChild/removeChild etc to handle this? Creating a custom grid component looks too

Re: [flexcoders] Do I have To Use FDS to update databases?

2006-04-13 Thread Faisal Abid
Also http://labs.macromedia.com/wiki/index.php/ColdFusion/Flex_Connectivity:Samples:Phone_Selector i just found that example and relized that it uses what i want to learn.. :) Simeon Bateman wrote: Mike, if you would like to see an example of this done, please feel free to tune into my

[flexcoders] Datagrid Row Spacing

2006-04-13 Thread jeffrey_lage
It seems to me that there is a 'couple pixel' spacing or gap btwn the rows of a datagrid. Can this be controlled? I would like to eliminate it. -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

RE: [flexcoders] Flex2B2 - few questions

2006-04-13 Thread Gordon Smith
1. This method has been removed. Just use dispatchEvent(). 2. Yes. Private vars can only be accessed from within the same class where they are declared. 3. I'm not clear on whether myBoxComponent is using myBox or myBox is using myBoxComponent, but I suspect what you are looking for is

RE: [flexcoders] Flex 2 on Mac OS X

2006-04-13 Thread Tobias Patton
Try replacing load-config flex/frameworks with -load-config full path to flex-config.xml You really should download the SDK and use the Mac shell scripts that do all the messy java stuff for you. Also, when you use the shell scripts you dont have to specify the framework path or

Re: [flexcoders] Clarification if Remoting is included with Flex 2.0

2006-04-13 Thread Jennifer Larkin
To clarify further, the ability to push data to the client is the messaging server that I mentioned. This is different from the existing SMS gateway in ColdFusion 7. There is a new gateway for ColdFusion that passes data between Flex Data Services and ColdFusion via a messaging system; this is

Re: [flexcoders] Do I have To Use FDS to update databases?

2006-04-13 Thread Simeon Bateman
Jen Larkin runs the BACFUG and on her blog she mentions the url for the breeze meeting wont be available until day of. Glad you found the phones example. That is the example that Ben Forta is using on his User Group tour. The BACFUG did have him stop by but the example itself doesnt use any

[flexcoders] FDS Hibernate

2006-04-13 Thread Valy Sivec
I start looking into the Data Services topics a little bit and I see that for each destination there is a identity property that needs to be defined. I have the data persistence layer implemented with Hibernate and I was wondering how Flex DES will handle objects with the identity propetry

[flexcoders] Re: **JOB **Flex developer needed ASAP (Contract to hire!!).

2006-04-13 Thread Dave Wolf
Hey Jason, I am going to try my best to inline my answers here. --- In flexcoders@yahoogroups.com, Jason Hawryluk [EMAIL PROTECTED] wrote: Dave, I fully realize the potential of Flex to let you crank out an application quickly. You have a Team of people this is a requirement for one

Re: [flexcoders] Do I have To Use FDS to update databases?

2006-04-13 Thread Jennifer Larkin
We have a location where BACFUG will be meeting (in San Francisco) but if you are not able to attend in person, we will be broadcasting the meeting via Breeze. In fact, not even Simeon will be there in person. I will be there in person giving away stuff. As Simeon mentioned, I will be posting

[flexcoders] forget Hibernate - use EJB 3.0 and Annotations in FDS

2006-04-13 Thread busitech
We have ceased using standalone Hibernate in favor of EJB 3.0. We would like to see FDS 2.0 move in this direction. XML files for defining entities are no longer needed, because this functionality is provided much better by Annotations. Hibernate also provides an API to read the

[flexcoders] get rid of xml configuration in FDS, use JNDI

2006-04-13 Thread busitech
I am evaluating FDS 2.0 for the first time, and am quite disappointed with the requirement of every single destination possible to be added to an XML file before it can be used... Adobe calls this software designed for the enterprise. However, with enterprise comes large applications, with

Re: [flexcoders] Re: **JOB **Flex developer needed ASAP (Contract to hire!!).

2006-04-13 Thread Anatole Tartakovsky
Jason, I would like to stress one point in Dave's comment that is crucial to success of RIA project. Those who been through client-server wave know that the process Dave describes is the best way to get useful application rather then just "working" one. The process starts with quick and

[flexcoders] Cairngorm and TitleWindow issue

2006-04-13 Thread Suzy Lawson
I have a screen where a user can click an item in a List which pops open a TitleWindow containing a form to update and save the data of the items clicked. When the user clicks Save...the dispatched event never reaches the FrontController (with the code like so): // MyEvent extends CairngormEvent

[flexcoders] [Flex2.0] How can I control cache of HTTPService inside FlashPlayer?

2006-04-13 Thread sn197412
Hi. I have a question. How can I control cache of HTTPService inside FlashPlayer? I get XML file that is always different contents each request. But HTTPService show content that was got at first access. How should I? --Shigeru http://Shigeru-Nakagaki.com -- Flexcoders Mailing List FAQ:

[flexcoders] Re: [Flex2.0] How can I control cache of HTTPService inside FlashPlayer?

2006-04-13 Thread Dave Wolf
Set the proper cache control headers on the server side. The player is not caching this, the browser is. The player piggy backs on the browsers HTTP stack generally. -- Dave Wolf Cynergy Systems, Inc. Macromedia Flex Alliance Partner http://www.cynergysystems.com Email: [EMAIL PROTECTED]

RE: [flexcoders] get rid of xml configuration in FDS, use JNDI

2006-04-13 Thread Kelly @ Dekayd Media Inc.
Considering how easy it is to manipulate xml files, it is really not that hard to add a step in the build process that automatically updates all your xml config files. Just a thought --Kelly -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of

Re: [flexcoders] Cairngorm and TitleWindow issue

2006-04-13 Thread Darron J. Schall
Suzy Lawson wrote: HOWEVER...it does work if I do this. var event : MyEvent = new MyEvent ( eventVO ); Application.application.dispatchEvent( event ); It seems like the core Application can't pick up events dispatched from a TitleWindow. Is this a known issue or am i missing something??

Re: [flexcoders] get rid of xml configuration in FDS, use JNDI

2006-04-13 Thread Tom Bray
But you have to restart the server to reload the config files. Dynamic destinations would be better than hard-coded static ones.-TomOn 4/13/06, Kelly @ Dekayd Media Inc. [EMAIL PROTECTED] wrote: Considering how easy it is to manipulate xml files, it is really not that hard to add a step in

Re: [flexcoders] Flash 8.5 Release -- Vote of Confidence

2006-04-13 Thread Cortlandt Winters
Hi Tony,In the past they have almost always hit their deadlines within a few weeks and oftentimes are a week or so early. There may be more bugs than they'd like, or less documentation than they'd like, but things should release pretty close to on-time. They rightly tend to be even more

RE: [flexcoders] get rid of xml configuration in FDS, use JNDI

2006-04-13 Thread João Fernandes
FDS deploy automaticaly config files when they change, no need to restart the server. -Original Message- From: flexcoders@yahoogroups.com on behalf of Tom Bray Sent: Fri 14-Apr-06 1:26 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] get rid of xml configuration in FDS, use

Re: [flexcoders] get rid of xml configuration in FDS, use JNDI

2006-04-13 Thread Anatole Tartakovsky
I was actually pleasantly surprised when topic appeared in the group. Needless to say we are using custom gateways - not quite for JNDI vs XML - as I fail to see advantages of one over the other. For me custom gateway via flash remoting is more about different things like: 1. Ability to

Re: [flexcoders] Flex 2 on Mac OS X

2006-04-13 Thread Bolo Michelin
You really should download the SDK and use the Mac shell scripts that do all the messy java stuff for you.I am not a flash guru, It's my first mac. So what is he Mac shell scripts ?Bolo Tobias. From: flexcoders@yahoogroups.com [mailto: flexcoders@yahoogroups.com] On Behalf Of

Re: [flexcoders] Do I have To Use FDS to update databases?

2006-04-13 Thread Faisal Abid
7 pm us pacifi will be about what in canadian eastern time? Jennifer Larkin wrote: We have a location where BACFUG will be meeting (in San Francisco) but if you are not able to attend in person, we will be broadcasting the meeting via Breeze. In fact, not even Simeon will be there in person.

Re: [flexcoders] Re: [Flex2.0] How can I control cache of HTTPService inside FlashPlayer?

2006-04-13 Thread JesterXL
Via code you can append a random number to the URL. Since it's generally unique each time, it almost never reads from the cache. I reckon if you build your URL dynamically for HTTPService, you can ensure it'll never be cached. var url : String = http://www.server.com/file.php;; url += ? +

Re: [flexcoders] drag and drop components between cells in a datagrid

2006-04-13 Thread jeremy lu
sounds feasible, have you tried (using DragManager ) ? if you can't figure it out I would love to give it a go. On 4/14/06, pk_wasp [EMAIL PROTECTED] wrote: Is it possible to have a DataGrid with custom item renderer componentsand drag/drop them between the indvidual cells using

RE: [flexcoders] Namespace issue

2006-04-13 Thread Matt Chotin
Xmlns:wrhouse=wrhouse.* is right. You would then have your tag wrhouse:componentName.../wrhouse:componentName The error says *.warehouse so maybe you had a typo? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Robs Sent: Friday, April 07, 2006

RE: [flexcoders] Sending ISO-8859-1 from a Flex application

2006-04-13 Thread Matt Chotin
Flex is going to try to send using utf-8, you may need to do some string parsing back from utf-8 on the server-side before inserting into the database. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of nahruka Sent: Friday, April 07, 2006

RE: [flexcoders] Samples and JRUN

2006-04-13 Thread Matt Chotin
Are you still having problems? They should work if you copied the WAR, though maybe you need to update some of your server config for the JMS portion (in SERVER-INF)? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alberto Albericio Sent:

RE: [flexcoders] Chat not working in Dashboard and collaboration samples

2006-04-13 Thread Matt Chotin
I'm not a JMS expert, it seems like your config might be messed up and the JMS part of the server isn't working. We've changed the samples in B3 to not rely on JMS so that you can get up and running more quickly. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL

RE: [flexcoders] {flexcoders} Beta 2: Absolute class reference

2006-04-13 Thread Matt Chotin
Imports are required no matter what, fully qualifying the class doesnt necessarily get it linked in. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Scott Langeberg Sent: Friday, April 07, 2006 5:53 AM To: flexcoders@yahoogroups.com Subject:

RE: [flexcoders] Looking for a work around with using the HTTPService and its request object

2006-04-13 Thread Matt Chotin
Yeah, were trying to convert each tag into a property which probably isnt going to work in this case. You may need to do this in script instead and create the request object: var req:Object = new Object(); req[10_action] = 4; req[13_product] = GND; etc. Matt From:

RE: [flexcoders] Cairngorm 2, Flex 2 Beta 2 and RemoteObject (java)

2006-04-13 Thread Matt Chotin
Did you solve this? Maybe the {context.root} isn't in the config file like it needs to be? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sof4real03 Sent: Sunday, April 09, 2006 6:02 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

RE: [flexcoders] FDS: implementing push

2006-04-13 Thread Matt Chotin
You use one of the new APIs that will be coming out in Beta 3 J Sorry, no help for B2 From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Tom Bray Sent: Sunday, April 09, 2006 6:38 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] FDS:

RE: [flexcoders] Printing the row number in a DataGrid

2006-04-13 Thread Matt Chotin
Write a cell renderer and make sure to put var getCellIndex:Function; Then in setValue set your text to be the return value of calling getCellIndex(). The labelFunction probably isn't going to work. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

RE: [flexcoders] is their any things like getRequestURL() in flex??

2006-04-13 Thread Matt Chotin
Application.application.url will give you the url to the main SWF. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Dan Sent: Monday, April 10, 2006 1:15 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] is their any things like

RE: [flexcoders] Crossdomain.xml with Flex 2 beta 2

2006-04-13 Thread Matt Chotin
Crossdomain.xml needs to go in your ROOT webapp so that it's available at /crossdomain.xml Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of d93574 Sent: Monday, April 10, 2006 8:58 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]