RE: [Flashcoders] ASDoc with Flash CS3
Hi Frank, I'm not using any .swc's in this project... perhaps that's causing my problem. I did actually get -exclude-classes [className] to work... but only if I also use -exclude-dependencies true If any classes you document are including classes you want to exclude, they magically get included unless you exclude dependencies as well. (That's a mouthful) *.* Sherri -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Frank Pepermans Sent: Monday, July 23, 2007 11:35 AM To: [email protected] Subject: RE: [Flashcoders] ASDoc with Flash CS3 I have this in a .bat file in the root of the project I want to export in asdoc @ECHO OFF :BEGIN "C:\Program Files\Adobe\Flex Builder 3\sdks\moxie\bin\asdoc.exe" -source-path . -doc-sources . -main-title "Documentation" -window-title "Documentation" -output asdoc PAUSE > NUL :END This generally works, but it does have problems with classes in library paths I keep a lot of code in multiple swc files which are then imported in a new as3 project and unless I copy the swc code packages directly to my project class directory, asdoc throws errors. Also it seems that -exclude-classes [className] doesn't work? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sherri Sent: 23 July 2007 17:17 To: [email protected] Subject: [Flashcoders] ASDoc with Flash CS3 Just wondering if anyone has successfully used ASDoc with AS3 classes for flash? I have used it for Flex projects no problem (so I don't need help with that). but it seems to take a lot of tinkering to get it to work with Flash projects and I still have the asdoc tool failing. If not, I'd be interested in learning about other similar doc tools to use with Flash AS3 projects. Thanks *.* Sherri ___ [email protected] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com ___ [email protected] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com -- No virus found in this incoming message. Checked by AVG Free Edition. Version: 7.5.476 / Virus Database: 269.10.14/912 - Release Date: 7/22/2007 7:02 PM ___ [email protected] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] ASDoc with Flash CS3
Here's my snip: // naviation to FlexSDK cd ../../Program Files/FlexSDK/bin // Run ASDoc asdoc -source-path S:\demo\game\source\com -doc-classes prism.engine.World -main-title "Prism Game Engine Documentation" -window-title "Prism Game Engine Documentation" -output S:\demo\game\source\docs -- this worked for me because the World.as class links to all classes in the project I used this for reference: http://livedocs.adobe.com/flex/201/html/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Book_Parts&file=asdoc_127_2.html Click the link at the bottom 'Running the ASDoc tool' HTH, James Sherri wrote: YAY! Someone got it working. I'm getting a bunch of compile errors too, so I tried setting -strict=false but that seemed to just break it altogether... is it possible for you to send me a snippet of what worked for you? It might show me what I'm missing. *.* Sherri -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of James Marsden Sent: Monday, July 23, 2007 11:24 AM To: [email protected] Subject: Re: [Flashcoders] ASDoc with Flash CS3 Hey Sherri, I got it working, but it took a lot of code tweaking - I'd converted a game engine from AS2, so there were endless compile errors on syntax etc. J Sherri wrote: Just wondering if anyone has successfully used ASDoc with AS3 classes for flash? I have used it for Flex projects no problem (so I don't need help with that). but it seems to take a lot of tinkering to get it to work with Flash projects and I still have the asdoc tool failing. If not, I'd be interested in learning about other similar doc tools to use with Flash AS3 projects. Thanks *.* Sherri ___ [email protected] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com ___ [email protected] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com ___ [email protected] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
RE: [Flashcoders] ASDoc with Flash CS3
I have this in a .bat file in the root of the project I want to export in asdoc @ECHO OFF :BEGIN "C:\Program Files\Adobe\Flex Builder 3\sdks\moxie\bin\asdoc.exe" -source-path . -doc-sources . -main-title "Documentation" -window-title "Documentation" -output asdoc PAUSE > NUL :END This generally works, but it does have problems with classes in library paths I keep a lot of code in multiple swc files which are then imported in a new as3 project and unless I copy the swc code packages directly to my project class directory, asdoc throws errors. Also it seems that -exclude-classes [className] doesn't work? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sherri Sent: 23 July 2007 17:17 To: [email protected] Subject: [Flashcoders] ASDoc with Flash CS3 Just wondering if anyone has successfully used ASDoc with AS3 classes for flash? I have used it for Flex projects no problem (so I don't need help with that). but it seems to take a lot of tinkering to get it to work with Flash projects and I still have the asdoc tool failing. If not, I'd be interested in learning about other similar doc tools to use with Flash AS3 projects. Thanks *.* Sherri ___ [email protected] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com ___ [email protected] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
RE: [Flashcoders] ASDoc with Flash CS3
YAY! Someone got it working. I'm getting a bunch of compile errors too, so I tried setting -strict=false but that seemed to just break it altogether... is it possible for you to send me a snippet of what worked for you? It might show me what I'm missing. *.* Sherri -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of James Marsden Sent: Monday, July 23, 2007 11:24 AM To: [email protected] Subject: Re: [Flashcoders] ASDoc with Flash CS3 Hey Sherri, I got it working, but it took a lot of code tweaking - I'd converted a game engine from AS2, so there were endless compile errors on syntax etc. J Sherri wrote: > Just wondering if anyone has successfully used ASDoc with AS3 classes for > flash? I have used it for Flex projects no problem (so I don't need help > with that). but it seems to take a lot of tinkering to get it to work with > Flash projects and I still have the asdoc tool failing. > > > > If not, I'd be interested in learning about other similar doc tools to use > with Flash AS3 projects. > > > > Thanks > > > > *.* Sherri > > ___ > [email protected] > To change your subscription options or search the archive: > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders > > Brought to you by Fig Leaf Software > Premier Authorized Adobe Consulting and Training > http://www.figleaf.com > http://training.figleaf.com > > > ___ [email protected] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com -- No virus found in this incoming message. Checked by AVG Free Edition. Version: 7.5.476 / Virus Database: 269.10.14/912 - Release Date: 7/22/2007 7:02 PM ___ [email protected] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
Re: [Flashcoders] ASDoc with Flash CS3
Hey Sherri, I got it working, but it took a lot of code tweaking - I'd converted a game engine from AS2, so there were endless compile errors on syntax etc. J Sherri wrote: Just wondering if anyone has successfully used ASDoc with AS3 classes for flash? I have used it for Flex projects no problem (so I don't need help with that). but it seems to take a lot of tinkering to get it to work with Flash projects and I still have the asdoc tool failing. If not, I'd be interested in learning about other similar doc tools to use with Flash AS3 projects. Thanks *.* Sherri ___ [email protected] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com ___ [email protected] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com

