[flexcoders] DataGrid Cell Space character!

2005-10-06 Thread Sreejith Unnikrishnan
In my editable datagrid, if I tab to a new cell (blank cell) and un-tab from the cell without entering any new data, it automatically inserts a "space character" ... My datagrid is populated with data of type:Number. The issue is that when I try to save the edited data, the service throws an er

[flexcoders] [Ann] Sydney Developers Group October Meeting

2005-10-06 Thread Chris Velevitch
Tue 11 October Flex 2 and Flash Player 8.5 6pm for 6:30 start at MLC School Burwood On the 6th of October, Macromedia announced Flex 2 and Flash Player 8.5. This is very short notice, but we'll try to give and overview based on some very sketchy and early details. While FlashDev meetings are fr

RE: [flexcoders] How to find out the thickness of the scroll bar?

2005-10-06 Thread James
I'd like to know how to adjust the scrollbars width and height attributes. James -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manish Jethani Sent: Wednesday, October 05, 2005 6:28 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] How

RE: [flexcoders] mx:Model - XML with keywords like "new"

2005-10-06 Thread Matt Chotin
Yes, it’s because “new” is reserved.  Can you file a bug please?  I thought we had cases like that covered.  http://www.macromedia.com/go/wish.   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Christoph Diefenthal Sent: Thursday, Octob

RE: [flexcoders] Flex form not passing a referrer header - IE only

2005-10-06 Thread Matt Chotin
I think this is a known issue: http://www.mail-archive.com/flexcoders@yahoogroups.com/msg00931.html   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of pixelcowboys Sent: Thursday, October 06, 2005 5:13 PM To: flexcoders@yahoogroups.com S

[flexcoders] Re: Submit Using Enter Key.

2005-10-06 Thread Aaron Adams
Here's how we do it: --- In flexcoders@yahoogroups.com, "Joe" <[EMAIL PROTECTED]> wrote: > Is possible to submit using the enter key within flex? Yahoo! Groups Sponsor ~--> Most low income households are not online. Help bridge the digital

RE: [flexcoders] calling a secured web service

2005-10-06 Thread Matt Chotin
Try removing use-custom-authentication, just have the run-as.  Make sure you’re going through and don’t use wsdl=”…”   Matt   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Raymond Camden Sent: Thursday, October 06, 2005 2:06 PM To: flexcode

RE: [flexcoders] pass multiple objects from dispatchEvent()to addEventListener()

2005-10-06 Thread Matt Chotin
Two dispatchEvents.   dispatchEvent({type: ‘actualScore’, Result: actual}); dispatchEvent({type: ‘potentialScore’, Result: potential});   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of rgwilson26 Sent: Thursday, October 06, 2005 9:33 AM To:

RE: [flexcoders] Bug with UIObject and defaultLeafIcon in a tree

2005-10-06 Thread Matt Chotin
Sounds like a bug you should file: http://www.macromedia.com/go/wish   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of greenfishinwater Sent: Thursday, October 06, 2005 10:01 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Bug with UIObj

Re: [flexcoders] Submit Using Enter Key.

2005-10-06 Thread JesterXL
- Original Message - From: "Joe" <[EMAIL PROTECTED]> To: Sent: Thursday, October 06, 2005 7:55 PM Subject: [flexcoders] Submit Using Enter Key. Is possible to submit using the enter key within flex? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/fl

[flexcoders] Submit Using Enter Key.

2005-10-06 Thread Joe
Is possible to submit using the enter key within flex? Yahoo! Groups Sponsor ~--> Fair play? Video games influencing politics. Click and talk back! http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM

[flexcoders] Flex form not passing a referrer header - IE only

2005-10-06 Thread pixelcowboys
We're submitting data to a servlet using a simple function: var fname:String; var lname:String; function submitReg() { fname = FirstName.text; lname = LastName.text; getURL("regServlet","_self", "POST"); } We noticed that the referer header is not being passed in IE, result

RE: [flexcoders] Cairngorm ModelLocator

2005-10-06 Thread Malcolm
Personally couldn't see a problem with doing that Simon. hmmm a factory approach for multiple ModelLocators, now that would be cool! Provided binding still worked that this is :] m -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Simon Fifiel

[flexcoders] Re: Charting

2005-10-06 Thread yaagcur
Bit Johnny-come-lately, but I'm trying to do the same thing Not from a computing background, but did something similar to this in Flash which seemed to work

