Re: [flexcoders] Flex applications not working with Mozilla firefox

2005-09-16 Thread nostra72
I am not sure if I do or not how do I check if I have it installed? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com YAHOO! GROUPS LINKS Visit

[flexcoders] Re: Problem with trying to set the focusedCell in a Tree

2005-09-16 Thread bhaq1972
Hi Peter, mx:Button label=Edit bar click=EmployeeTrace.focusedCell = EmployeeTrace.getTreeNodeAt(1)/ i dont think its a bug. i tried the following click=EmpolyeeTrace.focusedCell = undefined and that also focuses on the first node. the 'focusedCell' property requires a co-ordinate

RE: [flexcoders] Screen Cap a frame from a webcam?

2005-09-16 Thread Steve Cox
I dont believe the camera class has the ability to create a snapshot (although Ive little experience of it). However I have seen an example of flash player 8 doing exactly this using the bitmap class. Might be worth googling for this! -Original Message- From:

[flexcoders] problem about Text or TextArea

2005-09-16 Thread xiankevin2005
hi all, the problem i'm facing is that i need to use an editable text field with the ability adjusting its height like the Text control. is it possible?how to make the Text control editable or to make the TextArea control adjust its height to fit the content? thanks! kevin

[flexcoders] JSP to Flex / Flex to JSP

2005-09-16 Thread morslay777
Hello, I can't find Flex App and JSP communcations examples where the mxml file isn't developed in jsp file, but at independent file, that will be comucating with the jsp file to send/get parameters. Can you help me? Thank you. Yahoo! Groups Sponsor

[flexcoders] 'show' event called on creation complete or init?

2005-09-16 Thread Steve Cox
Morning all, Ok Situation Im having at the moment is the show event on a form is being called when I dont believe it should be. Ive a tabnav containing 8 sections, one of those sections I need to be able to jump to from other sections so the children of this is being created using

RE: [flexcoders] 'show' event called on creation complete or init?

2005-09-16 Thread Allen Manning
Hello Steve, What is the creationPolicy on the TabNav? If it is all, then all of the containers will be rendered, that might be it. Best, Allen www.prismix.com/ From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Steve Cox Sent: 16

Re: [flexcoders] Flex applications not working with Mozilla firefox

2005-09-16 Thread Michael Nisi
By going to http://macromedia.com? Yahoo! Groups Sponsor ~-- Fair play? Video games influencing politics. Click and talk back! http://us.click.yahoo.com/T8sf5C/tzNLAA/TtwFAA/nhFolB/TM

[flexcoders] romoving focus, selection, highlight from a button

2005-09-16 Thread Krzysztof Szlapinski
hi, first of all I dont know the proper name for this: when you move a mouse over a button its frame turns green is it called focus selection or highlight? whatever its name is :) i want to remove it from my button after it's been clicked krzysiek Yahoo! Groups

[flexcoders] ms access

2005-09-16 Thread Burak
hi, dear friends, how I can get data from a database such as ms access in order to insert them in datagrid? -- Burak BAYSAL Yahoo! Groups Sponsor ~-- Get Bzzzy! (real tools to help you find a job). Welcome to the Sweet Life.

RE: [flexcoders] 'show' event called on creation complete or init?

2005-09-16 Thread Steve Cox
Thanks for the reply, Theres actually tabnavs within tabnavs. The toplevel tabnav has no creation policy on it with the excetion of one of the components. This component has a queued creatioponpolicy which loads up its children. It was my understanding that this would then

[flexcoders] Re: HOw combo box populated

2005-09-16 Thread sandip_patil01
Can you Plz tell me or if possible send me the code how to get cities popualted in combo box when state is selected from another combo box. --- In flexcoders@yahoogroups.com, bsd [EMAIL PROTECTED] wrote: I have built a custom City/State/Zip component to use throughout an application and,

Re: [flexcoders] ms access

