Search found 13 matches
- Wed Jan 22, 2014 2:12 pm
- Forum: Microsoft CHM Help
- Topic: Bookmark links not working when using latest IE version
- Replies: 2
- Views: 2522
Re: Bookmark links not working when using latest IE version
On further investigation, there appears to be a document.documentMode attribute in IE browsers that specifies which version of the rendering engine is being used. Perhaps this could be used in the code above to verify that IE 7 rendering engine is actually being used. As a quick test I tried the ...
- Wed Jan 22, 2014 1:49 pm
- Forum: Microsoft CHM Help
- Topic: Bookmark links not working when using latest IE version
- Replies: 2
- Views: 2522
Re: Bookmark links not working when using latest IE version
I've looked into this issue a little further and I believe the cause of this behavior is from the FMCCheckForBookmark function in MadCapBody.js . Specifically, this portion of code:
if ( navigator.userAgent.Contains( "MSIE 7", false ) )
{
// IE 7 bug: Older builds of IE 7 have the following bug ...
if ( navigator.userAgent.Contains( "MSIE 7", false ) )
{
// IE 7 bug: Older builds of IE 7 have the following bug ...
- Tue Jan 07, 2014 1:54 pm
- Forum: Microsoft CHM Help
- Topic: Bookmark links not working when using latest IE version
- Replies: 2
- Views: 2522
Bookmark links not working when using latest IE version
I've added the following meta tag to the head section of my CHM master page in order to use the latest IE rendering engine:
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
However, I noticed that this causes bookmark links to fail when referencing a different page. When a bookmark link is ...
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
However, I noticed that this causes bookmark links to fail when referencing a different page. When a bookmark link is ...
- Tue Sep 10, 2013 12:04 pm
- Forum: Flare's General Discussion
- Topic: Detecting errors with auto generated pages
- Replies: 3
- Views: 1416
Re: Detecting errors with auto generated pages
I'm assuming this isn't currently supported then. If so, I think it would be nice to have a feature to find all topics containing invalid tags (View -> Project Analysis -> Invalid Tags).
- Wed Sep 04, 2013 10:29 am
- Forum: Flare's General Discussion
- Topic: Creating a sequence from topics
- Replies: 1
- Views: 703
Creating a sequence from topics
Our documentation has a section containing many step-by-step tutorials. Each tutorial consists of multiple topics. At the bottom of each topic, we display a list of all topics in the current tutorial, with the current topic in bold, and a next/back button to navigate through the tutorial. Here is a ...
- Tue Aug 27, 2013 8:11 am
- Forum: Flare's General Discussion
- Topic: Externally referenced section of TOC
- Replies: 2
- Views: 992
Re: Externally referenced section of TOC
Thanks, that worked perfectly!
- Mon Aug 26, 2013 8:07 am
- Forum: Flare's General Discussion
- Topic: Externally referenced section of TOC
- Replies: 2
- Views: 992
Externally referenced section of TOC
A portion of our documentation and TOC is automatically generated by an external tool. I was able to update the tool to output the TOC to the Flare fltoc format. However, I still need to manually copy/paste this into the main projects TOC. Is it possible to have two separate TOC files and have the ...
- Mon Aug 26, 2013 8:04 am
- Forum: Flare's General Discussion
- Topic: Detecting errors with auto generated pages
- Replies: 3
- Views: 1416
Detecting errors with auto generated pages
A portion of our documentation is automatically generated by an external tool. I updated the tool to add the proper references to the header/footer flsnp files. After generating the files I built a HTML Help version of the project. The build output dialog did not list any items in the errors tab ...
- Thu Aug 08, 2013 2:38 pm
- Forum: Flare's General Discussion
- Topic: Using variable in HTML5 skin caption
- Replies: 3
- Views: 1560
Re: Using variable in HTML5 skin caption
Great, thanks!
- Wed Aug 07, 2013 1:38 pm
- Forum: Flare's General Discussion
- Topic: Using variable in HTML5 skin caption
- Replies: 3
- Views: 1560
Using variable in HTML5 skin caption
I'd like to use a variable as the "Caption" for my HTML5 skin. I created a variable called Title in the Primary variable set. Then I entered "[%=Primary.Title%]" in the caption field, however it doesn't replace the text with the variable value. This works correctly with the HTML Help skin. Are ...
- Wed Jul 31, 2013 8:34 am
- Forum: Importing
- Topic: Spaces between span tags removed
- Replies: 1
- Views: 1317
Spaces between span tags removed
I'm importing from a RoboHelp project and noticed that Flare is removing spaces between span tags. For example, the following HTML code:
<span class="foo">hello</span> <span class="bar">world</span>
gets converted to:
<span class="foo">hello</span><span class="bar">world</span>
Our ...
<span class="foo">hello</span> <span class="bar">world</span>
gets converted to:
<span class="foo">hello</span><span class="bar">world</span>
Our ...
- Tue Jul 30, 2013 7:43 pm
- Forum: Web-based Outputs
- Topic: Use index.htm instead of Default.htm
- Replies: 2
- Views: 1304
Re: Use index.htm instead of Default.htm
Thanks Nita, that did it! Just finished converting our documentation from RoboHelp to Flare, and our webhelp is so much better now! 
- Tue Jul 30, 2013 6:52 pm
- Forum: Web-based Outputs
- Topic: Use index.htm instead of Default.htm
- Replies: 2
- Views: 1304
Use index.htm instead of Default.htm
The main page for for HTML5 output seem to be Default.htm. Is there any way to customize it? For example, I'd like it to be index.htm.