Re: [flexcoders] ASDOC - Error: '' is not a directory

2010-06-25 Thread Jeffry Houser
I think I had the same error; and eventually just rolled back to using the Flex 3.5 ASDoc tool. If you file a bug, let us know. On 6/25/2010 3:20 PM, atomilux wrote: I know others have encountered this problem. My question is has anyone conquered it? I found a workaround but nothing

Re: [flexcoders] ASDoc and third party libraries

2010-04-08 Thread Oleg Sivokon
Hi. http://www.flashdevelop.org/community/viewtopic.php?f=13t=4555p=21134hilit=asdocs#p21134 This may be of some help, but, maybe also not enough info... Besides, I'd try looking at this plugin: http://www.flashdevelop.org/community/viewtopic.php?f=4t=4641 AFAIK elyon has made some include /

RE: [flexcoders] ASDoc MXML

2009-11-20 Thread Stephen Gilson
Hi Amy, Are you using Flex 3 or the Flex 4 Beta? For Flex 3, the asdoc compiler does not really support MXML files. For the Flex 4 Beta, we have added support for MXML files to asdoc. You can find the doc un using it here:

RE: [flexcoders] asdoc and flexlib

2009-06-05 Thread Stephen Gilson
Is the directory that contains PromptingTextInput included in the source-path when you run asdoc? Stephen From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of arisco97 Sent: Thursday, June 04, 2009 4:54 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] asdoc

RE: [flexcoders] ASDoc and .as includes?

2009-03-09 Thread Stephen Gilson
We use include files in Flex in a lot of places with no ASDoc issues. Is the error because ASDoc is trying to process the include file as if it were a class definition? If so, you should exclude the file from the build. Or, are you getting a different error? Stephen From:

RE: [flexcoders] asdoc

2009-01-26 Thread Stephen Gilson
We use that technique with ASDoc builds all the time. What is the error that you are getting from ASDoc? Stephen From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Rich Tretola Sent: Monday, January 26, 2009 2:08 PM To: flexcoders@yahoogroups.com Subject:

Re: [flexcoders] asdoc

2009-01-26 Thread Rich Tretola
col: 1 Error: The public attribute can only be used inside a package. On Mon, Jan 26, 2009 at 3:06 PM, Stephen Gilson smgil...@adobe.com wrote: We use that technique with ASDoc builds all the time. What is the error that you are getting from ASDoc? Stephen *From:*

RE: [flexcoders] asdoc

2009-01-26 Thread Stephen Gilson
:13 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] asdoc col: 1 Error: The public attribute can only be used inside a package. On Mon, Jan 26, 2009 at 3:06 PM, Stephen Gilson smgil...@adobe.commailto:smgil...@adobe.com wrote: We use that technique with ASDoc builds all the time

Re: [flexcoders] asdoc

2009-01-26 Thread Rich Tretola
:* flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] *On Behalf Of *Rich Tretola *Sent:* Monday, January 26, 2009 3:13 PM *To:* flexcoders@yahoogroups.com *Subject:* Re: [flexcoders] asdoc col: 1 Error: The public attribute can only be used inside a package. On Mon, Jan 26

Re: [flexcoders] asdoc - generate core framework documentation

2008-07-23 Thread John Hauf
Hi, I have now managed to create a documentation of my flex 3 project that includes my own classes and all classes form the mx package. Thes is very helpful for me, because I can see all the inherited methods, events, styles etc. too in my own apidoc. The command that I have used to get the

Re: [flexcoders] ASDoc Problem

2008-01-10 Thread Tom Chiverton
On Thursday 10 Jan 2008, cksachdev wrote: have swc file (I have the code itself). I want to exclude the generation of those source files. # /opt/flex/bin/asdoc -help list|grep exclude -exclude-classes [class] [...] -exclude-dependencies -- Tom Chiverton Helping to dramatically

Re: [flexcoders] asdoc doesn't

2007-12-17 Thread Tom Chiverton
On Friday 14 Dec 2007, Tom Chiverton wrote: Can anyone explain why I don't get asdoc code for the asdoc commented public variables in the following class (Flex 3 beta 3), or is this a bug ? I've logged a bug: #SDK-14024 -- Tom Chiverton Helping to enthusiastically maintain global

Re: [flexcoders] AsDoc and libraries problem

2007-12-10 Thread Rico Leuthold
Hi, I already have the -doc-sources argument: I'm changing to the project root directory and invoke asdoc like this: asdoc -source-path . -doc-sources . ... and the flexlib is in ./libs/flexlib. So, based on the documention providing . as a -doc-sources or -source-path should

Re: [flexcoders] AsDoc and libraries problem