2005-09-16 Thread Sjors Pals
What did you try so far? Did you read anything about flex and datasources? Don't wanna be rude but i think you should first try a little bit your self. Greets, Sjors Burak wrote: hi, dear friends, how I can get data from a database such as ms access in order to insert them in datagrid?

RE: [flexcoders] JSP to Flex / Flex to JSP

2005-09-16 Thread Dimitrios Gianninas
Hi, You need to use the HTTPService in order to pass parameters to a JSP and then retrieve the content it is send back to you. Best place to start is the online documentation in the "Using Data Services" section, start with the link below:

[flexcoders] Re: Dynamic Object Instantiation

2005-09-16 Thread chip1062
That worked great! Thanks a ton! Chip --- In flexcoders@yahoogroups.com, Shahnavaz Alware [EMAIL PROTECTED] wrote: I do the similar stuff using getChildAt(i) instead of childDescriptors[i] and that works fine if I want to read the properties I set during createChild. Eg

RE: [flexcoders] flexstore not working

2005-09-16 Thread Tom Fitzpatrick
At 08:05 PM 9/15/2005, you wrote: Look at ...\tomcat 5.0\logs\stdout.log. Tomcat itself is generating a 404 error relative to the .wsdl files for services - meaning file not found? Is there a way to check whether {context.root} is properly defined in flex-config.xml? Oddly, I noticed that

[flexcoders] Capturing Events from Cell Renderers

2005-09-16 Thread Allen Manning
Hello, I want to dispatch and event from a cell renderer and call it in the view which has the parent datagrid. Any advice on how to do this? I dont need code, just a brief explanation would do. J Many thanks, Allen www.prismix.com/ -- Flexcoders Mailing List FAQ:

RES: [flexcoders] Flex, Coldfusion and RH

2005-09-16 Thread Fernando Barros
Hi! I have Enterprise, and yes, I have the flex-bootstrap.jar. I also tried to use all flex libs but it didn't work. Tks anyway. Any idea? Tks, Fernando  De: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Em nome de João Fernandes Enviada em:

Re: [flexcoders] Capturing Events from Cell Renderers

2005-09-16 Thread Omar Ramos
Hi Allen, I usualy do what you say on my cell renders. What I usualy do is dispatch the event tru your list controll, in your case the dataGrid. Remember on the cell render you have a reference of the list which is the variable listOwner. So you could do this

Re: [flexcoders] Cairgorn Bug?

2005-09-16 Thread Omar Ramos
I have set traces all over the place. No errors are occurring and the command gets executed. Any Idea what could be the problem? On 9/14/05, Omar Ramos [EMAIL PROTECTED] wrote: Thanks alot for your reply ali, If in fact there was an error why the piece of code beneth that line doesn't get

RE: [flexcoders] Capturing Events from Cell Renderers

2005-09-16 Thread Allen Manning
Omar, Thanks for the reply. Would I need to register that event with my list, wont the complier complain of I do this: mx:DataGrid MyEvent=do something .. / Or do I need to add the event listener programmatically? Thanks, Allen www.prismix.com/ From:

RE: [flexcoders] problem with cell renderer showing data in datagrid twice

2005-09-16 Thread Craig Newroth
Matt: Sure did, Kevin H sent me some files that showed how to fix... thanks Craig ps. sorry for not responding quicker, been REAL busy... Matt Chotin [EMAIL PROTECTED] wrote: Craig, did you solve this or do you still need help? From: flexcoders@yahoogroups.com

Re: [flexcoders] Capturing Events from Cell Renderers

2005-09-16 Thread Omar Ramos
You would have to register manualy using addEventListener. You could do this on your tag mx:DataGrid id=grdload="grd.addEventListner(MyEvent,MyMethod);" .. / On 9/16/05, Allen Manning [EMAIL PROTECTED] wrote: Omar, Thanks for the reply. Would I need to register that event with my list,

