Search found 140 matches

by Paulie
Sun Sep 20, 2015 4:15 pm
Forum: Single-Sourcing
Topic: Conditional text applied automatically to page numbers?
Replies: 9
Views: 29780

Re: Conditional text applied automatically to page numbers?

Hi Karen,

You are on the right track. The solution is to create different cross reference text for the different mediums in your style sheet:

For example:

@media print
{
MadCap|xref
{
mc-format: '{color blue}{paratext}{/color} {color black}(page {page}{/color})';
}
}

@media non-print ...
by Paulie
Sun Sep 20, 2015 3:39 pm
Forum: Styles, Stylesheets and XML
Topic: List continue option
Replies: 14
Views: 6301

Re: List continue option

Hi Nita/Christina,

I'd suggest adding the following to the style sheet:

li p:first-child {
margin-top: 0;
padding-top:0;
display: inline;
}
This should adjust the first paragraph tag inside the list tag, but leave all other paragraph tags unaffected.

Note: The only way that I was able to ...
by Paulie
Sun Sep 20, 2015 3:23 pm
Forum: Flare's General Discussion
Topic: Comparing TOCs
Replies: 10
Views: 3789

Re: Comparing TOCs

Edit: Ignore this. I didn't initially see the point about the TOCs being structured differently.

Another option is to use a diff tool, such as Beyond Compare (my preference) or WinMerge (free). Here are the links to the sites:

WinMerge http://winmerge.org/?lang=en
Beyond Compare http://www ...
by Paulie
Mon Sep 14, 2015 7:38 pm
Forum: Printed Documentation Targets
Topic: RTF output
Replies: 6
Views: 3280

Re: RTF output

Hi there,

If you are still looking for a solution, then you could combine Ramon's suggested start up switch with the SaveAsRtf() Macro that I originally attached.

So the steps would be:
1. Add the following Macro to your Normal template:
Sub SaveAsRtf()
Dim FileName As String
With ActiveDocument ...
by Paulie
Thu Sep 10, 2015 3:40 pm
Forum: Printed Documentation Targets
Topic: RTF output
Replies: 6
Views: 3280

Re: RTF output

Hi there,

One way to achieve this would be to add the following code to your Normal.dot template. The AutoOpen() macro runs automatically each time that Word is opened, but the code below will exit without doing anything under most circumstances and should only create a .rtf file if:
The document ...
by Paulie
Thu Sep 10, 2015 2:06 pm
Forum: Web-based Outputs
Topic: Search result previews in HTML5
Replies: 3
Views: 1035

Re: Search result previews in HTML5

Hi there,

By default, the first paragraph of the topic will be displayed. However, you can override this text by adding a description to the topic properties (To get to this screen press CTRL + SHIFT + P while the topic has focus).
by Paulie
Tue Sep 08, 2015 3:14 pm
Forum: Flare's General Discussion
Topic: Compile Error for Plugin Example
Replies: 11
Views: 3767

Re: Compile Error for Plugin Example

And to get back to the ribbon view, use Tools > Options on the menu.
by Paulie
Tue Sep 08, 2015 3:07 pm
Forum: Flare's General Discussion
Topic: Compile Error for Plugin Example
Replies: 11
Views: 3767

Re: Compile Error for Plugin Example

I have had a look. Currently, there are no commands associated with the menu items, so when you click the menu items nothing happens.

