[flexcoders] Flex.NET Alpha/Beta Registration Where? How?

2005-05-10 Thread Tolulope Olonade
Came across a blog coupla days ago where someone was directing another to where to register for Flex.NET testing from Macromedia. Anybody knows where or how I can join??? Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/  To u

RE: [flexcoders] why can not pass arguments to flex in portal js p page

2005-05-10 Thread Matt Chotin
I can’t see the problem in portal.jsp. Did you put a trace statement in your initLocale() method to make sure it’s executing?  The only difference I saw between the two jsps was the portal stuff and the table, I don’t think that would make a difference but who knows.  I assume the println

Re: [flexcoders] mx;Loader/ memory leaking/ any way to programati cally clear the memory/browser crashes

2005-05-10 Thread Scott Barnes
On 5/11/05, Matt Chotin <[EMAIL PROTECTED]> wrote: > > > > I don't believe changing the viewstack children to applications will solve > your problem. What you can do is tell the ViewStack to destroy the children > that aren't showing, but there's no guarantee that you're going to give the > m

RE: [flexcoders] mx;Loader/ memory leaking/ any way to programati cally clear the memory/browser crashes

2005-05-10 Thread Matt Chotin
I don’t believe changing the viewstack children to applications will solve your problem.  What you can do is tell the ViewStack to destroy the children that aren’t showing, but there’s no guarantee that you’re going to give the memory back to the system.  This is one of the things we’re f

RE: [flexcoders] Session Access in Delegates

2005-05-10 Thread Matt Chotin
There are no javadocs on the getHttpRequest method other than what you see in the Flex docs. Basically it's a static method that will get you the request and you can muck away from there. Matt -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ken

RE: [flexcoders] labelFunction item object and font style

2005-05-10 Thread Matt Chotin
I believe the 2nd argument to labelFunction when used in a DataGrid is the columnName.  This should be in the docs somewhere but I couldn’t find it.   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of msloumac Sent: Tuesday, May 10, 2005 3:52 AM To: flexcod

[flexcoders] Re: Internationalization?

2005-05-10 Thread r0main
Also there's benoit implementation: http://groups.yahoo.com/group/flexcoders/message/8730 We are currently discussing in the Cairngorm committee to provide the best i18n implementation in the post-next Cairngorm release (not the 0.99 soon to be released, but the next one)... Romain --- In flexc

[flexcoders] Session Access in Delegates

2005-05-10 Thread Kent Henneuse
I have been digging around in the remoting example code to try to figure out ways to handle the system I am working with that stuff certain attributes into the session upon login rather then retrieving each time. The first question I have is Where can I find the JavaDocs for flashgateway and calls

RE: [flexcoders] Re: Where is Source Code for Developing Rich Clients with MM Flex?

2005-05-10 Thread Steven Webster
Hi Libby, > Sorry, I did not see the "All Source" down at the bottom. I > guess that last multi-chapter section completely builds the > missing chapter numbers like chapter 20, right? The final zip contains all the source from the book; it isn't updated for Flex 1.5, but you shouldn't have muc

[flexcoders] Re: Where is Source Code for Developing Rich Clients with MM Flex?

2005-05-10 Thread Libby
Sorry, I did not see the "All Source" down at the bottom. I guess that last multi-chapter section completely builds the missing chapter numbers like chapter 20, right? If I deploy the banking / credit card solution to my server, will it run as written? Thanks, Libby --- In flexcoders@yahoogroups.

[flexcoders] Re: Resize Effect and undefined Heights

2005-05-10 Thread pk_wasp
Cool, thanks for the tip. Hope Flex 2.0 has a display:none/block type setting for containers :) --- In flexcoders@yahoogroups.com, Manish Jethani <[EMAIL PROTECTED]> wrote: > On 5/10/05, pk_wasp <[EMAIL PROTECTED]> wrote: > > > var e = new mx.effects.Resize( vbxDetails ); > > e.heightFrom = 0

Re: [flexcoders] Request for assistance

2005-05-10 Thread Manish Jethani
On 5/11/05, Steiner, Jeff <[EMAIL PROTECTED]> wrote: > Would you mind checking out the forums on Flex Authority and try to > asnwer the person with a question there? Which discussion? There's a fair amount of activity going on there. If you could post a direct link, any of us can go and help.

Re: [flexcoders] setFocus() on a TextInput

