Search found 140 matches

by Paulie
Thu Mar 26, 2015 11:20 am
Forum: Web-based Outputs
Topic: Document Not Displaying
Replies: 2
Views: 955

Re: Document Not Displaying

Hi there,

Starting with the basics, check that JavaScript is enabled in your browser. Flare uses JavaScript heavily, and your image looks a lot like what happens if a browser has JavaScript disabled.

Does this always happen, or only when you've published your output to a web server - if you build ...
by Paulie
Mon Mar 23, 2015 3:46 pm
Forum: Web-based Outputs
Topic: Show message if JavaScript is disabled
Replies: 1
Views: 1615

Re: Show message if JavaScript is disabled

Hi there,

As a quick test, I added the following to the <div id="contentBodyInner"> element of the Default.htm file in the Output folder:


<p id="javascriptWarning" style="font-size:40px;color:red">Javascript is not enabled.</p>
<script>
document.getElementById("javascriptWarning").style.display ...
by Paulie
Mon Mar 23, 2015 3:22 pm
Forum: Printed Documentation Targets
Topic: Flare 10 Word target is not indenting tables within lists
Replies: 6
Views: 2558

Re: Flare 10 Word target is not indenting tables within list

alex wrote:I ran into this, as well. Does anyone know whether this bug has been fixed in v.11?
I just tested it for you. It seems to still be broken in Flare 11.
by Paulie
Mon Mar 23, 2015 11:47 am
Forum: Web-based Outputs
Topic: Filter Topics By Condtion in a TOC reusing another TOC
Replies: 2
Views: 1009

Re: Filter Topics By Condtion in a TOC reusing another TOC

Hi there,

Important Note:
I haven't really had the chance to try out the top navigation skin yet, so what I am about to suggest is based solely on what I have read in the Flare help and What's New guide.


As project merging is not currently supported for the top navigation skin, you may need to go ...
by Paulie
Mon Mar 23, 2015 11:22 am
Forum: Flare's General Discussion
Topic: Flare's API for plugins
Replies: 4
Views: 2993

Re: Flare's API for plugins

Hi there,

I found the following article useful when I first experimented with the Flare API a couple of releases ago. This also includes an example project that you can tweak and play with:

http://tregner.com/flare-blog/a-first-flare-plug-in/
by Paulie
Sun Mar 22, 2015 12:30 pm
Forum: Web-based Outputs
Topic: Search API - External Integration
Replies: 9
Views: 5464

Re: Search API - External Integration

Hi there,

I had a bit of a play on the weekend and was able to get the search results using the following approach(note that this was for a Windows application, rather than a web app):

I had a hidden WebBrowser control that I passed in the search URL:
<YourPath>/Default.htm#search ...
by Paulie
Wed Mar 18, 2015 3:28 pm
Forum: Styles, Stylesheets and XML
Topic: Does Flare support a customized DTD?
Replies: 3
Views: 1926

Re: Does Flare support a customized DTD?

Hi Robert,

I can't really add much more, other than to emphasise what Nita has already said about asking MadCap directly.

I might be going off topic here, but if you are looking to add your own xml elements for your own purposes, from previous experience this tends to work okay. For example, We ...
by Paulie
Wed Mar 18, 2015 1:13 pm
Forum: Web-based Outputs
Topic: Search API - External Integration
Replies: 9
Views: 5464

Re: Search API - External Integration

Hi there,

I managed to replicate something like you are asking for a couple of years ago, but I would have to have a think about how I actually did it, as it was a proof of concept for my old company. I think, from memory, that I passed a search query into the HTML5 WebHelp using the URL parameters ...
by Paulie
Wed Mar 18, 2015 1:01 pm
Forum: Flare's General Discussion
Topic: Best practice: multi-language HTML5 help and PDF output
Replies: 3
Views: 2260

Re: Best practice: multi-language HTML5 help and PDF output

Hi there,

If you intend to use MadCap Lingo to manage your translation process, then I would also recommend considering MadCap Capture for your screen shots. The big bonus is that all of the annotations in your Capture images can also be translated in MadCap Lingo, or sent to the translation vendor ...
by Paulie
Wed Mar 18, 2015 12:43 pm
Forum: Flare's General Discussion
Topic: Any way to install Flare 11 & still use Flare 10 by default?
Replies: 3
Views: 1344

Re: Any way to install Flare 11 & still use Flare 10 by defa

Hi there,

I tried setting the default program in Windows (which would have been my initial suggestion), but it still used Flare 11. Another option would be to write a small application that specifically opens the version of Flare that you require, then configure that application as the default ...
by Paulie
Tue Mar 03, 2015 7:03 pm
Forum: Tips and Tricks
Topic: Using Variables in Target File Names
Replies: 3
Views: 3146

Re: Using Variables in Target File Names

In TOCs you can enter variables in the following format, but unfortunately this does not work for file names:
Welcome to version [%=MyVariableSet.MyVersionNumber%]

Our workaround is to add 'VVV' to the end of our file names, then run a script to swap this placeholder text with the version number ...
by Paulie
Tue Mar 03, 2015 3:16 pm
Forum: Styles, Stylesheets and XML
Topic: I need to add two images to a <p> class
Replies: 5
Views: 2345

Re: I need to add two images to a <p> class

I haven't tried this in Flare for any side-effects, but here is an example of what you would have to add to your CSS (including updates to your existing p.note style):


p.note
{
display: inline-block;
background-color: #3e3e3e;
border: solid 1px #404040;
border-radius: 6px;
color: #b3b3b3;
mc-auto ...
by Paulie
Tue Mar 03, 2015 12:45 pm
Forum: Styles, Stylesheets and XML
Topic: I need to add two images to a <p> class
Replies: 5
Views: 2345

Re: I need to add two images to a <p> class

Hi there,

Assuming that these notes will be used in an online environment only, then you could use before and after pseudo-elements to achieve this.

Take a look at the before and after examples at the following link:
http://www.w3schools.com/css/css_pseudo_elements.asp
by Paulie
Mon Mar 02, 2015 1:10 pm
Forum: Styles, Stylesheets and XML
Topic: Question re table widths
Replies: 1
Views: 797

Re: Question re table widths

Hi there,

Assuming that you are not overriding the table width defaults (either inline or via CSS), the table should automatically behave the way that you desire. For example, the following table will expand to fit the text, but if the text is wider than the parent element or page width then the ...
by Paulie
Sun Mar 01, 2015 3:20 pm
Forum: Styles, Stylesheets and XML
Topic: Dropdown styles in Flare 10
Replies: 18
Views: 24719

Re: Dropdown styles in Flare 10

Thanks for the suggestion. It definitely sent me in the right direction when trying to find a solution that worked for my team. In our case, our drop down heading styles visually match our regular heading styles (which are multiple colours). This means that our online help can be expanded or ...