2007-12-10 Thread Christophe Herreman
Hi, check the -external-library-path option. Here's a snippet from an ant build file we have: exec dir=. executable=${FLEX_HOME}/bin/asdoc.exe failonerror=true arg line=-doc-sources . -source-path+=. -window-title 'Salto backend'

Re: [flexcoders] AsDoc and libraries problem

2007-12-10 Thread Rico Leuthold
Hi Christophe, Thank you very much ... that helped - and I am one step closer to a documentation. But now I'm stuck at another point. Error: [...] /asdoc/templates/asDocHelper: cannot execute asDocHelper is a compiled binary (java ?) ... and I couln't find any useful information.

Re: [flexcoders] AsDoc and libraries problem

2007-12-07 Thread Rico Leuthold
I already have the swc in the source-path. I'm running asdoc from the root of the project folder like this: asdoc -source-path . -doc-sources. thanks_rico On 06.12.2007, at 16:14, Muzak wrote: Add the location of the flexlib swc to the -source-path parameter list asdoc -source-path

Re: [flexcoders] AsDoc and libraries problem

2007-12-07 Thread Christophe Herreman
have you tried using -doc-sources path/to/project instead of -source-path? AFAIK you don't need to specify the libs you're using then. regards, Christophe --- Christophe Herreman http://www.herrodius.com http://www.pranaframework.org 2007/12/7, Rico Leuthold [EMAIL PROTECTED]: I already

Re: [flexcoders] AsDoc and libraries problem

2007-12-06 Thread Muzak
Add the location of the flexlib swc to the -source-path parameter list asdoc -source-path path/to/project path/to/flexlib ... - Original Message - From: rleuthold [EMAIL PROTECTED] To: flexcoders@yahoogroups.com Sent: Thursday, December 06, 2007 12:02 PM Subject: [flexcoders] AsDoc and

Re: [flexcoders] ASDoc tool and packages

2007-12-05 Thread Christophe Herreman
Hi Jobe, you need to specify them as arguments when invoking asdoc.exe: -package com.domain.a the a package -package com.domain.b the b package regards, Christophe --- http://www.herrodius.com http://www.pranaframework.org 2007/12/5, Jobe Makar [EMAIL PROTECTED]: Hi, I have been

Re: [flexcoders] ASDoc issue with Cairngorm

2007-10-24 Thread Tom Chiverton
On Tuesday 23 Oct 2007, [EMAIL PROTECTED] wrote: 1) Cairngorm classes used by my app are compiled to the Cairngorm.SWC and source classes are not required, just used for debugging or extension/open-source purposes. 2) Flex actually builds my project with Cairngorm source classes and the SWC

Re: [flexcoders] ASDoc issue with Cairngorm

2007-10-24 Thread Guido
I've included the Cairgorm.swc in the library path for my project, not the Cairngorm source classes in the source path. If I do remove the com/adobe/cairngorm folder from my project it still builds and runs properly, no errors thrown. When running the asdoc command on this scenario, I get errors

Re: [flexcoders] ASDoc issue with Cairngorm

2007-10-24 Thread Guido
Ok, this is really unbelievable: 1) I copied my project folder, deleted the old one and renamed the new one to the same name as the old one. 2) I opened FlexBuilder, refreshed the project workspace and run a Project Clean on my Flex project. 3) I ran the following command: asdoc -source-path my

RE: [flexcoders] ASDoc for MXML components?

2007-06-07 Thread Stephen Gilson
There is only limited support in ASDoc for MXML files. - All ActionScript entities defined in an mx:Script block, such as properties and methods, appear in the output. Items defined in MXML tags do not appear in the ASDoc output. - You can only insert an ASDoc comment in an mx:Script block of

Re: [flexcoders] ASDoc for MXML components?

2007-06-07 Thread Daniel Freiman
It looks like the mx:Metadata tag might also allows for comments, but i haven't personally confirmed that. See RichTextEditor.mxml for what I'm talking about. Daniel Freiman nondocs http://nondocs.blogspot.com On 6/7/07, Stephen Gilson [EMAIL PROTECTED] wrote: There is only limited

Re: [flexcoders] asdoc on linux, and the --footer argument

2007-05-29 Thread Tom Chiverton
Oh, I forgot to say, if I run the asdoc.jar directly: # java -Xbootclasspath/p: $FLEX_HOME/asdoc/lib/xalan.jar -classpath $FLEX_HOME/lib/asdoc.jar flex2.tools.ASDoc +flexlib=$FLEX_HOME/frameworks --output=../doc/ --exclude-dependencies=true --footer=foo bar ... it works fine. -- Tom

Re: [flexcoders] asdoc on linux, and the --footer argument

2007-05-29 Thread Tom Chiverton
On Tuesday 29 May 2007, Tom Chiverton wrote: Oh, I forgot to say, if I run the asdoc.jar directly: ... it works fine. Found the problem :-) If you suffer from this problem, the SDK's bin/asdoc file's last line needs altering to read java $VMARGS -classpath $FLEX_HOME/lib/asdoc.jar