[flexcoders] Comparing Structure Elements - Not Working

2005-09-16 Thread Greg Johnson
I have 2 Datagrids. One gets populated by a call to a CFC, the other starts databound to an empty array The Source Datagrid has a list of names. I let the person click on, then click a button. Then a function checks to make sure the person is not already in the list. If they are not in the

RE: [flexcoders] Capturing Events from Cell Renderers

2005-09-16 Thread Allen Manning
Thanks Omar. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Omar Ramos Sent: 16 September 2005 14:31 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Capturing Events from Cell Renderers You would have to register manualy

[flexcoders] Flex in Oracle AS 10g in clustering

2005-09-16 Thread Jeroen De Vos
Title: Flex in Oracle AS 10g in clustering Hi everyone, Has anyone deployed a Flex app in a clustered OAS 10g? We seem to be having problems here. The Flex apps are running, but they produce from time to time unexpected errors (which didn't happen in our development environment -

RE: [flexcoders] Cairgorn Bug?

2005-09-16 Thread Mercer, Dustin
Just curious, do you use any viewhelpers within your command? From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Omar Ramos Sent: Friday, September 16, 2005 5:54 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Cairgorn Bug? I

Re: [flexcoders] Cairgorn Bug?

2005-09-16 Thread Omar Ramos
Nope, This is the call EventBroadcaster.getInstance().broadcastEvent(ScrapblogController.EVENT_SELECT_OBJECT, eventObj); The command only implements the Command interface and only has a if and a switch statement on execute thats it. On 9/16/05, Mercer, Dustin [EMAIL PROTECTED] wrote: Just

RE: [flexcoders] Cairgorn Bug?

2005-09-16 Thread Michael Herron
There are only so many things it can be: Have you registered the event correctly with the controller? Has the controller been instantiated? Has the controller been instantiated BEFORE the event is broadcast? o When is the event broadcast? Are you instantiating a delegate from

Re: [flexcoders] Cairgorn Bug?

2005-09-16 Thread Omar Ramos
Hi mike, That is the weird thing. Other commands work fine. Also this command works also but the code beneth doesn't get executed which is the weird thing. The command doesn't implement responder therefore it doesn't use delegate either. It just manipulates the ModelLocator. The command is

RE: [flexcoders] Cairgorn Bug?

2005-09-16 Thread Mercer, Dustin
Can you try to remove all the code within the execute method in the command? After that, see if your code below the broadcastEvent works. Also, have you tried to add a trace statement to the command to make sure it is executing From: flexcoders@yahoogroups.com

Re: [flexcoders] Comparing Structure Elements - Not Working **SPAM**

2005-09-16 Thread Greg Johnson
I forgot to say exacty what I need. I have 2 datagrids and need to move rows from one to another making sure that the destination doesn't already have the same row. Could someone look at the code I have and see why the check for duplicates isn't working? tnks Greg Johnson wrote: I have 2

RE: [flexcoders] problem with cell renderer showing data in datagrid twice

2005-09-16 Thread Matt Chotin
As have we, hence limited responses J From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Craig Newroth Sent: Friday, September 16, 2005 6:24 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] problem with cell renderer showing data in

[flexcoders] UML and Flex

2005-09-16 Thread javanatic23
Hi. Does exist any tool with these features: - Generation of MXML and AS from UML Diagrams. - Reverse engineering of MXML and AS for generation of UML diagrams. Yahoo! Groups Sponsor ~-- Fair play? Video games influencing politics. Click and talk

Re: [flexcoders] Comparing Structure Elements - Not Working **SPAM**

