[flexcoders] ComboBox __dropdown.bug97664?

2005-03-28 Thread Simon Fifield
I'm curious about the __dropdown.bug97664 in the ComboBox component. Anyone have any idea what that's all about? Kind Regards, Simon Fifield Yahoo! Groups Sponsor ADVERTISEMENT Yahoo! Groups Links To visit your group on the web, go

[flexcoders] [Help]configuring Flex in Jrun!

2005-03-28 Thread Prem
hi! This is my first post. can anyone guide me on how to deploy Flex in Jrun? the following are the specs... Flex 1.5 Jrun 4.0 (updated) Win XP I read the Flex installation document, all it mentions is on how to configue Flex (registered) in JAS(Java Application Server), Can someone please

RE: [flexcoders] [Help]configuring Flex in Jrun!

2005-03-28 Thread Cathy Murphy
If you're new to Flex/JRun/J2EE, then run the integrated install which will deploy the application for you. To deploy the war files yourself, if you already have JRun installed, then you should unzip flex.war to the following directory: jrun-install/servers/default/flex-war-directory After

RE: [flexcoders] image scroll

2005-03-28 Thread Doodi, Hari - BLS CTR
Thank you very much for guiding me in right direction. Also I have another problem. This time it is about Rotation. I am able to rotate an image using rotation attribute. But the problem is image got rotated based on top left corner. Is there any way to change the registration point of an image

[flexcoders] embedded MXML in CFMX7 pages

2005-03-28 Thread Minster, Jack
Ive got Flex installed and integrated into a CFMX7 instance on JRun and it works great. Ive also got some embedded mxml code in cfm pages. the problem is that some mxml code wont compile. for example, when trying to use the mx:XML/ tag, I get the following error: Requested page cannot

[flexcoders] Msg re: Flash Script taking long time, continue or abort?

2005-03-28 Thread Rob
Hi, Has anyone seen the prompt from Flash that indicates that a Flash script is taking a long time to run...click yes to abort or no to continue? (not exact verbiage)... Anyway, what happens to me is that Flash basically crashes my machine by continuously opening browsers when I choose to abort

RE: [flexcoders] Security Sandbox Violation when loading image

2005-03-28 Thread Kristopher Schultz
Well, I figured out why I was experiencing different behavior when pulling data in from an XML file vs. pulling it in via a remote object. My remote object method call was returning an Array of objects which on the Java side were instances of a simple data object class I had created called

FW: [flexcoders] image scroll

2005-03-28 Thread Doodi, Hari - BLS CTR
Thank you very much for guiding me in right direction. Also I have another problem. This time it is about Rotation. I am able to rotate an image using rotation attribute. But the problem is image got rotated based on top left corner. Is there any way to change the registration point of an image

RE: [flexcoders] Weird tree issue

2005-03-28 Thread Ted Casey
Are you using attributes.data? For example: ?xml version=1.0 encoding=iso-8859-1 ? mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml; mx:XML id=myXML node label=FirstNode data=1stNode node label=FirstSubNode data=1stSubNode/ /node node

RE: [flexcoders] Msg re: Flash Script taking long time, continue or abort?

2005-03-28 Thread Mehdi, Agha
It happens when the player takes longer than 15 secs to run a frame. Make sure you don't have endless loops in your script and if possible, break you long functions/logic into multiple processes and put them on separate frames. Also make sure that you're not loading all the UI components in one

RE: [flexcoders] Calling Java Servlet

2005-03-28 Thread Kristopher Schultz
Libby, You wouldn't typically call a method on a servlet through the RemoteObject mechanism. Instead, RemoteObject is there to let you call methods on plain old Java objects (pojos) or EJBs. So to modify your example a bit, if you had a Java class called "ItemDefFacade" (which *doesn't*

Re: [flexcoders] Flex 1.5 price

