[flexcoders] Can i embed a Html table in the htmltext of a mx:Label?

2005-06-13 Thread nithya karthik
hai, Is it possible to embed a html table in the htmltext field of a label control? if yes i'w like to have a sample pls. thanks, nithyaSend instant messages to your online friends http://uk.messenger.yahoo.com Yahoo! Groups Links To visit your group on the web, go

[flexcoders] RE: [flexcoders to Abdul] passing data from jsp page to flex app- not working. Pls help. urgent

2005-06-13 Thread nithya karthik
yes exaclty. on click of an image in the tille list the popup opens. so how do i fix the problem? what has to be done? please help.. I have not used local connection previously so am not able to fix it. can u help me with the code? thanks, nithyaAbdul Qabiz [EMAIL PROTECTED] wrote: So your

[flexcoders] opening a JSP page on click of an image

2005-06-13 Thread nithya karthik
hai, How to open a JSP page on click of an image in the tile list? JSP page should open as a popup. HOw to do this? pls help with some code. thanks, nithyaSend instant messages to your online friends http://uk.messenger.yahoo.com Yahoo! Groups Links To visit your group on the web, go

Re: [flexcoders] opening a JSP page on click of an image

2005-06-13 Thread Manish Jethani
On 6/13/05, nithya karthik [EMAIL PROTECTED] wrote: How to open a JSP page on click of an image in the tile list? JSP page should open as a popup. HOw to do this? pls help with some code. mx:TileList change=openJspPage() ... mx:Script function openJspPage():Void {

Re: [flexcoders] Can i embed a Html table in the htmltext of a mx:Label?

2005-06-13 Thread Manish Jethani
On 6/13/05, nithya karthik [EMAIL PROTECTED] wrote: Is it possible to embed a html table in the htmltext field of a label control? I guess so. Why don't you try it? Yahoo! Groups Links * To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ * To

RE: [flexcoders] RE: [flexcoders to Abdul] passing data from jsp page to flex app- not working. Pls help. urgent

2005-06-13 Thread nithya karthik
Hai, Thanks alot abdul.. It works well.. Thank u so much . ur code was very helpful. thanks and regards, nithyaAbdul Qabiz [EMAIL PROTECTED] wrote: Hi Nithya, Just checked and found that everything seems to be working fine. I am not sure, why it is not working on your machine. Run the

Re: [flexcoders] opening a JSP page on click of an image

2005-06-13 Thread nithya karthik
thank u manish. Manish Jethani [EMAIL PROTECTED] wrote: On 6/13/05, nithya karthik [EMAIL PROTECTED] wrote: How to open a JSP page on click of an image in the tile list? JSP page should open as a popup. HOw to do this? pls help with some code. mx:TileList change="openJspPage()" ...mx:Script

RE: [flexcoders] Can i embed a Html table in the htmltext of a mx:Label?

2005-06-13 Thread Abdul Qabiz
Hi, Flex text area doesn't support table tag because Macromedia Flash Player textfields support limited tags. You would be required to write the parsing and rendering logic. -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Manish Jethani

Re: [flexcoders] how to change UIObject._rotation legally?

2005-06-13 Thread Manish Jethani
On 6/11/05, Aldo Bucchi [EMAIL PROTECTED] wrote: Is there a way to rotate a component without bypassing the v2 architecture? The problem with rotating an object is that it can result in changing it's box dimensions, which would create layout problems if no notifications are triggered... Even

Re: [flexcoders] [flexcoders- to abdul] image in swf. Problem again

2005-06-13 Thread Manish Jethani
On 6/11/05, nithya karthik [EMAIL PROTECTED] wrote: I tried removing the curly braces even then it didnt work.. pls help Oops, I'm sorry. I must be very sleepy when I wrote that. mx:Image id=prodThumbNail width=80 height=80 autoLoad=true

[flexcoders] printjob - dagatrid - Problem

2005-06-13 Thread francescololit
Hi, my problem is that I want to print only a record set. here is my datagrid (myDataGrid) == From | subject| date | == pippo | ciao

RE: [flexcoders] printjob - dagatrid - Problem

2005-06-13 Thread Abdul Qabiz
Hi, You can create another .mxml file for print view. After firing print command, you can populate the printView.mxml from main DataGrid's dataProvider and send it to print job instead of main datagrid. I posted something similar, might help you...

[flexcoders] [flexcoders to abdul] Passing data from one swf to another?

2005-06-13 Thread nithya karthik
hai, I have an swf from which data has to be passed on to another swf. can this be accomplished using a local connection? say i have a datagrid and an image in one swf. on click of the image a seperate swf must popup. in that swf i have a button which on click must update the datagrid in the

[flexcoders] Skinning Mediaplayback?

2005-06-13 Thread rockmoyosa
Sorry if this is a repost,but. I want know if Mediaplayback or Mediacontroller is skinnable. First of all I want that ugly green glow removed an replace it with blue. Themecolor doesn't work. So anybody?? Yahoo! Groups Links * To visit your group on the web, go to:

[flexcoders] Inline editing on double click in datagrid

2005-06-13 Thread Pradeep Chaudhary
I want to implement cell editing in datagrid based upon mouse double click. I have already implemented logic to fire doubleClick event on either cellPress or mouseUp event. Only problem is that I'am not able to stop default cell editing on single mouse click. Can anybody please suggest as to how

[flexcoders] Model class or equivalent at runtime

2005-06-13 Thread superabe superabe
Hi list, I understand that it is not possible to instantiate a Model class at runtime. Is there any other utility class in Flex that will convert Xml (nested nodes with attributes) to an object tree at runtime? Thanks, superabe Yahoo! Groups Links * To visit your group on the web, go to:

Re: [flexcoders] Http Service -- urgent

2005-06-13 Thread Sjors Pals
From the faq: 5. Guidelines to effective question-asking Include a useful subject; this will help people find their own questions and answers later. Explain what you are trying to accomplish. Explain the error (include compilation errors or a description of the runtime behavior). Be prepared

RE: [flexcoders] Http Service -- urgent

2005-06-13 Thread Dimitrios Gianninas
There is an example on: Current page: http://livedocs.macromedia.com/flex/15/flex_docs_en/1175.htm But if you can please post the error you are getting, someone will be able to help you. Dimitrios "Jimmy" Gianninas RIADeveloper Optimal Payments Inc. From: tony_lic [mailto:[EMAIL

RE: [flexcoders] Model class or equivalent at runtime

2005-06-13 Thread Abdul Qabiz
Hi, You can use HTTPService to load XML files, it would by default convert XML to Object structure. You can also speficy the other resultFormat. -abdul -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of superabe superabe Sent: Monday, June

[flexcoders] Web browser crashing on remote method call

2005-06-13 Thread Kevin Ewok
I've searched previous postings and I cannot find the solution to this problem for the life of me. I am making a remote method call which retrieves an array of JavaObjects. Within each JavaObject, i have 5 string attributes, and 1 attribute that is an array of custom Java Objects. I have

[flexcoders] Job Opening in Brazil for Flex Engineers

2005-06-13 Thread Fabio Terracini
Synex Technologies is hiring 02 (two) Flex engineers. * Technical requirements - Intermediate knowledge in Macromedia Flex - ActionScript 2.0 experience (desirable) - Software architecture experience (patterns, oo, etc) (desirable) - Experience in other programming languages (desirable) -

[flexcoders] Re: [Ann] Sydney Developers Group Meeting

2005-06-13 Thread Chris Velevitch
The next meeting is on (today) Tuesday 14th June at MLC Burwood 6pm for 6:30 start. Topic: Frameworks: What are they and why and how to use them. Includes demonstration of the use of a framework, specifically ARP, in Flash, Flex and maybe others. There will be pizza and drinks and lucky door

RE: [flexcoders] Web browser crashing on remote method call

2005-06-13 Thread Peter Farland
It sounds like you might be in an infinite loop somewhere on the client... a common way to get into such a loop is when processing object graphs with circular references. From your MXML code listing below (i.e. it shows direct binding of the RO result as a data provider) I don't see that you're

[flexcoders] RadioButton in a DataGrid

2005-06-13 Thread Kent Henneuse
Flexcoders, I am trying to put a single radio button on each row of a datagrid so that I can use it as a selection for the next piece of a workflow. So far I have it displaying correctly by using a cellRenderer that is below. The problem is that I can select more then one of the radio buttons

[flexcoders] Fade effect just showing end state ?

2005-06-13 Thread jamiebadman
Hi, I've coded a couple of AS functions which I intended to use to fade the component they're within, in and out. I've listed the functions below... However, when I actually run the code, there seems to be no actual fade effect taking place - the object just moves directly to Alpha 30 on

[flexcoders] How do I show time zone with DateFormatter

2005-06-13 Thread javawebgrrl
I have used the DateFormatter, but unfortunately cannot seem to get it to work as I like. I have declared it in my action script as follows: dateTimeFormatter = new DateFormatter(DD MMM @ LL:NN ); My problem is, I would also like to show the time zone, for example, GMT or PST. I cannot

RE: [flexcoders] Http Service -- urgent

2005-06-13 Thread Jeff Steiner
There is one located here. Let us know if that doesnt help. http://www.flexauthority.com/samplesIndex.cfm?sampleID=9 Jeff Founder Flex Authority http://www.flexauthority.com We are actively seeking contributors for the site. Have a sample that you want to share with

Re: [flexcoders] Model class or equivalent at runtime

2005-06-13 Thread superabe
ah..super... thanks...will give that a try - superabe - Original Message - From: Abdul Qabiz [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, June 13, 2005 8:59 AM Subject: RE: [flexcoders] Model class or equivalent at runtime Hi, You can use HTTPService to load XML

[flexcoders] Parse Date/Time Value from XML (in ISO Format)

2005-06-13 Thread Rick Bullotta
Given a date/time value obtained via HttpRequest or a web service in ISO format (-MM-ddTHH:mm:ss), what is the based technique for parsing this to a Date object in ActionScript? There do not seem to be any built-in date parsing functions Thanks for any suggestions! - Rick

[flexcoders] TreeDataProvider implementation

2005-06-13 Thread Sean McKibben
I believe that I need to write my own class which implements TreeDataProvider, but am finding the task a bit daunting. Has anyone written their own TreeDataProvider that would be willing to share it with me or the list? Is anyone aware of any articles about implementing TreeDataProvider? I

[flexcoders] Re: Web browser crashing on remote method call

2005-06-13 Thread Kevin Ewok
Pete- Thanks for your help...I've finally identified the problem (but still not the solution). Although I did have a reference of my siblingPojo back to my MainPojo, commenting out that code did not solve the problem. However, my SiblingObject has an attribute that is part of a class with

Re: [flexcoders] how to change UIObject._rotation legally?

2005-06-13 Thread Aldo Bucchi
Guys, thanks for the answers. I'm looking at overriding the methods. Best Regards, Aldo On 6/13/05, Manish Jethani [EMAIL PROTECTED] wrote: On 6/11/05, Aldo Bucchi [EMAIL PROTECTED] wrote: Is there a way to rotate a component without bypassing the v2 architecture? The problem with

RE: [flexcoders] Cairngorm .99 ViewHelper Bug ?

2005-06-13 Thread Alistair McLeod
Hi Rich, Has you debugging narrowed it down any? Does the unload handler get called? When the view is created for the second time, is an exception thrown? Do any errors appear in flashlog.txt? It's hard to know whats going on unless you post all your code or give us more info. Cheers, Ali --

[flexcoders] Re: AutoTestFlash

2005-06-13 Thread tiago_simoes
Hi, Did you use file:/// sytax in Swf URL? Cheers, Tiago --- In flexcoders@yahoogroups.com, Matt Chotin [EMAIL PROTECTED] wrote: It did work for me, pretty nice. Did you have to modify components to make it work or are you just listening to their major events?

RE: [flexcoders] Http Service -- urgent

2005-06-13 Thread Tracy Spratt
Also, here is an example that uses Actionscript to build the request parameters. http://www.cflex.net/showfiledetails.cfm?ChannelID=1Object=FileobjectID=18 Tracy From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Dimitrios Gianninas Sent:

RE: [flexcoders] Re: Web browser crashing on remote method call

2005-06-13 Thread Peter Farland
Unfortunately we did not remove statics from the Java Bean serialization rules of RemoteObject in Flex 1.5. It's a known issue and will be fixed going forward. As a work around for now would it be possible to move the static final to another context? Such as a class called StaticConstants?

[flexcoders] Re: Flash V2 Components and Flex Compatibility

2005-06-13 Thread alex_harui
You'll probably have to provide more details about how the List is being used, but in general, we don't promise that Flash V2 modules drop into Flex. One of the main issues is that Flex is entirely dynamic. It instantiates all of the components on-the-fly. In Flash one can easily place

[flexcoders] Re: Inline editing on double click in datagrid

2005-06-13 Thread alex_harui
Unfortunately, I can't think of a documented way to do this. I will suggest looking in DataGridRow.as source in Flash MX 2004. It might give you a clue how to do it, but we can't officially support it from Macromedia. --- In flexcoders@yahoogroups.com, Pradeep Chaudhary [EMAIL PROTECTED]

RE: [flexcoders] Re: RadioButton in a DataGrid

2005-06-13 Thread Kent Henneuse
Awesome Alex That was the trick. Just a scoping problem but by tricking with the init I got the right behavior. -Kent -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of alex_harui Sent: Monday, June 13, 2005 10:02 AM To:

RE: [flexcoders] Re: Flash V2 Components and Flex Compatibility

2005-06-13 Thread Dennis Baldwin
Alex, Thanks for your prompt reply. As it currently stands our components are instantiated non-dynamically (ie from within the Flash IDE). Since we basically design the view in the Flash IDE and register with our controller (AS 2.0 class) then it probably won't take much to refactor

Re: [flexcoders] Parse Date/Time Value from XML (in ISO Format)

2005-06-13 Thread Manish Jethani
On 6/13/05, Rick Bullotta [EMAIL PROTECTED] wrote: Given a date/time value obtained via HttpRequest or a web service in ISO format (-MM-ddTHH:mm:ss), what is the based technique for parsing this to a Date object in ActionScript? import mx.formatter.DateFormatter; var s:String =

Re: [flexcoders] Re: TreeDataProvider implementation

2005-06-13 Thread Sean McKibben
I think the main reason I think I need to make my own TreeDataProvider is that the CF object persistence backend I'm integrating with requires that I send back deleted objects with a property, deleted=true. So there will be a bunch of objects which I don't want to show in my tree data with

Re: [flexcoders] Fade effect just showing end state ?

2005-06-13 Thread Manish Jethani
On 6/13/05, jamiebadman [EMAIL PROTECTED] wrote: However, when I actually run the code, there seems to be no actual fade effect taking place - the object just moves directly to Alpha 30 on fadeOutEffect and back to 100 on fadeInEffect. There's no actual gradual fading at all. Try increasing

[flexcoders] Re: Popup windows behaving oddly

2005-06-13 Thread Eric Raymond
The parent of the popup is set to this. We pass no arguments to centerPopup. According to the docs this uses the parent specified in createPopup. (But I've also tried it with this to no avail.) Yes, I understand that it is hard to dig in without a test case. Sadly popups work well in some

Re: [flexcoders] Cairngorm .99 ViewHelper Bug ?

2005-06-13 Thread Rich Tretola
The issue is a timing issue as in testing I was destroying and creating the same view on consecutive lines which didn't give the unload event a chance the unload the viewhelper. So it was an issue where it was trying to create the second view before the first's viewhelper was unregistered. How

RE: [flexcoders] Cairngorm .99 ViewHelper Bug ?

2005-06-13 Thread Steven Webster
Rich, I'd be interested to know what it is you're doing in your view helpers, and whether you've considered the model locator strategy if you're using 0.99. We could certainly discuss how you alleviate your timing issues; however, perhaps a change of strategy will remove the problem entirely ?

[flexcoders] Re: Web browser crashing on remote method call

2005-06-13 Thread Kevin Ewok
yes. we're going to plan to stub it in as a constants until 2.0 is released. However, I'm still having display problems. From the gateway debug, I can see that my MainPOJO and all of it's nested objects have data, yet it displays nothing in it's cell when I try to access it directly or via the

RE: [flexcoders] Re: Web browser crashing on remote method call

2005-06-13 Thread Peter Farland
Can you post the constructor code for the AS representation of the POJO classes? -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kevin Ewok Sent: Monday, June 13, 2005 4:14 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Web

[flexcoders] odd behavior...

2005-06-13 Thread Drew Falkman
Hi- I have this odd behavior going on in my application that Im hoping someone can help me figure out. Basically heres what happens: 1) A component broadcasts an event containing a URL to an XML file when an item is clicked on in a datagrid. 2) The controller receives this event,

[flexcoders] NetConnection Debugger Fails w/ Named Remote Objects

2005-06-13 Thread dave buhler
As I posted previously, my NetConnection Debugger fails. After talking with another FlexCoder this weekend who had the same problem, it turns out that the NetConnection Debugger only shows service calls (I can't even get to results) for the first Named Remote Object it finds. It continues to

[flexcoders] Re: odd behavior...

2005-06-13 Thread temporal_illusion
Hi, this is because you are making the web service call and then setting the playerInfo instantly, without waiting for the result of the web serivce. The Flash player doesn't block (stop and wait) after you give the podData.send(), it simply starts the call then continues executing your code.

[flexcoders] Re: Web browser crashing on remote method call

2005-06-13 Thread Kevin Ewok
The 2 constructors for my MainPojo and SiblingPojo (for the Java classes and AS classes) both had only a single empty constructor like below. Again, thanks for your help. AS--- public function SiblingPojo(){} Java- public SiblingPojo(){} --- In flexcoders@yahoogroups.com, Peter Farland [EMAIL

[flexcoders] Getting client's IP address

2005-06-13 Thread Jeff Beeman
Weve got a Flex app that is calling a PHP script to retrieve the end-users IP address (for an authentication procedure), but the IP address that is returned is the address of the Flex server, not the client. Any thoughts on why this is happening? And, how do we work around it?

[flexcoders] Re: Getting client's IP address

2005-06-13 Thread temporal_illusion
I assume it's a http service you're using that calls the PHP page to get the IP? I think the web service calls are proxied by default. Try adding the useProxy=false property in the http service, that should tell the app to go to the web service directly. Jason --- In

RE: [flexcoders] Re: Web browser crashing on remote method call

2005-06-13 Thread Peter Farland
Hmm, do you need to add curly braces as I have below? mx:DataGridColumn columnName={siblingObject.myValue} headerText=myV / -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Kevin Ewok Sent: Monday, June 13, 2005 5:00 PM To:

[flexcoders] Remoting peformance for large lists

2005-06-13 Thread Alex Cruikshank
Hi all, We're having some peformance problems on the client side when loading large lists of object graphs through our remoting inteface. I've written a simple test case to characterize the problem (the mxml file and remote object are attached), and I'm seeing some behavior I can't explain. I

[flexcoders] Re: Web browser crashing on remote method call

2005-06-13 Thread Kevin Ewok
It doesn't compile if you do that! :-) Man this is frustrating. Even though it is a nested pojo, the attribute of the sibling object is a String. --- In flexcoders@yahoogroups.com, Peter Farland [EMAIL PROTECTED] wrote: Hmm, do you need to add curly braces as I have below?

[flexcoders] Re: Getting client's IP address

2005-06-13 Thread heybluez
Hi, I do this with a simple .jsp script in the Flex app. You can include something like the following: getIPAddress.jsp: clientip valGet%=request.getRemoteAddr()%/valGet /clientip Then call that within Flex in an HTTPService and parse the return. HTTPService.result.clientip.valGet , etc

[flexcoders] Re: Getting client's IP address

2005-06-13 Thread Andrew Spaulding
You could also pass it to your mxml file as a flashvar, as long as you have the variable declared in your root application. I do something similar to the following from within a jsp page: !-- index.jsp -- html head titleflex/title %@ taglib uri=FlexTagLib prefix=mm / % String ipAddress =

RE: [flexcoders] Remoting peformance for large lists

2005-06-13 Thread Matt Chotin
Have you ready my large data articles? Probably explains whats going on as far as deserialization and whatnot (and potential approaches that may or may not be applicable to charts). http://www.markme.com/mchotin/archives/cat_data_management.cfm down at the bottom. Matt

[flexcoders] Re: Popup windows behaving oddly

2005-06-13 Thread Andrew Spaulding
I have had similar experiences where a popup appears to be shown behind the application, and by having modal transparency set, you can see that the popup method is called because the application dims out. I have also played with popups from an application loaded within mx:Loader and have also had

[flexcoders] Re: Popup windows behaving oddly

2005-06-13 Thread Eric Raymond
Thanks I will try that. I tend to not explicitly size my popups and let Flex determine the sizing. Is that necessary? --- In flexcoders@yahoogroups.com, Andrew Spaulding [EMAIL PROTECTED] wrote: I have had similar experiences where a popup appears to be shown behind the application, and by

[flexcoders] Re: Popup windows behaving oddly

2005-06-13 Thread Andrew Spaulding
No it shouldn't be ncessary. I just like to have the little bit of extra control. Andrew. --- In flexcoders@yahoogroups.com, Eric Raymond [EMAIL PROTECTED] wrote: Thanks I will try that. I tend to not explicitly size my popups and let Flex determine the sizing. Is that necessary? ---

RE: [flexcoders] Re: Getting client's IP address

2005-06-13 Thread Jeff Beeman
Thanks, all! I will let you know if one of these works for us, but they all sound like reasonable solutions :-) /** * Jeff Beeman **/ -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL

Re: [flexcoders] Remoting peformance for large lists

2005-06-13 Thread Alex Cruikshank
Hi Matt, I have read (and now re-read) your excellent large data articles (which are now well established within the Flex literature's cannon). This exercise was an attempt to squeeze all the performance out of our requests before we implement paging and to try to establish an optimum page size.

[flexcoders] Re: Popup windows behaving oddly (partial solution)

2005-06-13 Thread Eric Raymond
This solution combined with Andrew Spaulding's suggestion (user _root as the parent in createPopUp and MovieClip(mx.core.Application.application) in centerPopUp seemsto be working. But neither alone is enough. FYI, in the cause where height=0, the page contained a form (and I've seen forms do

RE: [flexcoders] Re: odd behavior...

2005-06-13 Thread Drew Falkman
You rock. Thanks. From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of temporal_illusion Sent: Monday, June 13, 2005 1:52 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: odd behavior... Hi, this is because you are making the web

[flexcoders] Re: Web browser crashing on remote method call

2005-06-13 Thread Kevin Ewok
I got it to work (for now) by creating an additional getter on my mainPojo to return the attributes of the sibling Pojo...extra code though on our domain objects...grrr. thanks again though for your help. --- In flexcoders@yahoogroups.com, Kevin Ewok [EMAIL PROTECTED] wrote: It doesn't

Re: [flexcoders] Re: Popup windows behaving oddly (partial solution)

2005-06-13 Thread JesterXL
centerPopUp makes them align and center. - Original Message - From: Eric Raymond [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Monday, June 13, 2005 7:49 PM Subject: [flexcoders] Re: Popup windows behaving oddly (partial solution) I can make the popup not appear behind the

[flexcoders] iconFunction with List

2005-06-13 Thread heybluez
Hello This should work..shouldn't? --- MXML mx:List id=subGroupList labelField=sub_desc iconFunction=subGroupsIcon width=100% height=100% fontWeight=bold fontSize=11 / --- AS // Embed icons. [Embed(images/groupFolderSmall.jpg)] var

[flexcoders] Re: iconFunction with List

2005-06-13 Thread Andrew Spaulding
it should work. I've got the same code :p Except where you are embedding the image my only difference is i have a leading ./ before images, so it would look like [Embed(./images/groupFolderSmall.jpg)] It shouldnt make any difference though. Andrew. --- In flexcoders@yahoogroups.com, heybluez

RE: [flexcoders] Remoting peformance for large lists

2005-06-13 Thread Jeff Steiner
Take a peek a http://www.tomlink.net and look for his WebService / AMF comparison. You feed it the details of the request and it times how long it takes to crunch through the data. It is a very cool application. BTW if anyone on this list knows Tom I would love to get an email for

Re: [flexcoders] Re: Inline editing on double click in datagrid

2005-06-13 Thread Pradeep Chaudhary
I was not able to find source for DataGridRow.as. It will be great if you can attach a copy of source code. Pradeep On 6/13/05, alex_harui [EMAIL PROTECTED] wrote: Unfortunately, I can't think of a documented way to do this. I will suggest looking in DataGridRow.as source in Flash MX 2004.

RE: [flexcoders] Re: Getting client's IP address

2005-06-13 Thread Jeff Steiner
FYI: Someone contributed an example of this to the site this morning. I just posted it and you can find it: http://www.flexauthority.com/samplesIndex.cfm?sampleID=39 Let me know if that helps. Jeff Founder Flex Authority http://www.flexauthority.com We are actively seeking