2005-09-16 Thread jeff tapper
try this = var SelectionList:Array = new Array(); var isNew:Boolean = true; function addfromIS():Void { var SrcItem = IS_RESULTS.dataProvider.getItemAt(IS_RESULTS.selectedIndex); if (SelectionList.length0) { for (var i = 0; iSelectionList.length; i++) {

[flexcoders] whitelist error?

2005-09-16 Thread Greg Morphis
I'm trying to run the RemoteObjectDemo from my local machine.. http://127.0.0.1:8301/explorer/data/RemoteObjectDemo.mxml and I'm getting a whitelist error.. You are not allowed to access this service samples.explorer.EmploeeManager. The service is not in the configured whitelist. My whitelist is

[flexcoders] Re: whitelist error?

2005-09-16 Thread Greg Morphis
Actually I have both the http-service-proxy and web-service-proxy bot set to http://* and https://* Thanks On 9/16/05, Greg Morphis [EMAIL PROTECTED] wrote: I'm trying to run the RemoteObjectDemo from my local machine.. http://127.0.0.1:8301/explorer/data/RemoteObjectDemo.mxml and I'm getting

[flexcoders] Re: whitelist error?

2005-09-16 Thread Greg Morphis
nevermind, I found that the remote-objects source whitelist needed to be populated sourcesamples.*/source sourcesamples/source On 9/16/05, Greg Morphis [EMAIL PROTECTED] wrote: Actually I have both the http-service-proxy and web-service-proxy bot set to http://* and https://*

[flexcoders] RemoteObject Error - maybe some one can help!!!

2005-09-16 Thread cnewroth55
have this .class file that i am trying to access as a RO, and when i try to access it, the error i am getting back from the network monitor is: (Unsupported major.minor version 49.0) had a co-worker compile the .java file for me, so i dont know what version to maybe have him make it availble

Re: [flexcoders] Comparing Structure Elements - Not Working **SPAM**

2005-09-16 Thread Greg Johnson
Nope, leaving the comparison as below if (SrcItem.Person_ID != CompItem.Person_ID) { results in me being able to add the same name over and over again if (SrcItem.Person_ID == CompItem.Person_ID) { lets me add one name but no other names. jeff tapper wrote: try this = var

Re: [flexcoders] Flex and Remote Objects

2005-09-16 Thread Greg Morphis
Tracy, how or where does the mxml file read the data from? is it the EmployeeManager.class or the EmployeeManager.java file? I tried modifying the .java file and added another person but they aren't showing. I modified the .class anf got some major/minor error? How would you go about adding

Re: [flexcoders] UML and Flex

2005-09-16 Thread Darron J. Schall
javanatic23 wrote: Hi. Does exist any tool with these features: - Generation of MXML and AS from UML Diagrams. I created an ActionScript 2 code generator here: http://www.darronschall.com/weblog/archives/000174.cfm I've mostly tested it with ArgoUML, your mileage may vary. Source code is

Re: [flexcoders] Comparing Structure Elements - Not Working

2005-09-16 Thread Greg Johnson
I got it var isNew:Boolean = true; function addfromIS():Void { var SrcItem:String = IS_RESULTS.dataProvider[IS_RESULTS.selectedIndex].PERSON_ID; isNew = true; if (SelectionList.length0) { for (var i = 0; iSelectionList.length; i++) { var CompItem:String =

[flexcoders] How to pass value selected from combo box to my Java class method

2005-09-16 Thread sandip_patil01
Hi all, Can anybody tell me how to pass value selected from combo box to my service class method. Here what I want is depending on the parameter passed to method the method should fetch records from database. In this case I want to pass value selected from combo box to my java class method.So

RE: [flexcoders] Re: HOw combo box populated

2005-09-16 Thread Gordon Smith
Write a handler for the change event coming from the State combo box. In that handler, set the dataProvider of the City combo box. - Gordon -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sandip_patil01 Sent: Friday, September 16, 2005 1:40 AM

RE: [flexcoders] How to pass value selected from combo box to my Java class method

2005-09-16 Thread Battershall, Jeff
Sandip, The way to get the data associated with the currently selected item is item.selectedItem.data If that data is simple, you can pass it as-is, if not you'd access it according to the datatype of the data such as data[0] or data[firstName] or what-have-you. You'd bind your web service

RE: [flexcoders] How to pass value selected from combo box to my Java class method

2005-09-16 Thread Gordon Smith
The selected item in the ComboBox is item.selectedItem. Do you know about the ASDoc? It tells you about the properties, methods, events, styles, and effects of every component. There should be a link to it at Start Macromedia Macromedia Flex

Re: [flexcoders] How to pass value selected from combo box to my Java class method

2005-09-16 Thread Oscar . Cortes
Assuming that you already have a RemoteObject to call your Java Class. This is what I would do: mx:ComboBox id=item dataProvider={listInfo} change=myRemoteObject.getMyDataFromJava(item.selectedItem.mydata)/ where mydata is the attribute name in listInfo and which you wanto to send to

[flexcoders] Question about error message

2005-09-16 Thread nostra72
I have asked this before and I want to ask this again because I guess its still confusing me even though I have been able to handle it in the past. OK sometimes when I am programming I get this error message or one similar to this 2 Errors found. Error Branch between 169711 and 202518 around

[flexcoders] Question about the samples on the samples page

2005-09-16 Thread nostra72
Ok I do not want to break any copyright laws so this is why I am asking this here. Lets say I wanted to look at the following url http://localhost:8700/samples/flexstore/flexstore.mxml?versionChecked=true Ok and lets say I wanted to cut and paste the code removing any copyrighted information

RE: [flexcoders] Flex and Remote Objects

2005-09-16 Thread grady.haynes
.java files are Java source code; .class files are compiled Java bytecode that's obtained by compiling one or more .java files with the javac command if you have Sun's JDK installed. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Greg Morphis

Re: [flexcoders] How to pass value selected from combo box to my Java class method

2005-09-16 Thread Sandip Patil
Thx Oscar, For your response. I know this. But along with this value selected from combo box i also want to pass whatever values User enter in text box. Here what I all want it is, Suppse I have text box and combo box. When user enter something in text box also select value from combo

RE: [flexcoders] ms access

2005-09-16 Thread Tracy Spratt
Like Sjors says, and you can start here: http://www.cflex.net/showfaq.cfm?ChannelID=1faqType=#Question370 Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sjors Pals Sent: Friday, September 16, 2005 7:24 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] flexstore not working

2005-09-16 Thread Tracy Spratt
Set the logging level using the Tomcat Monitor: Start, Programs, Apache Tomcat, Monitor tomcat, on the logging tab. Setting {context.root} should happen automatically, I do not know how to set it manually. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL

Re: [flexcoders] How to pass value selected from combo box to my Java class method

2005-09-16 Thread Oscar . Cortes
Something like this? mx:Label text=Enter data / mx:TextInput id=txt_1/ mx:ComboBox id=item dataProvider={listInfo} change=myRemoteObject.getMyDataFromJava(item.selectedItem.mydata, {txt_1.text}/ -Oscar.

RE: [flexcoders] Comparing Structure Elements - Not Working

2005-09-16 Thread Tracy Spratt
Did you trace out the comparison values? And the SelectionList.length value? Tracy From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Greg Johnson Sent: Friday, September 16, 2005 1:54 PM To: flexcoders@yahoogroups.com Subject: Re:

[flexcoders] URGENT Problem on Flex installed on BEA WebLogic

2005-09-16 Thread Kevin Towes (New Toronto Group)
Hey Gang - We're having a bit of an urgent issue with a Flex installation on BEA Weblogic Portal Server. I know there were some threads a while back on this issue, so I'll explain it below. The issue relates to the fop.jar file that is used in the BEA Portal Server (WebLogic). The BEA jar file

RE: [flexcoders] Flex and Remote Objects

2005-09-16 Thread Tracy Spratt
Yes. If you don't know Java, and do not want to learn Java, don't use RemoteObject. I am personally comfortable with HTTPService, it is the easiest to use. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Friday,

RE: [flexcoders] Question about error message

2005-09-16 Thread Tracy Spratt
Yep, that is the boundary situation caused by the Flex servers generation choices. There isnt anything you can do about that, except, as you discovered, I just moved things around and made the program even bigger thus fixing the error. Doing this makes the compiler make a different

RE: [flexcoders] URGENT Problem on Flex installed on BEA WebLogic

2005-09-16 Thread Carson Hager
Kevin, This is a classloader issue. Check outprefer-web-inf-classes in the following URL to turn off the default behavior of the WLS classloader to allow for classes in web apps to be loaded in preference of the server level classloader.

RE: [flexcoders] Question about the samples on the samples page

2005-09-16 Thread Tracy Spratt
I am not an attorney, but yes, you can use that code legally. Use common sense: if code is publicly posted, and there in not an explicit copyright restriction in it, you are probably safe to use it (I did not see any copyright notices in the sample code I looked at). If you find the code

Re: [flexcoders] Question about the samples on the samples page

2005-09-16 Thread nostra72
In other words I could modify the code say to make a store type page for a friend of mine? The flex store page that is at this url http://localhost:8700/samples/flexstore/flexstore.mxml?versionChecked=true -- Flexcoders Mailing List FAQ:

Re: [flexcoders] Question about the samples on the samples page

2005-09-16 Thread Manish Jethani
On 9/17/05, Tracy Spratt [EMAIL PROTECTED] wrote: I am not an attorney, but yes, you can use that code legally. Use common sense: if code is publicly posted, and there in not an explicit copyright restriction in it, you are probably safe to use it (I did not see any copyright notices in the

RE: [flexcoders] Question about the samples on the samples page

2005-09-16 Thread Tracy Spratt
I stand corrected. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manish Jethani Sent: Friday, September 16, 2005 3:56 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Question about the samples on the samples page On 9/17/05,

RE: [flexcoders] How to pass value selected from combo box to my Java class method

2005-09-16 Thread Gordon Smith
I know this. But you said I want to pass value selected from combo box and you didn't say anything about a text box. You have to ask the right question to get the right answer. :-) If you have a TextInput control, you can get what the user has entered by getting is 'text'

Re: [flexcoders] Dynamic Object Instantiation

2005-09-16 Thread Manish Jethani
On 9/16/05, Shahnavaz Alware [EMAIL PROTECTED] wrote: I do the similar stuff using getChildAt(i) instead of childDescriptors[i] and that works fine if I want to read the properties I set during createChild. Eg parentID.getChildAt(i).id childDescriptors is only for children created in MXML.

[flexcoders] Financial Services RIAs showcase

2005-09-16 Thread Aldo Bucchi
HI all, I am collecting financial services or related Flex apps. I have found some published on macromedia.com, but its still the same old stuff. Please, If you know one, share the URL! Thanks, Aldo -- : Aldo Bucchi : mobile (56) 8 429 8300 Yahoo! Groups

[flexcoders] Question about alligning code

2005-09-16 Thread nostra72
What if I am making a page and I want to allign a Vbox to the left side of the page is there a way to do this? -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com

[flexcoders] Flex Explorer RemoteObjectDemo.mxml question

2005-09-16 Thread pilby1
I was playing around with the examples that came with Flex, and I'm encountering something peculiar with RemoteObjectDemo.mxml. Here is the RemoteObject call: mx:RemoteObject id=employeeRO source=samples.explorer.EmployeeManager showBusyCursor=true result=empList=event.result fault=alert

[flexcoders] MACR +3.35

2005-09-16 Thread Tariq Ahmed
A I love it. Not only does Macromedia make awesome products, but the stock this year has been kicking ass. +3.35 today! Nice! Yahoo! Groups Sponsor ~-- Most low income households are not online. Help bridge the digital divide today!