RE: [flexcoders] calling a secured web service

2005-10-06 Thread Carson Hager
I can't find an actually schema for flex-config but the docs have no mention of the tag, at least none that I saw cursorily. I realize that this tag is all over flex-config so it's likely right. Other than that, I'm at a loss. Carson Carson Hager

Re: [flexcoders] calling a secured web service

2005-10-06 Thread Raymond Camden
Nod, I've restarted about a hundred times now. :( Do you see anything obviously wrong with this current setup: true true http://foo.com/foo.asmx?WSDL http://foo.asmx On 10/6/05, Carson Hager <[EMAIL PROTECTED]> wrote: > FWIW, you don'

RE: [flexcoders] Re: How do I get alert to work in a flex component

2005-10-06 Thread Tracy Spratt
The ordinary "alert" is a method on the application object, so you can also do: mx.core.Application.application.alert();//note the lower case alert but I think the "mx.controls.Alert()" form is the preferred. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAI

RE: [flexcoders] calling a secured web service

2005-10-06 Thread Carson Hager
FWIW, you don't have to prompt the user with custom auth. You can simply catch the credentials request then submit the username and password in code. That being said, if the username/pwd is fixed, run-as makes sense. Given Flex's response, it's going with the default behavior of passthrough. Have

Re: [flexcoders] calling a secured web service

2005-10-06 Thread Raymond Camden
In this case, my app is suing a secured service where the u/p will never change. Therefore, it doesn't make sense to prompt on the client side. It should be hard coded. Thanks for trying though. Can anyone from Macromedia Flex team comment? :) On 10/6/05, Carson Hager <[EMAIL PROTECTED]> wrote: >

RE: [flexcoders] calling a secured web service

2005-10-06 Thread Carson Hager
I've never used run-as due to the fact that I think it has very limited usage given that all users connect to the web service with the same credentials. Have you tried custom auth? With that you can specify a client specific username and password for the web service. Do you have access to the pas

[flexcoders] Re: Flex compilation bug

2005-10-06 Thread fowleryj
Just checking to see if anyone has made any progress on this issue, because I'm experiencing it now. Any other methods of dealing with it that people have come up with? --- In flexcoders@yahoogroups.com, "superabe" <[EMAIL PROTECTED]> wrote: > Thanks for the taking the time to detail out the issue

Re: [flexcoders] calling a secured web service

2005-10-06 Thread Raymond Camden
So a follow up. I noticed this in the log: 10/06 14:51:57 ERROR The Flex proxy and the specified endpoint do not have the same domain, and so basic authentication can not be used. Please specify use-custom-authentication or run-as for services not located on the same domain as the Flex proxy. . T

Re: [flexcoders] Authentication with Macromedia Flex

2005-10-06 Thread Douglas Knudsen
http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=9636f34e&pss=rss_flex_9636f34e there. Thanks for the hint about using JAAS via CallBackHandler, etc in th eother thread...I have not got it working 100% on JRun yet...but still banging away at it. DKOn 9/26/05, Dimitrios Gianninas <[

RE: [flexcoders] Re: Flex or Flash, opinions?

2005-10-06 Thread Battershall, Jeff
The important thing to realize about Flex vs. Flash is that Flex is a FRAMEWORK. Flex handles via that framework a ton of stuff you'd go blind trying to do in Flash. It is geared towards application building, etc. and does not expose you to the granularity that Flash would require to do that sort

Re: [flexcoders] Re: Flex or Flash, opinions?

2005-10-06 Thread Darron J. Schall
Greg Johnson wrote: >Even though Flash 8 now has many of the same controls that Flex has >(acordians, viewstacks, datagrids, etc).? > > Flex's development model is *way* better for applications. The controls that Flash 8 has are essentially the same that Flash 7 had, which aren't as good as

[flexcoders] Re: Flex or Flash, opinions?

2005-10-06 Thread Greg Johnson
Even though Flash 8 now has many of the same controls that Flex has (acordians, viewstacks, datagrids, etc).? --- In flexcoders@yahoogroups.com, "JesterXL" <[EMAIL PROTECTED]> wrote: > I'll let someone else give you the elongated answer, so here's the short > one. > > If you are creating game

[flexcoders] Need Debugging help?: Expediting Application Development with th e Flex Application Starter Toolkit (FAST)

2005-10-06 Thread Andora, Greg
Hey all,   Some great tools available here, I haven't seen it mentioned in the list, so I thought I'd let you all know it is out there.   http://www.macromedia.com/devnet/flex/articles/fast_userguide_print.html   For those of you who have seen this, I was wondering if anybody has integrate

RE: [flexcoders] calling a secured web service

2005-10-06 Thread Carson Hager
How did I know that question was next? :) I looked it up and it's in chapter 30. Working with web services and Securing data services are good sections. Carson Carson Hager Cynergy Systems, Inc. http://www.cynergysystems.com Email: [EMAIL PRO

