[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 or

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

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: mx:Canvas mx:Panel / /mx:Canvas -abdul From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Nithya

[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 mx:Text width=100% height=143 mx:htmlText ![CDATA[ font size=19pt face=verdana color=#ccJust Some Text/font font color=#FFua href=http://www.google.com/;www.google.com/a/u

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.. i

[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 I do

[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] 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

[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 value

[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

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:

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 Mailing

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: flexcoders@yahoogroups.com Sent: Thursday, October

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: data result apple/apple orange/orange banana/banana /result ... /data I can see that I need

[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: menubar file newtrue/new /file /menubar And try to load it into an mx:Model like: mx:Model id=testXML source=test.xml

[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=entryentry=C5F562CA-4E22-1671-5A8DFF99CA132F36 Regards Ian From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ian WelshSent: 06 October 2005 13:44To:

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

[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 mx:WebSerice username=x password=y --

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

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. mx:Image id=imgLeaf source / Then in script: imgLeaf.content.color = whatever I recall reading that you cannot send parameters on the source url. Search the

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

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

[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!

[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 mx:Application

[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 --- mx:Metadata

[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

[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 that

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 the

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

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

[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 integrated

[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 games that

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

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] Authentication with Macromedia Flex

2005-10-06 Thread Douglas Knudsen
http://www.macromedia.com/cfusion/knowledgebase/index.cfm?id=9636f34epss=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

[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 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

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
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] 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:[EMAIL

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: service name=xxx use-custom-authenticationtrue/use-custom-authentication allow-unnamed-accesstrue/allow-unnamed-access wsdlhttp://foo.com/foo.asmx?WSDL/wsdl

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 endpoints 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

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

[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, resulting

[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

Re: [flexcoders] Submit Using Enter Key.

2005-10-06 Thread JesterXL
mx:TextInput enter=doSubmit() / - Original Message - From: Joe [EMAIL PROTECTED] To: flexcoders@yahoogroups.com 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

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

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] calling a secured web service

2005-10-06 Thread Matt Chotin
Try removing use-custom-authentication, just have the run-as. Make sure youre going through mx:WebService service=xxx / and dont use wsdl= Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Raymond Camden Sent: Thursday, October 06, 2005

[flexcoders] Re: Submit Using Enter Key.

2005-10-06 Thread Aaron Adams
Here's how we do it: mx:Script![CDATA[ function checkEnterKey(evt):Void { if (evt.code==13) { submitLogin(); }} ]]/mx:Script mx:TextInput password=true keyDown=checkEnterKey(event);/ --- In flexcoders@yahoogroups.com, Joe [EMAIL PROTECTED] wrote: Is possible to submit using the enter key

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

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

2005-10-06 Thread Matt Chotin
Yes, its 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, October 06,

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]

[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

[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