2005-05-10 Thread Manish Jethani
On 5/9/05, Jim Laing <[EMAIL PROTECTED]> wrote: > I think the right way to do this is to use the static Selection class, as in > > Selection.setFocus(feedURLText); Actually that's what feedURLText.setFocus() does too. Works for me. :-/ Yahoo! Groups Links <*> To visit your group on t

Re: [flexcoders] getting the Integerated Flex server to work

2005-05-10 Thread Manish Jethani
On 5/9/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Actually I am using firefox I hope that helps What does View Source (Ctrl + U) in Firefox show? Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from thi

Re: [flexcoders] Setting background-color style of preloader

2005-05-10 Thread Manish Jethani
On 5/10/05, Jeff Beeman <[EMAIL PROTECTED]> wrote: > How do I set the background color of the preloader that plays while the > application is loading? I can't seem to find how anywhere, and even saying > (in an external style sheet) "global { background-color: #FFCCFF; }", for > example, doesn't

Re: [flexcoders] mx;Loader/ memory leaking/ any way to programatically clear the memory/browser crashes

2005-05-10 Thread Valy Sivec
Hello,   I've checked the archived email and saw some people having the same questions in regards with the way garbage collector works. Unfortunately, I wasn't able to find anything that would help. Is there anyone out here that know how the GC works and what we need to know to avoid memory le

Re: [flexcoders] Internationalization?

2005-05-10 Thread Manish Jethani
On 5/9/05, Kent Henneuse <[EMAIL PROTECTED]> wrote: > How are others currently solving the problem of internationalizing their > Flex applications? I'd love to know too. I had posted my thoughts on my blog. Feel free to comment. I'm looking for your constructive feedback on this. http://manis

Re: [flexcoders] Resize Effect and undefined Heights

2005-05-10 Thread Manish Jethani
On 5/10/05, pk_wasp <[EMAIL PROTECTED]> wrote: > var e = new mx.effects.Resize( vbxDetails ); > e.heightFrom = 0; > e.heightTo = undefined; > e.duration=750; Try this: vbxDetails.height = undefined; // set this to undefined first e.heightTo = vbxDetails.preferredHeight; vbxDetails.height = 0; //

RE: [flexcoders] Request for assistance