Here is the code to rewire the menu items to use the same command as the button (obviously, for a real plugin you would probably want to create more than one command ...
by Paulie
Tue Sep 08, 2015 2:18 pm
Forum: Flare's General Discussion
Topic: Compile Error for Plugin Example
Replies: 11
Views: 3767

Re: Compile Error for Plugin Example

Hi there,

Here is where your tool bar displays in my UI:

https://lh5.googleusercontent.com/gnfaklYA63WNfAaNCFe5CGRVW4_VY-P5kTNaWKmqkPjMfXyF-SAxU6ZuJ0VlnB-7p4eHmAprZO9K5R8=w1884-h756

From your terminology above, the issue might be that you are currently using the Flare ribbon UI, rather than the ...
by Paulie
Tue Sep 08, 2015 2:08 pm
Forum: Styles, Stylesheets and XML
Topic: Styles aren't working when I link a TOC to an outside target
Replies: 1
Views: 857

Re: Styles aren't working when I link a TOC to an outside ta

Hi there,

As a troubleshooting starting point, what happens if you build the linked target directly? Do you still experience the same problem or does everything work normally in this situation?
by Paulie
Mon Sep 07, 2015 2:14 pm
Forum: Flare's General Discussion
Topic: Auto Suggestion and Windows 10
Replies: 6
Views: 4106

Re: Auto Suggestion and Windows 10

Hi there,

I'm using Windows 7, but I also have issues with my auto suggestions suddenly not working.

In my case, closing Flare, deleting the following folders, then reopening Flare fixes the issue:
  • Output
  • Project\Users
  • Analyzer
by Paulie
Sun Sep 06, 2015 4:04 pm
Forum: Flare's General Discussion
Topic: Compile Error for Plugin Example
Replies: 11
Views: 3767

Re: Compile Error for Plugin Example

Hi there,

I had a quick look. Your toolbar menu displayed correctly. If you didn't see it, it could be because the toolbar was hidden (You can hide or show toolbars from the View > Toolbars menu in Flare).

I've made a couple of quick changes to also enable the ribbon. The code is below (note I did ...
by Paulie
Thu Sep 03, 2015 9:52 pm
Forum: Flare's General Discussion
Topic: Compile Error for Plugin Example
Replies: 11
Views: 3767

Re: Compile Error for Plugin Example

Hi there,

I had the same problem when I was creating my first plugin. In my case, adding the following empty event handler to the ButtonCommand : ICommand class fixed the problem and allowed the dll to compile:


public event EventHandler CanExecuteChanged
{
add
{

}
remove
{

}
}
by Paulie
Mon Aug 31, 2015 2:26 pm
Forum: Flare's General Discussion
Topic: C# applications and implementing CS help
Replies: 12
Views: 4252

Re: C# applications and implementing CS help

Hi Donna,

What output type are you publishing from Flare? From the developer's perspective, the method of calling the page using the CSHID differs per output type.

As a starting point, if you enter "CSH" into the Flare search, the first 10 or so topics listed are specifically the steps that the ...
by Paulie
Sun Aug 30, 2015 3:38 pm
Forum: Flare's General Discussion
Topic: Any Plugin Code Examples in C#?
Replies: 2
Views: 1649

Re: Any Plugin Code Examples in C#?

Hi there,

Here is a real basic, but working example that adds a toolbar strip and button. Clicking the button will copy the inner html of the currently selected topic's body tag to the clipboard.

I assume you have downloaded the Flare API documentation already. Most of the below code was ...
by Paulie
Sun Aug 30, 2015 2:33 pm
Forum: Flare's General Discussion
Topic: Using the feature Auto-size Capture objects to fit text
Replies: 5
Views: 2428

Re: Using the feature Auto-size Capture objects to fit text

FYI, I logged a bug and enhancement request as follows:

If the Auto-size to fit text option is enabled, the width and height of the rectangle changes (even though the text easily fitted in the original rectangle). Also, the resizing doesn't seem to take into account the alignment of the text when ...
by Paulie
Mon Aug 24, 2015 3:19 pm
Forum: Flare's General Discussion
Topic: Using the feature Auto-size Capture objects to fit text
Replies: 5
Views: 2428

Re: Using the feature Auto-size Capture objects to fit text

Hi there,

Did you follow this up with MadCap support? I have encountered the same issue as described above. I will log my own support case, but I was wondering if they gave you any advice or things to try.
by Paulie
Mon Aug 24, 2015 3:11 pm
Forum: Web-based Outputs
Topic: Is there a guide to editing custom skins to create my own?
Replies: 11
Views: 7537

Re: Is there a guide to editing custom skins to create my ow

Hi there,

This should get you started...

http://docs.madcapsoftware.com/FlareV11/FlareSkinsGuide.pdf

For the things that are not covered in the abovementioned guide, this forum is a pretty good reference. I know that Dave has shared a lot of information about how to perform some of the more ...
by Paulie
Tue Aug 18, 2015 4:51 pm
Forum: Flare's General Discussion
Topic: OK to uninstall previous versions of Flare?
Replies: 4
Views: 1804

Re: OK to uninstall previous versions of Flare?

Help > Deactivate Product

I'm not sure how far back this is supported (about 3 or 4 versions from memory). For really old versions of Flare you have to contact MadCap to de-register Flare.
by Paulie
Sun Aug 16, 2015 4:34 pm
Forum: Web-based Outputs
Topic: localizing search error "Ensure that the search string..."
Replies: 2
Views: 1246

Re: localizing search error "Ensure that the search string..

Having had a look in the skin editor, there doesn't appear to be the option to change this text. I'd suggest contacting MadCap Support. It appears to be something that has been overlooked.
by Paulie
Sun Aug 09, 2015 3:16 pm
Forum: Flare's General Discussion
Topic: 16GB memory, but getting "Out of Memory" errors
Replies: 2
Views: 1107

Re: 16GB memory, but getting "Out of Memory" errors

Flare is still compiled as a 32-bit application. So, I think I am right in saying that Flare can only use a maximum of 4GB or RAM, no matter how much is installed on the machine.

If you can consistently cause the out of memory error to occur, it might be interesting to have Task Manager running in ...
by Paulie
Wed Aug 05, 2015 3:03 pm
Forum: Styles, Stylesheets and XML
Topic: Page-Level Style for Space After <p> Element
Replies: 5
Views: 1976

Re: Page-Level Style for Space After <p> Element

Is the formatting applied correctly if you open up your source topic directly in a web browser?

A slightly modified version of your above code works fine directly in IE:

<html>
<head>
<style>
td p {margin-bottom: 50pt; background: yellow; }
</style>
</head>
<body>
<table style="width: *;mc-table ...
by Paulie
Wed Aug 05, 2015 1:54 pm
Forum: Styles, Stylesheets and XML
Topic: Page-Level Style for Space After <p> Element
Replies: 5
Views: 1976

Re: Page-Level Style for Space After <p> Element

Hi there,

From your description, it sounds like you want to apply this style to all <p> elements inside <td> elements. If this is the case then you will need to swap the order of your CSS declaration, as it will currently apply to <td> elements inside <p> elements instead:


<style>
td p {margin ...
by Paulie
Thu Jul 30, 2015 2:09 pm
Forum: Flare's General Discussion
Topic: Project Contains PDFs that Cause Navigation to Fail
Replies: 1
Views: 732

Re: Project Contains PDFs that Cause Navigation to Fail

Hi there,

What version of Flare are you using? I remember that this was an issue when the HTML5 help was first introduced. In those days, we used to work around the problem by adding target="_blank" to the link so that the PDF opened in a new tab.
by Paulie
Wed Jul 22, 2015 2:25 pm
Forum: Styles, Stylesheets and XML
Topic: Dropdown styles in Flare 10
Replies: 18
Views: 24719

Re: Dropdown styles in Flare 10

At a quick glance at my own project, it looks like it is coming from the MapCap Topic.css style sheet.

As a quick workaround, I was able to override this by defining the margins in my style sheet:

Code: Select all

span.dropDownHead
{
margin-top:6px;
margin-bottom:6px;
}