Re: [flexcoders] Flex or Flash, opinions?

2005-10-06 Thread JesterXL
I'll let someone else give you the elongated answer, so here's the short one. If you are creating games that have low level needs (blitting, movieclip usage vs. UIObject), use Flash. If you are creating applications, use Flex. If you are creating applications that have AfterEffects like design

Re: [flexcoders] calling a secured web service

2005-10-06 Thread Raymond Camden
Nope - any particular chapter you can suggest in the Flex docs? On 10/6/05, Carson Hager <[EMAIL PROTECTED]> wrote: > So you're trying to call a web service from a server that is different > from the server from which you downloaded the flex client? That's not > going to work. It's a violation of

[flexcoders] Flex or Flash, opinions?

2005-10-06 Thread Greg Johnson
I am currently finishing up doing the first part of a Management Reporting system in Flex 1.5. Then I am going to try and reproduce it in Flash 8. Then I get the fun of making the official decision of what we will use. What does Flex 1.5 have over Flash 8 (knowing that Flex 2 and Flash 8.5 a

[flexcoders] Re: How do I get alert to work in a flex component

2005-10-06 Thread Greg Johnson
The alert was being called in the component in some as code. And yes, flex has an alert function. --- In flexcoders@yahoogroups.com, "Mink, Joseph" <[EMAIL PROTECTED]> wrote: > So where exactly is the "alert("")" call being made? Also...isn's > alert("") a javascript function? I don't know if

[flexcoders] Re: How do I get alert to work in a flex component

2005-10-06 Thread Greg Johnson
Ahh, thankyou. --- In flexcoders@yahoogroups.com, "Andora, Greg" <[EMAIL PROTECTED]> wrote: > Make sure you have a reference to your Alert control in your component code: > import mx.controls.Alert; > > Then to use it, you use: > Alert.show("Hello World"); > > Thank you, > Greg Andora > IT -

RE: [flexcoders] How do I get alert to work in a flex component

2005-10-06 Thread Andora, Greg
Make sure you have a reference to your Alert control in your component code: import mx.controls.Alert;   Then to use it, you use: Alert.show("Hello World");   Thank you,Greg Andora IT - Web Development Group Database Analyst/Programmer(702) 862-7725   From: flexcoders@yahoogroups.com

RE: [flexcoders] Waterfall chart

2005-10-06 Thread Ely Greenfield
Sure Tom. You've got the basics in your outline below. Basically, you want something like: Function genDP(original:Array):Array { var result:Array = []; for(var i=0;imailto:[EMAIL PROTECTED] On Behalf Of Tom Fitzpatrick Sent: Thursday, October 06, 2005 7:17 AM To: flexcoders@yah

RE: [flexcoders] How do I get alert to work in a flex component

2005-10-06 Thread Mink, Joseph
So where exactly is the "alert("")" call being made?  Also...isn's alert("") a _javascript_ function?  I don't know if that method exists in Flex. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg JohnsonSent: Thursday, October 06, 2005 12:07 PMTo: flexcoders@

RE: [flexcoders] calling a secured web service

2005-10-06 Thread Carson Hager
So you're trying to call a web service from a server that is different from the server from which you downloaded the flex client? That's not going to work. It's a violation of the security sandbox that the Flash player runs within. This is the reason why the Flex proxy exists. Have you looked int

[flexcoders] Bug with UIObject and defaultLeafIcon in a tree

2005-10-06 Thread greenfishinwater
This is a weird problem I had today. I made a few changes to my code then ran the app and the datagrid which has column headings, was suddenly not displaying the column headings. I then went back and removed my changes to the code. I finally isolated the problem which was to do with the tree. I do

[flexcoders] pass multiple objects from dispatchEvent()to addEventListener()

2005-10-06 Thread rgwilson26
What is the correct syntax to pass *multiple* objects between dispatchEvent()to addEventListener() and then called by handleEvent()? This is what I have and doesn't work: Thank you in advance. --- popUp.mxml --- [Event("actualScore")]

[flexcoders] How do I get alert to work in a flex component

2005-10-06 Thread Greg Johnson
I have the main application, then I have a Flex component. But if I try to add a alert("") it says it doesn't know what im talking about. If I add _root.alert("") it will not give an error, but it won't show the alert window either. :/ Here is the app line from the main flex app http://www.ma

Re: [flexcoders] calling a secured web service

2005-10-06 Thread Raymond Camden
>From the Flex client. The web service is a .Net service. I should add that, when I try to use it, I'm getting this fault code/string: Error: Client.Disconnected Could not load WSDL I have verified that the WS produces valid WSDL, although I'm also having trouble calling it from CF as well. On 1

[flexcoders] Re: Flex 2 & Flash Player 8.5

2005-10-06 Thread temporal_illusion
This is very good news! I've been out of coding Flex unfortunately as the company I was doing it with is no longer operating... But I've been keeping an eye on the community waiting for this! --- In flexcoders@yahoogroups.com, "Ian Welsh" <[EMAIL PROTECTED]> wrote: > Some news! > > http://ww

RE: [flexcoders] calling a secured web service

2005-10-06 Thread Carson Hager
You want to call a web service from server a or from a client that originated from server a? What kinds of web services? Are they the same technology or a variety of technologies? If they're Java or .NET, I can provide some assistance. If there is any CF involved, I am definitely not the right p

RE: [flexcoders] Flex 2 & Flash Player 8.5

2005-10-06 Thread Tracy Spratt
They have definitely been paying attention! Whoo Hoo! Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Muzak Sent: Thursday, October 06, 2005 10:07 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Flex 2 & Flash Player 8.5 Octob

Re: [flexcoders] how to create new session each time

2005-10-06 Thread Valy Sivec
Dandip,   You might pay more attenttion at the way a j2ee/flex application can be structured and see that not all the time you need abc.mxml and xyz.mxml to navigate from a screen to another. Look at the stackview container and you'll have to manage your application state programatically for eac

RE: [flexcoders] Embedding with GET variables

2005-10-06 Thread Tracy Spratt
If you use mx:Image, or mx:Loader to load the swf, you can access its public properties and methods through the content property. Then in script: imgLeaf.content.color = "whatever" I recall reading that you cannot send parameters on the source url. Search the archive for verification. Tracy -

RE: [flexcoders] How to pass multiple selected values from List

2005-10-06 Thread Tracy Spratt
>From the documentation, it appears that the ComboBox does not support multiple selections. mx:List does, however. See the docs for details: http://livedocs.macromedia.com/flex/15/asdocs_en/index.html Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On

[flexcoders] calling a secured web service

2005-10-06 Thread Raymond Camden
I think I may be missing something simple. How do I, on server A, call a web service on server B that has basic authentication? I don't want the user to be prompted, I was hoping/assuming I could -- === Raymond Camden, Director

RE: [flexcoders] how to create new session each time

2005-10-06 Thread Tracy Spratt
The best solution is to simply clear the checkboxes manually on logout. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sandip_patil01 Sent: Thursday, October 06, 2005 5:59 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] how to crea