2005-05-10 Thread Steven Webster
why not get them to ask over here ? :-) Steven > -Original Message- > From: flexcoders@yahoogroups.com > [mailto:[EMAIL PROTECTED] On Behalf Of Steiner, Jeff > Sent: 10 May 2005 20:56 > To: flexcoders@yahoogroups.com > Subject: [flexcoders] Request for assistance > > Manish, > > Would

[flexcoders] Request for assistance

2005-05-10 Thread Steiner, Jeff
Manish, Would you mind checking out the forums on Flex Authority and try to asnwer the person with a question there? Thanks, Jeff Steiner Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an

Re: [flexcoders] Use of DataGridRow

2005-05-10 Thread Manish Jethani
On 5/10/05, rockmoyosa <[EMAIL PROTECTED]> wrote: > I tried myDatagrid.rows, no results but with rowCount it returns there > are x number of rows. What do you mean by "no result"? The following code works just fine. Clicking on the button shows the string representation of the row objects one b

Re: [flexcoders] Copyright Symbol in MXML using Eclipse and OxygenXML

2005-05-10 Thread Darron J. Schall
Manish Jethani wrote: > 2. Save the file as utf-8. Set this up in your editor's preferences. > > In Eclipse you can find this under Window -> Preferences. Then, expand Workbench, select "Editors" then find "Text file encoding" and change it to "Other - UTF-8" That should do it.. -d

Re: [flexcoders] mx;Loader/ memory leaking/ any way to programatically clear the memory/browser crashes

2005-05-10 Thread Manish Jethani
On 5/10/05, Valy Sivec <[EMAIL PROTECTED]> wrote: > I'm wondering if adding this code on the "unload" event will help cleaning > the memorybecause I'm suspecting some memory leaking... > var source = event.target; > > for( i: Number = 0; i< source.numChildren; i++ ){ > > source.destroyCh

Re: [flexcoders] Copyright Symbol in MXML using Eclipse and OxygenXML

2005-05-10 Thread Manish Jethani
On 5/10/05, Hans Omli <[EMAIL PROTECTED]> wrote: > Error parsing MXML document: encoding is specified as UTF-8 but the file is > not UTF-8 encoded. You have 3 options: 1. Specify the correct encoding in the MXML file. iso-8859-1 is the default encoding used by my editor. What is your

RE: [flexcoders] help enabling or disabling a control when a user selects something

2005-05-10 Thread Craig Newroth
Tracy: I have attached the files that I am using as weel as the AS file for control...in the as file look around line 58 for the code that I am trying. You will need to comment out the ones that do the topmenu and the display. StandardReports.mxml is the file in question. WHen I select "all report

Re: [flexcoders] Resizing Panel back to 100%

2005-05-10 Thread JesterXL
yourPanel.width = "100%"; yourPanel.height = "100%";   - Original Message - From: Lehman, Jason To: flexcoders@yahoogroups.com Sent: Tuesday, May 10, 2005 2:09 PM Subject: [flexcoders] Resizing Panel back to 100% Does anybody know of a way to dynamically

[flexcoders] Resizing Panel back to 100%

2005-05-10 Thread Lehman, Jason
Does anybody know of a way to dynamically resize a component to 100%?  I have a panel that may not start out as 100% but would like the ability to “maximize” the panel to 100% of the window.  And I don’t mean just setting it to _root.width.  I would like the panel to resize dependent on t

RE: [flexcoders] Copyright Symbol in MXML using Eclipse and OxygenXML

2005-05-10 Thread Cathy Murphy
Save your document in UTF-8 format.  I believe that FlexBuilder does this for you automatically.   - Cathy From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Hans OmliSent: Tuesday, May 10, 2005 1:42 PMTo: FlexCodersSubject: [flexcoders] Copyright Symbol

[flexcoders] Copyright Symbol in MXML using Eclipse and OxygenXML

2005-05-10 Thread Hans Omli
Anyone know how to insert a copyright symbol in a label, such as , when using Eclipse with OxygenXML?  I get the following error: Error parsing MXML document: encoding is specified as UTF-8 but the file is not UTF-8 encoded.I don't get this error if I do the same using FlexBuilder.   Thanks!

[flexcoders] Re: Datagrid Validation/Restriction

2005-05-10 Thread beckpvt
Thanks Jim. If I have a reference to the field which is being edited, I can use it with Validators too. Thanks again! Beck Novaes --- In flexcoders@yahoogroups.com, Jim Laing <[EMAIL PROTECTED]> wrote: > On 5/10/05, beckpvt <[EMAIL PROTECTED]> wrote: > > Moreover, is it possible to restrict

RE: [flexcoders] Re: Event dispatch question

2005-05-10 Thread Gordon Smith
As you probably know, the current Flash player fails silently in cases like this, and for Flex 1.X, we made the decision not to add this kind of error handling to the framework because of the effect on SWF size. This situation is likely to change for Flex 2.0. - Gordon -Original Message-

Re: [flexcoders] Datagrid Validation/Restriction

2005-05-10 Thread Jim Laing
On 5/10/05, beckpvt <[EMAIL PROTECTED]> wrote: > Moreover, is it possible to restrict data > inside a cell - only numbers, for example? It is possible, and actually pretty easy. You usually want to set such properties at the column level, so all the ways I've seen such a thing done uses a subclass

[flexcoders] Datagrid Validation/Restriction

2005-05-10 Thread beckpvt
Hi People, Is there any way to use the Validators with a Datagrid? I need to validate individual cells. Moreover, is it possible to restrict data inside a cell - only numbers, for example? What's the best practice in these cases? Thank you! Beck Novaes Yahoo! Groups Links <*> To visi

RE: [flexcoders] Where is Source Code for Developing Rich Clients with MM Flex?

2005-05-10 Thread Steven Webster
> > I need the code for Chapter 20 especially, as I try to understand it. > Does anyone have this code? I found a few chapters on their > web site, but that is it so far. Maybe that $50.00 wasn't so > well spent after all... > http://www.iterationtwo.com/flexbook/source.html "We are also mak

[flexcoders] Where is Source Code for Developing Rich Clients with MM Flex?

2005-05-10 Thread Libby
I need the code for Chapter 20 especially, as I try to understand it. Does anyone have this code? I found a few chapters on their web site, but that is it so far. Maybe that $50.00 wasn't so well spent after all... Thanks, Libby Yahoo! Groups Links <*> To visit your group on the web, go to:

RE: [flexcoders] Re: Transitioning Flash RIA to Flex

2005-05-10 Thread Dennis Baldwin
Erik, Thanks for the great link and I'm finding this extremely useful. I was a bit scared at the thought of being closed in, but it appears that we have everything we need to begin this gradual transition. Best Regards, Dennis -Original Message- From: flexcoders@yahoogroups.com [mailto

[flexcoders] Re: Event dispatch question

2005-05-10 Thread wcucsd
Bingo. Thanks, Matt, that was it. I tested this by (temporarily) putting the addEventListener in broadcastChange() just to be sure that the customComponent was instantiated and it worked. But, it seems like I should have received some kind of feedback from the system. I realize it is a cal

Re: [flexcoders] flex app re-packaged in a war and the flexbootstrap class path

2005-05-10 Thread Jonathan Bezuidenhout
Romain, We had/have the same problem - I did some research at the time. (I believe) the Flex server code uses a call with known compatibility issues e.g. ServletContext.getRealPath("WEB-INF")... this will work fine on an exploded directory, but not necessarily in a war file - depending on your a

[flexcoders] Re: DataGrid cell problem overriding setFocusedCell() method

2005-05-10 Thread bhaq1972
Sure no problem, the easiest thing to do is replace the 2 lines i posted in my first post ie var dp = ["s1", "s2", "s3", "s4"]; cellEditor = listContent.createClassObject (mx.controls.ComboBox, editorName, EDITORDEPTH, {styleName:col, listOwner:this, dataProvider:dp, editable:true}); with the fo

[flexcoders] Re: Using browsers to access mxml files

2005-05-10 Thread dunwerkin
I use Firefox almost exclusively and do not have problems with accessing the stuff I do in Flex. If Internet Explorer (on the same machine as yur Firefox install) can access your Flex app and correctly display the SWF generated from the MXML file, your *server* setup should be correct. Thus, your

Re: [flexcoders] mx;Loader/ memory leaking/ any way to programatically clear the memory/browser crashes

2005-05-10 Thread Valy Sivec
Hello,   I'm experiencing odd behaviour from a flex app that uses mx:Loader to load some views. Under heavy load, loading/unloading a mxml file via mx:Loader puts the browser on his knees and finally crashes without logging anything in the log. I've monitored the RAM usage by the IE process and

Re: [flexcoders] Using browsers to access mxml files

2005-05-10 Thread nostra72
Ok when I try to access an mxml file with firefox even if its on a local host what happens is I get a big white screen it says the server has been accessed I just get a big white screen Yahoo! Groups Links To visit your group on the web, go to:http://groups.yahoo.com/group/flexcoders/  T

RE: [flexcoders] Using browsers to access mxml files

2005-05-10 Thread Matt Horn
Each browser has it's fans and detractors. If you could post some specifics about the problems you have been having, that'd be great.   matt horn flex docs From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED]Sent: Monday, May 09, 2005 11:

Re: [flexcoders] SynergyFLEX Framework Presentation.

2005-05-10 Thread Scott Barnes
For those who have emailed me asking for the latest build, i've uploaded a "public" preview / alpha build of the framework via my blog tonight. URL: http://www.mossyblog.com/archives/473.cfm Feedback welcomed. On 5/4/05, Scott Barnes <[EMAIL PROTECTED]> wrote: > Just a FYI followup. > > http:/

RE: [flexcoders] Flex on Tomcat

2005-05-10 Thread Steven Webster
Alon, > Someone know how to deploy Flex on Apache Tomcat 5.5.9 Server? Can you be more specific about the problems you are having ? If you deploy samples.war into the webapp directory on Tomcat, does it expand without any errors, and what happens when you then try to view the samples ? There a

RE: [flexcoders] Re: saving data from datagrid

2005-05-10 Thread Doodi, Hari - BLS CTR
Thanks Matt,       I found where the problem is. I was following The Flex Book chapter 20 Flex integration with J2EE - where in the second parameter to Object.registerClass referred to constructor of ASObject class. This mislead me. When I specify the AS class name with qualifyi

[flexcoders] Flex on Tomcat

2005-05-10 Thread Alon Havivi
Hello everyone, Someone know how to deploy Flex on Apache Tomcat 5.5.9 Server? Thanx in advance Alon Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*

RE: [flexcoders] tree with checkboxes?

2005-05-10 Thread Robert Brueckmann
Nice.  Thanks!   Robert L. Brueckmann Senior Web Developer Merlin Securities, LLC 595 Madison Avenue New York, NY 10022 p: 212.822.4821 f: 212.822.4820 From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin Sent: Monday, May 09, 20

Re: [flexcoders] Re: DataGrid cell problem overriding setFocusedCell() method

2005-05-10 Thread Jim Laing
I think I get it, and that seems like a good approach. Our approach is a little different, but they definitely overlap in what they accomplish: On 5/10/05, bhaq1972 <[EMAIL PROTECTED]> wrote: > I had a universal cellrenderer based on Ali's combobox cellrenderer > with more controls but it was

[flexcoders] Re: some datagrid ideas ...

2005-05-10 Thread Jim Laing
For those of you without access to attachments, these files are temporarily available at http://www.phlod.com/WGDataGrid.pdf http://www.phlod.com/WGDataGrid.zip Jim On 5/9/05, Jim Laing <[EMAIL PROTECTED]> wrote: > All, > > As part of developing our current application, I've been working on > c

[flexcoders] labelFunction item object and font style

2005-05-10 Thread msloumac
I am using labelFunction in a DataGridColumn to return a string based on the value of myColumn I want to set the background property of myColumn but I dont know how to get a refrence to the index position of the item object myColumn. I have tried numerous variations on item.index without success, c

[flexcoders] why can not pass arguments to flex in portal jsp page

2005-05-10 Thread loveewind
if I run this locale.jsp mx.controls.Alert.show(language); can show the language value 1.locale.jsp <%@ taglib uri="FlexTagLib" prefix="mm" %> <% String s =request.getHeader("Accept-Language"); System.out.println("locale:"+s); String l = s.substring(0,2); String c = s.substring(3,5); %> http:

Re: [flexcoders] HttpRequest and HttpSession access in Remote Obj ect

2005-05-10 Thread Pradeep Chaudhary
Hi James, Thanks for your suggestion. That was exactly the case. My RemoteObject classes were in different folder. So it was not loaded by the webapp's classloader. Copying the jar file to WEB-INF/lib worked. Thanks for the help. Pradeep On 5/9/05, James Ward <[EMAIL PROTECTED]> wrote: > Pradeep

[flexcoders] Re: why can not get the value?

2005-05-10 Thread loveewind
I have try it,but fail,it still can't executerequest.getHeader ("Accept-Language"); thank you all the same, --- In flexcoders@yahoogroups.com, "Tracy Spratt" <[EMAIL PROTECTED]> wrote: > I don't know about the error, but I do know that this won't work: >employeeSrv.send(); >s = employeeS

[flexcoders] Re: DataGrid cell problem overriding setFocusedCell() method

2005-05-10 Thread bhaq1972
Thanks Jim ! you did it again (solved my problem). [i'm in the uk so you'll probably get my responses a day later] To give you a brief idea of what i'm doing. My boss wanted a universal cellrenderer which gives a differnt cellEditor control depending on the type of data the DatagridColumn is s

RE: [flexcoders] Dynamically poplulating an editable DataGrid

2005-05-10 Thread Tim Blair
Jim, > Your approach for adding a new row to the grid is slightly incorrect: > you're pushing the new object onto the data provider of the grid. > Instead, you should use the addItem method of the grid / dataProvider. ... > I forgot to address the editing / not showing up issue. > Try using undefi

[flexcoders] flex app re-packaged in a war and the flexbootstrap class path

2005-05-10 Thread r0main
Hi, up to now I was releasing my webapp under Weblogic as a directory... Now I'd like to deploy it as a war file, generated by maven... But I've got some : Could not load user defined filter in web.xml: flex.bootstrap.BootstrapFilter. javax.servlet.ServletException: flex.server.j2ee.cache.CacheFil

[flexcoders] Use of DataGridRow

2005-05-10 Thread rockmoyosa
What I need to know is how you can use DatagridRow or how I can get all rows in a Datagrid. I tried myDatagrid.rows, no results but with rowCount it returns there are x number of rows. I want to try something like setting a dataprovider of a Datagrid and for every row I want to play an effect. But

[flexcoders] Re: Transitioning Flash RIA to Flex

2005-05-10 Thread eerkmans
Hi, Yes you can communicate with a loaded SWF from flex, see this page for extensive examples: http://www.markme.com/pent/archives/006600.cfm You can also export a movieclip in your flash library as an SWC component, and then paste the component in your flex code like this: erik. --- In fl