[flexcoders] Re: ASDoc ignores Bindable properties?

2006-08-18 Thread Geoffrey Williams
I came up against this a little earlier today. Make sure your comments are right before the method. Wrong: /** * Property */ [Bindable] public var property : Object; Right: [Bindable] /** * Property */ public var property : Object; I think that should do it. --- In

[flexcoders] Re: ASDoc ignores Bindable properties?

2006-08-18 Thread james_dhap
I think its bigger then this... its not a matter of my comments showing up, its the fact the properties don't show up at all in ASDoc with or without comments. J. --- In flexcoders@yahoogroups.com, Geoffrey Williams [EMAIL PROTECTED] wrote: I came up against this a little earlier today. Make

[flexcoders] Re: ASDoc ignores Bindable properties?

2006-08-18 Thread James Polanco
Sorry, my last reply was not really clear with an example. Here is what I am seeing package com.mysite.proj { [Bindable] public class myClass { public var myString:String; public var myObject:EventDispatcher; methods and such When I ASDoc this myString and myObject do not show up in

RE: [flexcoders] Re: ASDoc ignores Bindable properties?

2006-08-18 Thread Brian Deitte
[mailto:[EMAIL PROTECTED] On Behalf Of James Polanco Sent: Friday, August 18, 2006 3:34 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: ASDoc ignores Bindable properties? Sorry, my last reply was not really clear with an example. Here is what I am seeing package

[flexcoders] Re: ASDoc ignores Bindable properties?

2006-08-18 Thread James Polanco
Subject: [flexcoders] Re: ASDoc ignores Bindable properties? Sorry, my last reply was not really clear with an example. Here is what I am seeing package com.mysite.proj { [Bindable] public class myClass { public var myString:String; public var myObject:EventDispatcher