[flexcoders] Flex 2 & Coldfusion

2005-10-06 Thread Ian Welsh
Potentially more good news on the way for us CF ers!   http://www.dcooper.org/blog//client/index.cfm?mode=entry&entry=C5F562CA-4E22-1671-5A8DFF99CA132F36   Regards Ian From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ian WelshSent: 06 October 2005 13:44To: flexcode

[flexcoders] mx:Model - XML with keywords like "new"

2005-10-06 Thread Christoph Diefenthal
Hello again, does anyone about problems using keywords within a mx:Model ? For example, if I've got a XML-file like this: true And try to load it into an mx:Model like: I get a Compilation Error like: Error main.mxml:7 Expected a field name after '

RE: [flexcoders] Waterfall chart

2005-10-06 Thread Tom Fitzpatrick
Thanks, Ely. Can you point to or provide a simple example of dataprovider preprocessing? If my data structure is as follows: ... I can see that I need to perform some math on the "result" nodes to create the n

Re: [flexcoders] Flex 2 & Flash Player 8.5

2005-10-06 Thread Muzak
October 17th was just mentioned on Flashcoders. You can sign up to be notified here: http://www.macromedia.com/cfusion/mmform/index.cfm?name=labs_earlybird regards, Muzak - Original Message - From: "Clint Modien" <[EMAIL PROTECTED]> To: Sent: Thursday, October 06, 2005 4:02 PM Subject:

