[no subject]

2005-03-21 Thread mjethani
[EMAIL PROTECTED] Mon Apr 26 12:11:16 2004 Return-Path: [EMAIL PROTECTED] X-Sender: [EMAIL PROTECTED] X-Apparently-To: flexcoders@yahoogroups.com Received: (qmail 57127 invoked from network); 26 Apr 2004 19:11:15 - Received: from unknown (66.218.66.172) by m17.grp.scd.yahoo.com with QMQP; 26

[no subject]

2005-03-21 Thread mjethani
[EMAIL PROTECTED] Mon Apr 26 12:20:07 2004 Return-Path: [EMAIL PROTECTED] X-Sender: [EMAIL PROTECTED] X-Apparently-To: flexcoders@yahoogroups.com Received: (qmail 24761 invoked from network); 26 Apr 2004 19:20:06 - Received: from unknown (66.218.66.218) by m22.grp.scd.yahoo.com with QMQP; 26

[no subject]

2005-03-21 Thread mjethani
[EMAIL PROTECTED] Tue Apr 27 09:16:16 2004 Return-Path: [EMAIL PROTECTED] X-Sender: [EMAIL PROTECTED] X-Apparently-To: flexcoders@yahoogroups.com Received: (qmail 14827 invoked from network); 27 Apr 2004 16:16:16 - Received: from unknown (66.218.66.218) by m14.grp.scd.yahoo.com with QMQP; 27

[no subject]

2005-03-21 Thread mjethani
[EMAIL PROTECTED] Tue Apr 27 09:44:58 2004 Return-Path: [EMAIL PROTECTED] X-Sender: [EMAIL PROTECTED] X-Apparently-To: flexcoders@yahoogroups.com Received: (qmail 64790 invoked from network); 27 Apr 2004 16:44:57 - Received: from unknown (66.218.66.218) by m22.grp.scd.yahoo.com with QMQP; 27

[no subject]

2005-03-21 Thread mjethani
[EMAIL PROTECTED] Tue Apr 27 16:03:25 2004 Return-Path: [EMAIL PROTECTED] X-Sender: [EMAIL PROTECTED] X-Apparently-To: flexcoders@yahoogroups.com Received: (qmail 47255 invoked from network); 27 Apr 2004 23:03:25 - Received: from unknown (66.218.66.167) by m21.grp.scd.yahoo.com with QMQP; 27

[no subject]

2005-03-21 Thread mjethani
[EMAIL PROTECTED] Tue Apr 27 16:14:03 2004 Return-Path: [EMAIL PROTECTED] X-Sender: [EMAIL PROTECTED] X-Apparently-To: flexcoders@yahoogroups.com Received: (qmail 24917 invoked from network); 27 Apr 2004 23:14:03 - Received: from unknown (66.218.66.217) by m14.grp.scd.yahoo.com with QMQP; 27

[no subject]

2005-03-21 Thread mjethani
[EMAIL PROTECTED] Tue Apr 27 16:58:32 2004 Return-Path: [EMAIL PROTECTED] X-Sender: [EMAIL PROTECTED] X-Apparently-To: flexcoders@yahoogroups.com Received: (qmail 23873 invoked from network); 27 Apr 2004 23:58:32 - Received: from unknown (66.218.66.167) by m21.grp.scd.yahoo.com with QMQP; 27

[flexcoders] Cairngorm : commands to execute at startup

2005-03-21 Thread Laurent Cornelis
I have a command that I want to be executed at startup. So in my cairngorm:CairngormApplication tag I set the initialize attribute : initialize=loadCatalog() My loadCatalog function is defined like this : public function loadCatalog() : Void { alert(TEST);

RE: [flexcoders] Cairngorm : commands to execute at startup

2005-03-21 Thread Steven Webster
try using creationComplete rather than initalize for your loadCatalog() method call.. Timing is everything ;) Steven -Original Message- From: Laurent Cornelis [mailto:[EMAIL PROTECTED] Sent: 21 March 2005 14:29 To: flexcoders@yahoogroups.com Subject: [flexcoders] Cairngorm :

Re: [flexcoders] Cairngorm : commands to execute at startup

2005-03-21 Thread Laurent Cornelis
I was sure to have tested with creationComplete() ... but apparently not because it works like a charm ;-) Thanks a lot ! Next time, I'll check twice before posting :-p Steven Webster a crit : try using creationComplete rather than initalize for your loadCatalog() method call..

[flexcoders] dataGrid dataProvider with blank rows?