Re: [flexcoders] ASDoc ignoring [Bindable] properties in mxml files

2007-02-02 Thread Tom Chiverton
On Thursday 01 Feb 2007, jer_ela wrote: I am finding that ASDoc (2.01) is ignoring bindable properties in mxml files public var myProperty:String gets documented [Bindable] public var myBindableProperty:String What about [Bindable] public var myBindableProperty:String=''; ? -- Tom

RE: [flexcoders] ASDoc ignoring [Bindable] properties in mxml files

2007-02-02 Thread Stephen Gilson
Do you have a test file that I can try? I just ran ASDoc on Button.as, which inserts [Bindable] before setter/getters for labelPlacement, listdata, and several other properties and it works as expected. I then modified Slider.as to add [Bindable] before allowThumbOverlap and allowTrackClick and

Re: [flexcoders] ASDoc Generation inside Flexbuilder?

2006-12-13 Thread Webdevotion
Can anyone shed a light on my problem ? The first time I ran this, it worked, I even tried to reinstall the Flex Builder Plugin. Just to make this clear, I'm working with the plugin version on top of Eclipse. Thanks ! I ran into this error when trying the example on a very simple mxml

RE: [flexcoders] ASDoc Generation inside Flexbuilder?

2006-11-01 Thread Stacy Young
Ah, will just use local build file. Just FYI for anyone looking for specifics on authoring the required ANT tasks, heres a good link. I must be blind but I couldnt see the authors name http://blog.bittube.com/2006/08/15/ant-buildxml-for-asdocs-generation/ Stace From:

Re: [flexcoders] ASDoc problems with embeded resources

2006-10-10 Thread Xavi Beumala
The fact is that the path is relative to the project:For example:[Embed(source=/../assets/icons/control_play_blue.png)]public static var playIcon:Class;And the project structure is: /root /bin /src /assets /flex /javaThe class is an a package inside flex folder. This folder is configured as a

RE: [flexcoders] ASDoc problems with embeded resources

2006-10-10 Thread Matt Chotin
Try taking out the first / and just start with ../? Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Xavi Beumala Sent: Monday, October 09, 2006 11:14 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] ASDoc problems

RE: [flexcoders] ASDoc problems with embeded resources

2006-10-09 Thread Matt Chotin
Unfortunately theres no asset path so youll need to make sure that the thing which you are embedding is in the same directory or a relative directory to the source. It cant handle the full filepath I think. Matt From: flexcoders@yahoogroups.com

RE: [flexcoders] ASDoc ignores Bindable properties?

2006-08-18 Thread Seth Hodgson
Hi James, Try putting your property documentation beneath the [Bindable] tag. E.g.: [Bindable] /** * your property documentation */ public function get propX():X { } ASDoc comments apply to what they precede. Best, Seth From: flexcoders@yahoogroups.com

Re: [flexcoders] ASDoc is now available for download

2006-08-16 Thread Tom Chiverton
On Tuesday 15 August 2006 18:24, Brian Deitte wrote: So what's being done about this?  As a long term plan, we're hoping (and starting to plan) to move the executable code over to Java.  As a short term plan, we want to get this working on Linux for the next full release. I don't want to even

RE: [flexcoders] ASDoc now available on Labs

2006-08-15 Thread Dirk Eismann
Yeah! Thanks! Dirk. -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: Monday, August 14, 2006 7:54 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] ASDoc now available on Labs

Re: [flexcoders] ASDoc is now available for download

2006-08-15 Thread Tom Chiverton
On Monday 14 August 2006 19:02, stephenmartin2 wrote: ASDoc, the tool we use at Adobe to generate documentation from ActionScript source code, is now available on labs: Rar ! -- Tom Chiverton This email is sent for and on behalf of

Re: [flexcoders] ASDoc is now available for download

2006-08-15 Thread Tom Chiverton
On Tuesday 15 August 2006 09:16, Tom Chiverton wrote: Rar ! Boo. You *knew* what would happen if you released a tool that only ran on Windows and OSX didn't you, without the source so the community can fix whatever you know is wrong with it ? -- Tom Chiverton,

RE: [flexcoders] ASDoc is now available for download

2006-08-15 Thread Brian Deitte
-Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: Tuesday, August 15, 2006 4:39 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] ASDoc is now available for download On Tuesday 15 August 2006 09:16, Tom Chiverton wrote

Re: [flexcoders] ASDoc is now available for download

2006-08-15 Thread Jeremy Lu
[mailto:flexcoders@yahoogroups.com] On Behalf Of Tom Chiverton Sent: Tuesday, August 15, 2006 4:39 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] ASDoc is now available for download On Tuesday 15 August 2006 09:16, Tom Chiverton wrote: Rar ! Boo. You *knew* what would

