Re: [flexcoders] MXML Schema validation

2005-03-06 Thread Spike
Looks to me like the Schema is wrong. It doesn't allow for any attributes of mx:operation and permits only the mx:request tag as a child. Anyone know if I can get my hands on on that's correct? Spike Spike wrote: Does anyone know whether the MXML Schema that comes with Flex 1.5 really can be

Multidimensional Array in Actionscript

2005-03-06 Thread javawebgrrl
Hi, Is there an object in ActionScript which will behave something like a java.util.HashMap ? I am trying to store some data into an array using var myArray:Array=new Array(); myArray.push(strKey,Object); I am storing multiple keys object pairs this way, but now I am wondering how to get

Re: [flexcoders] Multidimensional Array in Actionscript

2005-03-06 Thread Darron J. Schall
javawebgrrl wrote: Hi, Is there an object in ActionScript which will behave something like a java.util.HashMap ? The generic Object in Flash acts just like a map. var map:Object = new Object(); map[strKey] = theObject; .. later... theObject = map[strKey]; -d

RE: [flexcoders] Flex does not rebuild dependent components

2005-03-06 Thread Matt Chotin
Make sure that production-mode is not set to true in flex-config.xml. Otherwise changes to a component should cause re-compilation. Occasionally though Ive seen the compiler get confused. In that case you can delete the generated directory in web-inf/flex and restart the server and

RE: [flexcoders] language support

2005-03-06 Thread Matt Chotin
How are you getting the data, what service?  Make sure that youre sending it across as UTF-8.  Otherwise you may need to try setting System.useCodePage to true, but I think first you want to attempt to get the content back in UTF-8. Matt From: Steve Pruitt [mailto:[EMAIL

Resizable, Minimizable/Maximizable TitleWindow

2005-03-06 Thread Andrew Spaulding
Hi all, I have recently combined a few past implementations, namely Manish Jethani, Jesse Warden amd Christophe Coenraets, into one 'resizable, minimizable, maximizable title window class'. It's work in progress but please feel free to download and modify it to better suit your needs. You can

Re: Multidimensional Array in Actionscript

2005-03-06 Thread javawebgrrl
--- In flexcoders@yahoogroups.com, Darron J. Schall [EMAIL PROTECTED] wrote: javawebgrrl wrote: Hi, Is there an object in ActionScript which will behave something like a java.util.HashMap ? The generic Object in Flash acts just like a map. var map:Object = new Object();

RE: [flexcoders] TabNavigator.

2005-03-06 Thread Dimitrios Gianninas
Hi Gareth, Here are some answers: 1) It does not support this, all tabs display on a single row. Although 30-40 tabs sounds like alot :) Perhaps there is a better way to allow the user to select from multiple sections. 2) Its doesn't do this either, however you could calculate it and set

Cairngorm namspace bug

2005-03-06 Thread dduuggllaa
Is anyone else seeing the following Cairngorm bug: Symptom: Changing namespace reference causes my application to hang. I started with the Index.mxml file from the Cairngorm samples folder, built an app, made some minor changes, everything was fine. However when I changed xmlns:demoView to

Window Close

2005-03-06 Thread gevgelija50
Is there a possibility to create a listener in Flex that will capture the event of a user closing a web browser? In other words, if the user bypasses the logout button, I want to execute the logout process before browser is closed. Thanks, Alex

Re: [flexcoders] Window Close

2005-03-06 Thread Manish Jethani
On Sun, 06 Mar 2005 19:00:26 -, gevgelija50 [EMAIL PROTECTED] wrote: Is there a possibility to create a listener in Flex that will capture the event of a user closing a web browser? You can do it in JavaScript: http://developer.irt.org/script/1230.htm

RE: [flexcoders] Re: Cairngorm namspace bug

2005-03-06 Thread Mercer, Dustin
Another thing you can do is: Debug the app. Check to see the architecture is raising any exceptions (you can see this in the output window in flex builder). I have had the same type of thing happen to me. It isbecause when flex raises and exception, it may stop the processing of the app

Re: Cairngorm namspace bug

2005-03-06 Thread dduuggllaa
Steven, Yes. I cloned the demo package tree, and replaced demp with play and throught the directory tree. Note, if I use xmlns:demoView=com.visualio.play.view.* it works just fine, so the problem does not appear to be with the com.visualio.* hierarchy. I've even hacked a bit on the java

RE: [flexcoders] Re: Cairngorm namspace bug

2005-03-06 Thread Dimitrios Gianninas
Hi, Attach your files here to the forum so we can try it, reproduce it and hopefully find out what is wrong :) Jimmy Optimal Payments -Original Message- From: dduuggllaa [mailto:[EMAIL PROTECTED] Sent: Sun 3/6/2005 5:02 PM To: flexcoders@yahoogroups.com Cc: Subject:

Two Button Questions

2005-03-06 Thread Gina Chin
Hi all, I am new to Flex and Actionscript, and only started prototyping for our newproject (a UI application on a J2EE server) a week ago. It's been a fun learning this technology and the Cairngorm framework does present a very neatframework that suits our purpose well. However I've come

Re: [flexcoders] TabNavigator.

2005-03-06 Thread Gareth Edwards
Unfortunately around 30 tabs is as specific as we can get at the moment. Its quite a large project with some standards that have already been put in place for multirow tabs. The DHTML versions of the controls required are finished and it would be a shame to have to write custom components to

RE: [flexcoders] New to Flex and having difficulties with validat ion

2005-03-06 Thread Matt Chotin
Title: New to Flex and having difficulties with validation OK, so this is not trivial right off the bat right now but it can be done. Unfortunately I dont have time to come up with an example that I can code quickly. Basically you need to have your elements repeated and then capture the

RE: [flexcoders] DataGrid Bug Simulation

2005-03-06 Thread Matt Chotin
Yep, this looks like some of the rendering code could be improved on our end. If you want to file a bug at http://www.macromedia.com/go/wish with this info that$B!G(Bd be great. We are looking into seeing if we can support fixed columns in the future but right now it may be difficult.

RE: [flexcoders] Two Button Questions

2005-03-06 Thread Steven Webster
Hi Gina, I am new to Flex and Actionscript, and only started prototyping for our new project (a UI application on a J2EE server) a week ago. It's been a fun learning this technology and the Cairngorm framework does present a very neat framework that suits our purpose well. Good to hear

RE: [flexcoders] Re: Cairngorm namspace bug

2005-03-06 Thread Matt Chotin
Maybe also make sure you don't have a class name with the same name as a package directory? Or an AS file with the same name as an MXML file? -Original Message- From: Dimitrios Gianninas [mailto:[EMAIL PROTECTED] Sent: Sunday, March 06, 2005 2:16 PM To: flexcoders@yahoogroups.com

Equivalent to Thread.sleep()

2005-03-06 Thread Carson Hager
Title: Equivalent to Thread.sleep() Is there something in Flex that will put athread to sleep for a period of time? I'm implementing a framework to effectively allow synchronous invocation of web services from action script. I need to be able to put the thread to sleep for a period of time