2005-03-21 Thread [EMAIL PROTECTED]
Hi, i have an dataGrid with an dataProvider of array of CColoriVO. from here work: mx:DataGrid dataProvider={vocolore} width=100% id=dgcolore cellPress=key=dg.selectedIndex vocolore it's loaded in this way public var vocolore:Array; function getColor_result(event) {

RE: [flexcoders] About JRUN Connector

2005-03-21 Thread Matt Horn
If you are using the integrated JRun server, then the connector module is not included. Otherwise, check the JRun docs. It's in there! HTH, matt horn From: sagar kulkarni [mailto:[EMAIL PROTECTED] Sent: Monday, March 21, 2005 4:09 AMTo: flexcoders@yahoogroups.comSubject:

Re: [flexcoders] Namespace Problems

2005-03-21 Thread Jack Waknitz
I am using a HTTPService using default settings. Here is the rdf foaf file. Doing the attribute without the namespace didn't seem to work. Any further ideas about whats wrong? On Fri, 18 Mar 2005 21:09:20 -0800, Matt Chotin [EMAIL PROTECTED] wrote: Are you using HTTPService to get the

[flexcoders] Re: Star System

2005-03-21 Thread pioplacz
have a problem i tryed making it work dynamic like this: CineRating id=stars rating={dataObject.rate}/ the rate changes on every movie i click but nothing happens it keeps the same value as the first one i clicked on. Is it possible to fix it? --- In flexcoders@yahoogroups.com, Ketan

RE: [flexcoders] string object id to object

2005-03-21 Thread Gordon Smith
The application object has references to those objects that are declared with ids in the Application file. However, it doesn't have references to objects declared with ids inside MXML components. These references are on the object declared at the top of the MXML component file. For example, if

[flexcoders] Re: Accordion container...Elements visible=false

2005-03-21 Thread Ghislain Simard
doesn't work!!! any othe ideas?? --- In flexcoders@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On Sat, 19 Mar 2005 15:47:30 -, Ghislain Simard [EMAIL PROTECTED] wrote: I would like to generate dynamically each containers inside an accordion. It seems that I can't use

RE: [flexcoders] How do you change the color of an array object

2005-03-21 Thread Tracy Spratt
Your makefivered() function is referencing an item in the dataProvider, not a button in the repeater. Put an id on the button in the repeater: myButton , then in the function, reference it using the array index: myButton[4].setStyle(color,0xCC0066); I believe you must use setStyle

[flexcoders] Re: datagrid refresh problem

2005-03-21 Thread wcucsd
Tracy, That worked! It was enough to reset the dataprovider. The data provider is a list of ActionScript objects. I am using my object's setState() method, so that works fine. Thanks for your help, -Will --- In flexcoders@yahoogroups.com, Tracy Spratt [EMAIL PROTECTED] wrote: There is

RE: [flexcoders] Re: Accordion container...Elements visible=false