2005-03-28 Thread Tarik Ahmed
After the dot bomb companies began to scrutinize their I.T spending much more closely. You have to do your due diligence and make sure you're selecting the right technology, and part of the criteria is price. I've seen a lot of enterprises go with the second best option (features wise)

RE: [flexcoders] Msg re: Flash Script taking long time, continue or abort?

2005-03-28 Thread Rob
Being relatively new to Flex, how do you segment your code into different frames? I have multiple .mxml files that are loaded during the course of using the appdoes the separation occur at the mxml file boundaries? Sorry for the newbie questions TIA for any info. From:

RE: [flexcoders] Msg re: Flash Script taking long time, continue or abort?

2005-03-28 Thread Rob
Btw, there is no looping constructs in the code; however, there are event listeners…I suppose its possible that an event is being fired, but typically it’s a button click firing a change or other event. From: Mehdi, Agha [mailto:[EMAIL PROTECTED] Sent:

[flexcoders] Can someone help me figure out this code

2005-03-28 Thread nostra72
What I am trying to do is make two combo boxes one if you make a selection it puts some text in a tex box based on the selection, then have another one right under that that does the same thing. The problem is the computer gets confused when it sees two combo boxes so can someone explain this

RE: [flexcoders] Msg re: Flash Script taking long time, continue or abort?

2005-03-28 Thread Tracy Spratt
Does this occur on startup or when you invoke some action? Is your processing just taking a long time? If you do not abort, do you eventually get your app? Are you certain you don't have any for or while loops? If you just have a looping or recursive function that takes a long time, you can

RE: [flexcoders] Can someone help me figure out this code

2005-03-28 Thread Robert Brueckmann
You need to give unique ids to the comboboxes. mx:Combobox id=cb1 / mx:Combobox id=cb2 /you really should do it for all components you have in your mxml file that youll be updating or changing dynamically Robert L. Brueckmann Senior Web Developer Merlin Securities, LLC 595

RE: [flexcoders] Msg re: Flash Script taking long time, continue or abort?

2005-03-28 Thread Mehdi, Agha
Ok, I got the idea from your mailthat you were using Flash instead of Flex. Sorry about that. Does it display the error when you're initializing the app or when you do some interaction? You might wanna set the CreationPolicy to "queued" for the components that are not required

[flexcoders] Overlapping line chart with separate y-scales

2005-03-28 Thread Pekka Kola
Hi! I should present two datasets in same chart, one with value between 0.0-1.5 and another with 50-200, both having the same x-scale. It would be nice to have separate y-scales (e.g. 0.0-2.0 and 0.0-250) to get them nicely to chart. In Excel I can do it, but how about Flex? Thanks

RE: [flexcoders] Can someone help me figure out this code

2005-03-28 Thread Tracy Spratt
There is a copy/paste error in the change event in the second combo box. mx:ComboBox dataProvider={letterstwo} width=150 change=selectedItem=event.target.selectedletter/ should be: mx:ComboBox dataProvider={letterstwo} width=150 change=selectedletter=event.target.selectedItem/ By

[flexcoders] Change Events for Custom Classes

2005-03-28 Thread Andora, Greg
Title: Change Events for Custom Classes I'm wondering if there is a way (and if there is, how would I go about doing it) I can create a change event for a custom MXML class based for a public property. For example, I have an MXML file called MyClass and when the parent application changes

[flexcoders] Error: Cannot invoke method when using a VO

2005-03-28 Thread cazzaran
I have a delegate class on my server called GroupDelegate, and it has a method addGroup(Group group). When I try and call this method on my remote object, I get the error: Error: Cannot invoke method addGroup However, if I switch my method's signature to addGroup(String groupName), the method

RE: [flexcoders] Error: Cannot invoke method when using a VO

2005-03-28 Thread Peter Farland
Does the Java version of Group have a public no args constructor? -Original Message- From: cazzaran [mailto:[EMAIL PROTECTED] Sent: Monday, March 28, 2005 3:50 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Error: Cannot invoke method when using a VO I have a delegate class

[flexcoders] Re: Error: Cannot invoke method when using a VO

2005-03-28 Thread cazzaran
Peter, It does... -Josh --- In flexcoders@yahoogroups.com, Peter Farland [EMAIL PROTECTED] wrote: Does the Java version of Group have a public no args constructor? -Original Message- From: cazzaran [mailto:[EMAIL PROTECTED] Sent: Monday, March 28, 2005 3:50 PM To:

RE: [flexcoders] Re: Error: Cannot invoke method when using a VO

2005-03-28 Thread Peter Farland
Ah, what does the unnamed whitelist in the remote-object section look like? Does it include your Group class? I apologize for not double checking whether it was still a requirement in Flex 1.5, but I know it was in Flex 1.0. -Original Message- From: cazzaran [mailto:[EMAIL PROTECTED]

RE: [flexcoders] Re: Error: Cannot invoke method when using a VO

2005-03-28 Thread Peter Farland
Have you managed to turn on debugging for remote-object in /WEB-INF/flex/flex-config.xml and looked at the trace of the AMF error in the NetConnection Debugger? There may be more information on the fault object in the rootcause property. If you have access to the server locally, you can also try

RE: [flexcoders] image scroll

2005-03-28 Thread Gordon Smith
You could simultaneously adjust x, y, and rotation to accomplish this, although I haven't worked out the trig. - Gordon -Original Message- From: Doodi, Hari - BLS CTR [mailto:[EMAIL PROTECTED] Sent: Monday, March 28, 2005 8:32 AM To: 'flexcoders@yahoogroups.com' Subject: RE:

Re: [flexcoders] Change Events for Custom Classes

2005-03-28 Thread Seth Voltz
You want to look into getters and setters Try this: mx:Script> ![CDATA[ private var _myProperty; public function get myProperty ( ) { return _myProperty; } public function set myProperty ( value ) { _myProperty = value; } ]]> /mx:Script> Hope that'll be a good starting point. Seth On Mar

RE: [flexcoders] Change Events for Custom Classes

2005-03-28 Thread Gordon Smith
Title: Message If all you want to do is get myProperty_Changed() to execute when the app does MyClass.myProperty=5, you don't necessarily need any events. "Getter" and "setter" functions let you execute code when you read or write a property: // storage for myProperty property private

Re: [flexcoders] Msg re: Flash Script taking long time, continue or abort?

2005-03-28 Thread Igor Costa
Well, pretty insane error that still take me some times and squeeze me. So, what can you do for this one. If you are using flex to developer use the exention my_filme.mxml?asprofile=false; but if you're with Flash. So, there's a little trick and usefull. Just save your document as compact.

Re: [flexcoders] Re: Error: Cannot invoke method when using a VO

2005-03-28 Thread Igor Costa
I advice you to upgrade your java machine, that's happens with the 1.4.3 upgrade to 1.5.2 the problem stop On Mon, 28 Mar 2005 20:05:19 -0500, Peter Farland [EMAIL PROTECTED] wrote: Have you managed to turn on debugging for remote-object in /WEB-INF/flex/flex-config.xml and looked at the

RE: [flexcoders] How to pass AS Objects to a CFC

2005-03-28 Thread Tom Link
I believe the solution Dirk provided solves this problem as well. That is, in addition to Mehdi's initial solution #2: remoteObject.cfFunction ( toPass, true ); You can use named argument syntax: remoteObject.cfFunction({arg1:toPass}); Where arg1 is also the name of the argument in the CFC

[flexcoders] Re: Custom Control Components

2005-03-28 Thread billheit
I tried to implement both of these clocks and, when I ran them, both gave errors in createChildren function. It seems that it is referencing a method that is not in scope or does not exist. The error reads There is no method with the name 'createClassChildAtDepthWithStyles'. Once I