[flexcoders] Re: Another data binding question - on class 'XML' (class is not an IEventDispa

2007-03-06 Thread coderjun
All, I was troubleshooting this binding warning the other day myself and ran across this blog - that at least in my case - addressed the issue, complete with a detailed explanation and code examples. The key is using an ObjectProxy. http://blog.wheelerstreet.com/?p=16

[flexcoders] Crossdomain for president

2007-03-01 Thread coderjun
Howdy all, Don't worry, I already voted for the Maps API: http://tech.groups.yahoo.com/group/flexcoders/message/64243 http://tech.groups.yahoo.com/group/flexcoders/message/64243 However, that made me think of another suggestion that will help us Flexers... Wouldn't it be nice if Yahoo starts

[flexcoders] Re: Windows Vista Flex

2007-02-24 Thread coderjun
Bryan, I upgraded my Dell Inspiron 6000 laptop from Windows XP to Windows Vista Business. First I tried the normal upgrade process, but my laptop was so cluttered and slow that I ended up running the clean upgrade. Anyway, in regard to Flex Builder 2.0.1, I use the Standalone version every day,

[flexcoders] Re: Flex 2 code to reload the entire application?

2007-02-03 Thread coderjun
Dan, Like Tracy, I haven't had a chance to use the navigateToUrl either, but what I have implemented before successfully in my apps is to use the ExternalInterface to call a JavaScript function after the execution of any of my Flex logout code. Example:

[flexcoders] Re: Could it really take so much code to color a row in a DataGrid..?

2007-02-01 Thread coderjun
Paul, Check out Mike Nimer's Blog: http://www.mikenimer.com/index.cfm/2006/10/3/BackgroundRowColor-DataGrid-component -Jun --- In flexcoders@yahoogroups.com, paulwelling [EMAIL PROTECTED] wrote: Hello Sanjay, Thanks for the response... I should have been much more explicit in my

[flexcoders] Re: Flex 2 profiler

2007-01-29 Thread coderjun
I concur, I remember seeing the Profiler demoed at MAX - very nice - and it would be awesome if that could be posted to Adobe labs, bugs and all. :) -Jun --- In flexcoders@yahoogroups.com, Reid Priedhorsky [EMAIL PROTECTED] wrote: Matt Chotin wrote: There isn't right now. We are looking to

[flexcoders] Re: E4X and nodes without children

2006-12-21 Thread coderjun
@yahoogroups.com, coderjun [EMAIL PROTECTED] wrote: Hello, I have been working on a tree control that's driven by an xml file. What I have be trying to do is to select an item in the tree by first searching the dataProvider, the XML object that represents the xml file. What I have noticed

[flexcoders] Re: E4X and nodes without children

2006-12-21 Thread coderjun
/21/06, coderjun [EMAIL PROTECTED] wrote: Hello, I was just curious if anyone had an idea as to why trace examples examples 3,4,and 5 for myXML1 and myXML3 in the code snippet from the last post don't return what you'd expect from viewing the xml whereas 3,4,5 for myXML2 does. I think

[flexcoders] Re: Trace?

2006-12-20 Thread coderjun
I think the firefox extention that Brian was talking about is this: http://www.sephiroth.it/weblog/archives/2006/10/post_1.php -Jun --- In flexcoders@yahoogroups.com, Brian Holmes [EMAIL PROTECTED] wrote: Debug mode is the only option as far as I know. But you should check out the

[flexcoders] Re: TypeError: Error #1009 - httpservice

2006-12-20 Thread coderjun
Titipouns, The reason you are getting the null reference error is because you are trying to assign the result of the HttpService call before the call has completed. (Remember, in Flex you have to remember things can work asynchronously.) In other words, rather than calling the affichebonjour()

[flexcoders] E4X and nodes without children

2006-12-19 Thread coderjun
Hello, I have been working on a tree control that's driven by an xml file. What I have be trying to do is to select an item in the tree by first searching the dataProvider, the XML object that represents the xml file. What I have noticed is that the expressions , , and == don't seem to work on

[flexcoders] Flex eye candy and memory consumption

2006-12-06 Thread coderjun
Hello, I was wondering if anyone has run across memory consumption issues when using some of the eye candy in the Flex framework. Here are a couple of examples of what I am referring to: 1. The translucent overlay on the rest of the app when using Alert.show in modal mode. (vs. using the flag

[flexcoders] Re: Flex eye candy and memory consumption

2006-12-06 Thread coderjun
initialized, etc. Patrick coderjun a écrit : Hello, I was wondering if anyone has run across memory consumption issues when using some of the eye candy in the Flex framework. Here are a couple of examples of what I am referring to: 1. The translucent overlay on the rest of the app

[flexcoders] Re: Viewstack.removeChildAt() and Garbage Collection

2006-12-04 Thread coderjun
Hi Ralph, I know this thread is slightly old, but I have been debugging some garbage collection issues in an app I'm working on right now. I noticed you said the following when responding to Bjorn: You'll have to remove all references to a specfic object to actually have it removed. We've

[flexcoders] Re: DataGrid horizontalScrollPosition and scrollbar out of sync

2006-12-04 Thread coderjun
. Anyone on the Flexcoders group know of a fix that doesn't require a hack workaround? :) Anyway, thanks again Igor! -Jun --- In flexcoders@yahoogroups.com, Igor Costa [EMAIL PROTECTED] wrote: Just uses 0 instead of 2. regards. On 11/30/06, coderjun [EMAIL PROTECTED] wrote: Hello

[flexcoders] Re: Viewstack.removeChildAt() and Garbage Collection

2006-12-04 Thread coderjun
(?), Currently involved in another harsh deadline, so I'll get back too you soon as possible, with a longer explanation, or probably a blog post. Ralph. On 12/4/06, coderjun [EMAIL PROTECTED] wrote: Hi Ralph, I know this thread is slightly old, but I have been debugging some

[flexcoders] Re: Mercury QT Pro - LoaderRunner + Flex

2006-12-04 Thread coderjun
Lance, From what I've heard through the grapevine, you can request the Quick Test Pro Flex plugin from Adobe. However I'm not exactly sure who to contact for it. Maybe someone else in the group has this info or has received the plugin before? In regard to LoadRunner and AMF3 support, I have

[flexcoders] DataGrid horizontalScrollPosition and scrollbar out of sync

2006-11-30 Thread coderjun
Hello, I was wondering if anyone has run into this scenario and has an elegant solution. Symptom: When a DataGrid comes into view that has the column set to an index other than 0, the scrollbar is out of whack. The only way to get it to sync up again is via user interation. (For instance,

[flexcoders] Re: Flex 2 ColdFusion Apps with IIS and Virtual directories.

2006-08-19 Thread coderjun
This is probably a hack, but what you can do is: 1. Create a directory called WEB-INF in ColdFusion's wwwroot in IIS. By default C:\Inetpub\wwwroot\ 2. Copy the flex directory and contents, including services-config.xml, from C:\CFusionMX7\wwwroot\WEB-INF\ to the WEB-INF directory you created