
[FD3]OpenTheDoc 2.2 & TocGen 1.0
OpenTheDoc: Open ASDocs for FlashDevelop 3
TocGen: Generate TOC from Standard ASDoc, including 3rd part ASDoc
Downloadhttp://code.google.com/p/asrelevant/downloads/listdev version: r19Source Filehttp://asrelevant.googlecode.com/svn/trunk/OpenTheDochttp://asrelevant.googlecode.com/svn/trunk/TocGen*
ScreenshotChangesdev version r19 2009-09-19
downloadFixed: a bug in SaveContentTreeState that causes an exception.
2.2.0 r17 2009-09-19
* Enable WebBrowser shortcuts (Ctrl+C, Ctrl+F, etc.)
* Language detecting. You have to add attribute "categories" to the root node of TOC file, with value: as2, as3, etc.
* HelpPanel = HelpContents + OpenTheDocPanel, like other FD panels
* Save and restore states, size...
* Documentation categories. Categorize by attribute "categories" of the root node of TOC file
* Press Refresh button to update Contents
* 3 more kinds of DocPath:
X:\path\to\alldocs\*, means all folders in alldocs
$(ProjectPath)\docs
$(GlobalClasspaths)\..\docs
* Tabs
* SingleInstanceMode: Only one HelpPanel for multiple FlashDevelop instances
* New search option: "Equals"
* Others refer to Settings
Installation* Main Menu - Tools - Application Files - Copy OpenTheDoc.dll to the Plugins folder
API Search* F1 to search when cursor on a word and OpenTheDoc in HelpPenal.
* Ctrl+F1 to search and open in new tab in HelpPenal.
Help Penal* Supports ASDocs with TOC(Table Of Contents) file.
* Title search.
* Shift+F1 to show, F1, Ctrl+F1, Shift+F1 to hide.
* Tabs
* SingleInstanceMode: Only one HelpPanel for multiple FlashDevelop instances
Documentations* Unorganized documentations with TOC, e.g. AS2 reference in Flash IDE.
* Well-organized documentations without TOC. You can use TocGen to generate TOCs from standard ASDocs.
* Well-organized documentations with TOC, you can find and download them in
http://livedocs.adobe.com.
* Documentation categories. Categorize by attribute "categories" of the root node of TOC file
* 4 kinds of DocPath:
X:\path\to\alldocs\as3\
X:\path\to\alldocs\*, means all folders in alldocs
$(ProjectPath)\docs
$(GlobalClasspaths)\..\docs
Some ASDocs release with Flash IDE, Flex Builder.
Flex3 reference in Flex Builder 3:
Find doc.zip and extract it to SomeFolder\doc\, put toc.xml and tocAPI.xml to the same folder.
toc.xml is for Flex Help, and tocAPI.xml is for Language Reference.
The Flex 4 ReferenceDownload:
http://www.adobe.com/go/learn_flex4_alldocumentation_enIt contains some pdfs (we don't need) and a zip file named AS3_Reference.zip,
unzip it to a folder and generate a TOC for it.
If you find there is something wrong with scrolling on these pages,
here is a work around:
Open style.css in that folder, go to line 1382, and change
Code:
div.mainright {
height:100%;
overflow-y:auto;
bottom:0px;
left:6px;
top:0px;
right:0px;
position:absolute;
}
to
Code:
div.mainright {
height:100%;
/* overflow-y:auto; */
bottom:0px;
left:6px;
top:0px;
right:0px;
position:absolute;
}
Note: TOC generated by TocGen is the same as the Flex Help TOC.
It cannot be used in Flash IDE, because Flash Help TOC is deferent from Flex Help TOC.