2005-03-21 Thread Gordon Smith
You can use myAccordion.createChild(HBox, undefined, { label: New container }); to dynamically add child containers to an Accordion. - Gordon -Original Message- From: Ghislain Simard [mailto:[EMAIL PROTECTED] Sent: Monday, March 21, 2005 9:41 AM To: flexcoders@yahoogroups.com

Re: [flexcoders] creationPolicy vs load/unload?

2005-03-21 Thread Joe Berkovitz
In your question, performance hit could refer network performance (i.e. latency to load the code/data for the views over the net) as well as component initialization performance (latency to actually initialize the components in the views). So the answer probably depends on: - the expected

Re: [flexcoders] How do you change the color of an array object

2005-03-21 Thread nostra72
Thanks for yoru help but unfortunately the fillscolor is exactly the property I am trying to change I want to change the white button to a grey one. If anyone knows how to do this let me know please Yahoo! Groups Sponsor ADVERTISEMENT Yahoo! Groups Links To visit your

[flexcoders] Redirect using HTTPService

2005-03-21 Thread zfan00
Hi, everyone! I am new to Flex. Currently I tried to use Flex with struts. Yes, I have already read that article talking about the integration between flex and struts. However, I could not find the answer to my question. My question is very simple. I have a login page. After the use clicks

RE: [flexcoders] Waiting for a remote call during application ini tialization

2005-03-21 Thread Jason Szeto
Raghu, You can also use progressive layout to wait for data coming back from remote calls. There is an article on devnet that explains how to use this feature. http://www.macromedia.com/devnet/flex/articles/prog_layout.html Jason From: Jeroen De Vos [mailto:[EMAIL

Re: [flexcoders] weird problem with Flashplayer in Linux

2005-03-21 Thread James Ward
Perhaps the difference is JVM version? Are you running the latest on your linux box? -James On Mon, 2005-03-21 at 16:24 +0100, Christoph Guse wrote: Hi list, I have a weird problem with my app. I'm using Flex and Flash in Linux. But let me explain as good I can. On the picture you can

RE: [flexcoders] internal representation of an array

2005-03-21 Thread Peter Farland
Are there any circular references between elements of your array elements? There is a known issue in Flex 1.5 for circular references between non-Typed (i.e. generic unregistered ActionScript class instances) Objects, Arrays. -Original Message- From: Krzysztof Szlapinski

[flexcoders] Dynamically generate Flex charts using .cfc query

2005-03-21 Thread sak_76
Hi, I'm currently evaluating the Flex tool based on the project needs. I know that we can generate charts on Flex using a static xml, but have anyone tried generating the same dynamically from a .cfc query results. If so, please respond and give me some tips. Thanks, Sak Yahoo!

Re: [flexcoders] internal representation of an array

2005-03-21 Thread Krzysztof Szlapinski
no there are no circular references Are there any circular references between elements of your array elements? There is a known issue in Flex 1.5 for circular references between non-Typed (i.e. generic unregistered ActionScript class instances) Objects, Arrays. -Original

Re: [flexcoders] internal representation of an array

2005-03-21 Thread Krzysztof Szlapinski
OK but what about its size in memory? krzysiek The Flash player implements both Array and Object as hashtables. In other words, doing var a:Array = []; a[10] = foo; is doing the same thing internally as setting var o:Object = {}; o[10] = foo; - Gordon -Original

RE: [flexcoders] internal representation of an array

2005-03-21 Thread Gordon Smith
Is it running out of memory when being compiled, or when being run? - Gordon -Original Message- From: Peter Farland [mailto:[EMAIL PROTECTED] Sent: Monday, March 21, 2005 1:19 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] internal representation of an array Do any of

RE: [flexcoders] Dynamically generate Flex charts using .cfc query

2005-03-21 Thread Steven Webster
I'm currently evaluating the Flex tool based on the project needs. I know that we can generate charts on Flex using a static xml, but have anyone tried generating the same dynamically from a .cfc query results. If so, please respond and give me some tips. Charts are simply renderings

[flexcoders] Panel Title Style

2005-03-21 Thread digital_eyezed
Hi, How do you change the background colour of the Title Area in a panel container?? I've tried a TitleStyleDeclaration but which element is the background colour (that horid grey colour!)? Cheers Yahoo! Groups Links * To visit your group on the web, go to:

Re: [flexcoders] Panel Title Style

2005-03-21 Thread Clint Tredway
You need to change the headerColors attribute... On Mon, 21 Mar 2005 21:55:37 -, digital_eyezed [EMAIL PROTECTED] wrote: Hi, How do you change the background colour of the Title Area in a panel container?? I've tried a TitleStyleDeclaration but which element is the background

[flexcoders] Proper login window handling?

2005-03-21 Thread Blake Kadatz
Hello, I've build a LoginWindow.mxml consisting of a mx:TitleWindow ... tag and related code. I call this from my main application as such: function show_login():Void{var parent = this;var isModal:Boolean = true;var initObj = {};var login = PopUpManager.createPopUp(parent,

Re: [flexcoders] internal representation of an array

2005-03-21 Thread Krzysztof Szlapinski
like in the example below but much longer How much longer? it starts with 'vb1': form['vb1'] = new Array(); and goes up to 'vb46': form['vb46']['rbs'][6]['fid'] = 'rb353'; -Original Message- From: Krzysztof Szlapinski [mailto:[EMAIL PROTECTED] Sent: Monday, March 21,

Re: [flexcoders] internal representation of an array

2005-03-21 Thread Krzysztof Szlapinski
Do any of these Arrays contain very sparse, non-dense, ordinal indexed elements? no they don't I'm assuming your posting this to the Flex server via RemoteObject... if no I'm not - this array is used in one of functions -Original Message- From: Krzysztof Szlapinski

Re: [flexcoders] internal representation of an array

2005-03-21 Thread Krzysztof Szlapinski
Is it running out of memory when being compiled, or when being run? during compilation server allocates around 230MB of ram and then, probably while creating new objects, it runs out of mem and crushes it is a 256MB machine krzysiek - Gordon -Original Message- From: Peter

Re: [flexcoders] weird problem with Flashplayer in Linux

2005-03-21 Thread Christoph Guse
Hi James, the JVM on the linux box is 1.4.2_x, on the windows box 1.5, I think. I don't think this problem is because the JVM isn't used on the windows box, just the Flashplayer. The linux box is the Flex-Server and concurrent Client. The windows box is only client. So the linux and the

[flexcoders] Tomcat, Unix and .swo files

2005-03-21 Thread wcucsd
I copy my Flex app to tomcat/webapps on a unix box. I run the Flex app there and it works fine. I then want to remove the existing application from disk and replace it with a new one. I try to rm - r my app under tomcat/webapps, and it doesn't let me. Why? Because there are some files

RE: [flexcoders] internal representation of an array

2005-03-21 Thread Gordon Smith
That's a tiny amount of RAM for a Flex server. - Gordon -Original Message- From: Krzysztof Szlapinski [mailto:[EMAIL PROTECTED] Sent: Monday, March 21, 2005 2:33 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] internal representation of an array Is it running out of

RE: [flexcoders] Proper login window handling?

2005-03-21 Thread Tracy Spratt
What you describe sounds like it should work. If you suspect scoping issues, you are probably correct. Use delegate() to make sure the handler function executing the viewstack.selectedIndex = n call knows about the viewstack. Tracy From: Blake Kadatz [mailto:[EMAIL

Re: [flexcoders] Re: New mail archived and (hopefully) searchable now

2005-03-21 Thread Manish Jethani
More than 5,000 messages (3,500 of the newest) were imported into the archive today. Give them a couple of days to get into the search index. Link: http://www.mail-archive.com/flexcoders%40yahoogroups.com/ Note: some of the messages' headers got all messed up and they show as mjethani (my

[flexcoders] AutoWidth/AutoHeight?

2005-03-21 Thread Scott Barnes
I've found that i've been constantly typing width=100% height=100% and so on for containers within containers and what not, and have found it to be tedious task. The thing is though, sometimes i want width=100% but height to be default (ie whatever the height of the movieclip in question) but

RE: [flexcoders] AutoWidth/AutoHeight?

2005-03-21 Thread Chris Reynolds
Hi scott, as a matter of course, I have subclassed all the tags. That way, when any defaults or behavioursirritate me, I have a place to fix them. From: Scott Barnes [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 22, 2005 1:49 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders]

RE: [flexcoders] Proper login window handling?

2005-03-21 Thread Blake Kadatz
Ah, I found the problem. In the code below, I'm mistakingly using: login.addEventListener(login_success, new mx.utils.Delegate.create(this, showSuccessPanel)); Note the undesired new call when creating the delegate. Instead, it should just be:

[flexcoders] Re: User Credentials Cache

2005-03-21 Thread mshireygmail
I also need help with this. I need to know how to make flex server kill the session with the endpoint. This is a pretty major problem for my application. -- Matthew --- In flexcoders@yahoogroups.com, billheit [EMAIL PROTECTED] wrote: I am not sure if this is a bug or if I am

Re: [flexcoders] AutoWidth/AutoHeight?

2005-03-21 Thread JesterXL
Your not alone, but extending every component for the sake of defaulting all containers to 100% seems mega-bleh. I wish they'd default to that instead. - Original Message - From: Scott Barnes [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, March 21, 2005 8:48 PM

Re: [flexcoders] Flex on Oracle 9iAS

2005-03-21 Thread James Ward
I am using Flex on 9iAS standalone. But if you have the option, use JBoss or Tomcat. ;) -James On Tue, 2005-03-22 at 07:20 +, ssudha2 wrote: The supported Application Server listed in Macromedia site does not include Oracle 9iAS. Does anybody know whether Flex supports Oracle

Re: [flexcoders] Passing Models into MXML components...

2005-03-21 Thread Spike
AFAIK all it's telling you is that Flex won't be able to auto-detect changes to that property in testModel and automatically notify your component. If you change the whole model by reassigning the testModel variable, your component will be notified. It doesn't actually affect the workings of

RE: [flexcoders] Redirect using HTTPService

2005-03-21 Thread Dirk Eismann
Hi, the problem is that HTTPService is meant to load remote data into the application - HTTPService has no concept of displaying that data. For loading and displaying external mxml files take a look at the mx.controls.Loader class. However, maybe you don't even have to pass back a whole new

<    1   2   3