Re: [flexcoders] Re: Bug in Proxy

2007-10-31 Thread Johannes Nel
I emailed them a case to replicate and i saw your code in the bug base (which is the same as mine basically), other than that no info :( On 10/30/07, Derek Vadneau [EMAIL PROTECTED] wrote: Hi Johannes, Did Adobe contact you for more info about the Proxy bug?:

Re: [flexcoders] Re: Bug in Proxy

2007-10-30 Thread Derek Vadneau
Hi Johannes, Did Adobe contact you for more info about the Proxy bug?: https://bugs.adobe.com/jira/browse/ASC-2812 I posted the information I had, but the bug is still indicating incomplete and Waiting on Info. Is Adobe waiting for information from you? Or has the bug slipped into the (at least

[flexcoders] Re: Bug in Proxy

2007-09-27 Thread actionscript_czar
This doesn't seem to be a bug to me, just looking at it from a limited perspective. Image a class that lookes like this: class MyClass { public var go:Function; public function MyClass( goFunc:Function ) { this.go = goFunc; } } In this case go is a property that happens to be a

Re: [flexcoders] Re: Bug in Proxy

2007-09-27 Thread Johannes Nel
var mo:MyOther = new MyOther(); var mp:MyProxy = new MyProxy(); mo.nextfunction = mp['go'] this is a very good point. On 9/27/07, actionscript_czar [EMAIL PROTECTED] wrote: This doesn't seem to be a bug to me, just looking at it from a limited perspective. Image a class that lookes

Re: [flexcoders] Re: Bug in Proxy

2007-09-27 Thread Johannes Nel
as a side note, someone on the player team did think this was a bug before i logged it post i escalated it to people who know more people than i do :) On 9/27/07, Johannes Nel [EMAIL PROTECTED] wrote: var mo:MyOther = new MyOther(); var mp:MyProxy = new MyProxy(); mo.nextfunction = mp['go']

Re: [flexcoders] Re: Bug in Proxy

2007-09-27 Thread Johannes Nel
and here is the bug id: http://bugs.adobe.com/jira/browse/ASC-2812 On 9/27/07, Johannes Nel [EMAIL PROTECTED] wrote: as a side note, someone on the player team did think this was a bug before i logged it post i escalated it to people who know more people than i do :) On 9/27/07, Johannes Nel

Re: [flexcoders] Re: Bug in Proxy

2007-09-27 Thread Derek Vadneau
First of all, thank you Johannes for posting the bug. I entered some code in the comments. Second, yes it's a bug. Retrieving the property isn't the issue. Executing it as a function is. For example: mp['prop'] = 'something'; Why doesn't that execute getProperty? If it did Proxy would be