RE: [flexcoders] ASDoc now available on Labs

2006-08-14 Thread Clint Modien
Awesome news J thanks Matt!! Clint Modien http://esria.com p. 1.877.TRY.ESRIA ext 706 c. 1.408.489.0750 f. 1.877.828.4436 [EMAIL PROTECTED] From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: Monday, August 14, 2006 10:54 AM

RE: [flexcoders] ASDoc now available on Labs

2006-08-14 Thread Brian Deitte
And I'll be trying to awaken myself from my hibernation on flexcoders, so if you have any questions about it, fire away. -Brian -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Matt Chotin Sent: Monday, August 14, 2006 1:54 PM To:

Re: [flexcoders] ASDoc for AS3?

2006-07-11 Thread Jeremy Lu
] Im Auftrag von Gordon SmithGesendet: Freitag, 19. Mai 2006 22:32An: flexcoders@yahoogroups.comBetreff: RE: [flexcoders] ASDoc for AS3? We have an internal tool that we use to create the class documentation, but we're not ready to release it with Flex 2 because it isn't ready for prime time

Re: [flexcoders] asdoc generator for AS3?

2006-07-03 Thread Tom Chiverton
On Friday 30 June 2006 13:37, Andrew Trice wrote: Where'd you find that it will be released soon? I want to keep an eye on it. A post here, I think, from someone @adobe. ISTR it will be a labs project. -- Tom Chiverton This email is sent

Re: [flexcoders] asdoc generator for AS3?

2006-06-30 Thread Tom Chiverton
On Thursday 29 June 2006 16:52, Andrew Trice wrote: they only cover as2. I don't seen one on adobe's site. released soon Apperenty. -- Tom Chiverton This email is sent for and on behalf of Halliwells LLP. Halliwells LLP is a limited

RE: [flexcoders] asdoc generator for AS3?

2006-06-30 Thread Andrew Trice
: 866-CYNERGY -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Tom Chiverton Sent: Friday, June 30, 2006 8:27 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] asdoc generator for AS3? On Thursday 29 June 2006 16:52, Andrew Trice wrote

Re: [flexcoders] asdoc generator for AS3?

2006-06-30 Thread Jeremy Lu
Of Tom Chiverton Sent: Friday, June 30, 2006 8:27 AM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] asdoc generator for AS3? On Thursday 29 June 2006 16:52, Andrew Trice wrote: they only cover as2. I don't seen one on adobe's site. released soon Apperenty. -- Tom Chiverton

RE: [flexcoders] asdoc generator for AS3?

2006-06-30 Thread Gordon Smith
, 2006 5:38 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] asdoc generator for AS3? Hey Tom, Where'd you find that it will be released soon? I want to keep an eye on it. Thanks, Andy _ Andrew Trice Cynergy Systems, Inc. http

RE: [flexcoders] ASDoc for AS3?

2006-05-19 Thread Gordon Smith
We have an internal tool that we use to create the class documentation, but we're not ready to release it with Flex 2 because it isn't ready for prime time. It involves a bunch of steps, is tempermental, isn't documented, etc.. It also works only on AS, and not MXML, files. But we know

Re: [flexcoders] ASDoc for AS3?

2006-05-19 Thread Michael Schmalle
I have something to but, that would be ready for prime time no sooner than 4 months from now. There is more information on my blog. http://www.flex2components.com/f2cblog/2006/03/29/flex2-documentx-a-document-solution-for-flex/ It's called DocumentFX, used to be DocumentX(didn't search

Re: [flexcoders] ASDoc of createComponent()?

2005-07-20 Thread Clint Modien
http://livedocs.macromedia.com/flex/15/flex_docs_en/1145.htm http://livedocs.macromedia.com/flex/15/flex_docs_en/1146.htm and for good measure http://livedocs.macromedia.com/flex/15/flex_docs_en/1006.htm i find it helpful to use a wildcard (*) when searching livedocs On 7/20/05,

Re: [flexcoders] ASDoc of createComponent()?

2005-07-20 Thread Jeff Tapper
I've actually seen those, what I'm looking for is the ASDoc, so I can find out what class its a method of, return values, things like that. Anyone know if these methods are actually documented in ASDoc, or is it just in Developing Flex Apps docs. At 04:32 PM 7/20/2005, Clint Modien wrote:

Re: [flexcoders] ASDoc of createComponent()?

2005-07-20 Thread Clint Modien
yes they are not documented in ASDocs and it works for all classes down to UIObject the return for createComponent is the component created the return type for createComponents is *probably* void i agree they should be in the ASDocs docsOn 7/20/05, Jeff Tapper [EMAIL PROTECTED] wrote: is it