Re: [flexcoders] Flex 2 & Flash Player 8.5

2005-10-06 Thread Clint Modien
Wow...  this is some exciting stuff...    A public alpha release?  Macromedia has there act together now...   When can i get it?!?!  On 10/6/05, Ian Welsh <[EMAIL PROTECTED]> wrote: Some news!   http://www.macromedia.com/devnet/flex/articles/flex2_intro.html   Regards Ian  --Flexcoders Mail

RE: [flexcoders] Flex 2 & Flash Player 8.5

2005-10-06 Thread João Fernandes
... and very good news ;)   I can't wait till MAX   João Fernandes Secção de Desenvolvimento Departamento de Informática   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ian WelshSent: quinta-feira, 6 de Outubro de 2005 13:44To: flexcoders@yahoogroups.comSubject

[flexcoders] Flex 2 & Flash Player 8.5

2005-10-06 Thread Ian Welsh
Some news!   http://www.macromedia.com/devnet/flex/articles/flex2_intro.html   Regards Ian   -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SP

[flexcoders] Embedding with GET variables

2005-10-06 Thread jrab2999
Hello clubbers, I want to embed some swf and tell it some GET variables. Is it possible? [Embed(source="theme_src/leaf.swf\?color=")] var iconSymbol1:String; doesnt work. I need the symbols for the function: tree.setIcon(node, iconSymbol1, iconSymbol2); Can I tell the iconSymbol1 a special valu

[flexcoders] When ModelLocator Databinding does not work...

2005-10-06 Thread thomasburleson
I would like to ask the cairngorm experts a question involving databinding. In a current application under development, when I need to load some data via remoteObjects we use the .getInstance().broadcastEvent( ) which gets forwarded by our controller to the appropriate command. The delegate datase

[flexcoders] How to pass multiple selected values from List

2005-10-06 Thread sandip_patil01
HI ALL, I want to pass multiple values selected from List to database. Like for selecting a value from combo box I write event.target.seletedItem. So for selecting multiple values what is the syntax. Thx in advance , Sandip Patil. Yahoo! Groups Sponsor

[flexcoders] how to create new session each time

2005-10-06 Thread sandip_patil01
Hi All, I have a button on "abc.mxml" when I click on that button next page say "xyz.mxml" is opening. This "xyz.mxml" page has some checkboxes. Let say I click on a button on "abc.mxml" then the next page "xyz.mxml" will open & say I have selected some of checkboxes from this page. But when

Re: [flexcoders] what does this error mean?

2005-10-06 Thread Sandip Patil
I was also getting this same error.But alongwith I am getting another errors. Like e.g. xyz variable not found. If you remove the errors like above then automatically your error will vanish.   Regards, Sandip PNithya R <[EMAIL PROTECTED]> wrote: hai   i get this error when i run my application.

[flexcoders] Re: Anchor tag - style

2005-10-06 Thread augie3333
The only way I have found to style HTML txt is plain old inline html. Not super efficient, but Hope it helps. Thanks, -Augie Marcello --- In flexcoders@yahoogroups.com, Mark Hitchcock <[EMAIL PROTECTED]> wrote: > No, sorry I havn't been able to get styles to work either... Doe

RE: [flexcoders] what does this error mean?

2005-10-06 Thread Abdul Qabiz
Nithya-   You are not specifying namespace-prefix in Panel tag. It should be mx, assuming you are not using your custom Panel component.   It should look like below:             -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nithya RSent: Thursday, Oc

Re: [flexcoders] clearing of selected checkboxes for the next visit of the page ?

2005-10-06 Thread Pradeep Chaudhary
If you are using a viewstack to change views then you can handle "change" event of viewstack and perform the cleaning up in xyz.mxml component. If this does not solve ypur problem then you need to give more detail about the scenario. Pradeep Yahoo! Groups Sponsor ---

[flexcoders] what does this error mean?

2005-10-06 Thread Nithya R
hai   i get this error when i run my application.. i checked if the begining tags match the end tags.. and everythingb is perfect.. is there any other specifivc reason why this error appears?     Don't know how to parse element "http://www.macromedia.com/2003/mxml:Panel". It is not a known type