Search found 140 matches

by Paulie
Tue Jul 14, 2015 2:57 pm
Forum: Importing
Topic: Importing "All Files," does not
Replies: 6
Views: 3139

Re: Importing "All Files," does not

Hi there,

What search criteria is listed in your Include Files text box? To import everything, the only string displayed in the text box should be *.*
by Paulie
Tue Jun 30, 2015 4:08 pm
Forum: Getting Started and Installation Issues
Topic: Flare 11 - new user, new project, no content
Replies: 6
Views: 5547

Re: Flare 11 - new user, new project, no content

Hi there,

I'd start with the Getting Started Guide
Link: http://docs.madcapsoftware.com/FlareV11/FlareGettingStartedGuide.pdf

This guide is only 40 pages or so long and walks you through the basic things that you need to know to get started. This should be enough to get you the skeleton project ...
by Paulie
Thu Jun 25, 2015 5:12 pm
Forum: Web-based Outputs
Topic: why create HTML targets that don't include the skin?
Replies: 8
Views: 3158

Re: why create HTML targets that don't include the skin?

Under which rare cases would we want to create a target with neither a full skin nor components?

Hi there,

One specific use case where I have used targets without skins was to create a regular website based on content that already resided in Flare. This allowed the company to single source ...
by Paulie
Thu Jun 25, 2015 4:52 pm
Forum: Flare's General Discussion
Topic: Madcap Flare for Programmers
Replies: 8
Views: 2703

Re: Madcap Flare for Programmers

Thanks for sharing this information. I have just downloaded the Kindle version.
by Paulie
Mon Jun 15, 2015 2:55 pm
Forum: Styles, Stylesheets and XML
Topic: How to apply style to variables?
Replies: 11
Views: 6207

Re: How to apply style to variables?

ChoccieMuffin wrote:I have managed to apply styles to variables, but it's a faff....
Funnily enough, that's what MapCap Support advised me to do when I asked for a method of styling variables!
by Paulie
Thu Jun 11, 2015 1:14 pm
Forum: Styles, Stylesheets and XML
Topic: How to apply style to variables?
Replies: 11
Views: 6207

Re: How to apply style to variables?

I should also note that I logged a feature request recently asking MadCap to add an extra field to the Variables grid, allowing users to map variables to a specific style in the style sheet.
by Paulie
Thu Jun 11, 2015 1:11 pm
Forum: Styles, Stylesheets and XML
Topic: How to apply style to variables?
Replies: 11
Views: 6207

Re: How to apply style to variables?

You can also style variables for Word outputs using the MadCap|variable css classes.

MadCap|variable
{
font-weight: bold;
}

MadCap|variable.Normal
{
font-weight: normal;
}

Note: MadCap have confirmed that this is a bug, as these classes are only intended to style the variable in Flare's ...
by Paulie
Sun Jun 07, 2015 7:03 pm
Forum: Flare's General Discussion
Topic: How to select ALL TABLES in a topic
Replies: 2
Views: 1484

Re: How to select ALL TABLES in a topic

Hi there,

We have a script that applies a table style to each table after the Word document has been imported. This is a two-stage process, and you should be able to use a find and replace tool (or even Flare's find and replace) to do something similar.

Depending on your document import settings ...
by Paulie
Wed May 27, 2015 1:44 pm
Forum: MadCap Lingo General Discussion
Topic: Does Lingo help with translating XREF text?
Replies: 1
Views: 1977

Re: Does Lingo help with translating XREF text?

I haven't used Lingo for a couple of years, but I believe the answer to your question is "Yes".

Lingo lets you translate the text within your style sheets, so you should be able to translate the cross reference text. Although, I'm not sure what will happen if you have not overridden the default ...
by Paulie
Mon May 25, 2015 1:25 pm
Forum: Web-based Outputs
Topic: Remaining with Webhelp
Replies: 11
Views: 3446

Re: Remaining with Webhelp

I was involved in a CHM to HTML5 conversion a couple of years ago. I think that most of the important points are covered above. Here are a couple of other things to note:

One good thing about the customizability HTML 5 output is that you can make the help system look and feel like a part of the ...
by Paulie
Wed May 06, 2015 6:24 pm
Forum: Flare's General Discussion
Topic: What files do I REALLY need to include
Replies: 4
Views: 1430

Re: What files do I REALLY need to include

The short answer is that the bottom two files in your screenshot can be deleted, but the rest of the files are required.
by Paulie
Wed May 06, 2015 6:21 pm
Forum: Tips and Tricks
Topic: Is there a hack to display Style lists in plain text?
Replies: 7
Views: 4825

Re: Is there a hack to display Style lists in plain text?

I think it should be possible via a plug-in. If I get time I will have a play and see what I can come up with.
by Paulie
Wed Apr 22, 2015 1:03 pm
Forum: Styles, Stylesheets and XML
Topic: Add the word Step before numbering.
Replies: 7
Views: 3136

Re: Add the word Step before numbering.

I suspect that you are right. For a real ordered list, you could probably use the ol element to reset the numbering for each list.
ol {
mc-auto-number-format: '{ =0}';
}
For a paragraph element, you would probably have to create a class to reset the numbering, or place the paragraph inside some ...
by Paulie
Tue Apr 21, 2015 1:30 pm
Forum: Styles, Stylesheets and XML
Topic: Add the word Step before numbering.
Replies: 7
Views: 3136

Re: Add the word Step before numbering.

Hi there,

The last time I tested :before and :after pseudo classes in Flare, they only worked in online outputs and not in print. This may or may not be an issue any more (or at all if you are only building online outputs), but it is worth mentioning.

In my case, we used the mc-autonumber-format ...
by Paulie
Mon Apr 20, 2015 12:54 pm
Forum: Flare's General Discussion
Topic: MadCap Flare: The Definitive Guide
Replies: 19
Views: 131511

Re: New Edition: MadCap Flare Developer's Guide

Thanks. I've been waiting for this! The book has been ordered.
by Paulie
Tue Apr 14, 2015 2:27 pm
Forum: Styles, Stylesheets and XML
Topic: Apply Formatting to any Element with an href Attribute
Replies: 10
Views: 4024

Re: Apply Formatting to any Element with an href Attribute

Okay. I'll walk through what I would do based on your requirements:
Works for both HTML and PDF - In my mind this pretty much sends us down the path of using pseudo classes, as this is the only method I know of that works for both output types.
Writers must be able to selectively apply the style ...
by Paulie
Mon Apr 13, 2015 5:04 pm
Forum: Styles, Stylesheets and XML
Topic: Apply Formatting to any Element with an href Attribute
Replies: 10
Views: 4024

Re: Apply Formatting to any Element with an href Attribute

Thanks Dave and Paulie.

In addition to hearing Dave's thoughts on Paulie's question, I'm wondering the following. Apparently the styling will be applied to HTML5, but not PDF. Do you folks know how to style links in PDFs?

Thank you.

I had a quick test for you. Dave is right that the [href ...
by Paulie
Mon Apr 13, 2015 12:57 pm
Forum: Styles, Stylesheets and XML
Topic: Apply Formatting to any Element with an href Attribute
Replies: 10
Views: 4024

Re: Apply Formatting to any Element with an href Attribute

You are on the right track with the selectors in your first post - rather than using pseudo classes.

The first [href] {} example would actually work in web outputs viewed in a browser, although it probably doesn't work in the the XML editor or PDF outputs.

Thanks Dave.

As a learning experience ...
by Paulie
Sun Apr 12, 2015 12:51 pm
Forum: Styles, Stylesheets and XML
Topic: Apply Formatting to any Element with an href Attribute
Replies: 10
Views: 4024

Re: Apply Formatting to any Element with an href Attribute

Hi there,

Check this page out for an example of what you need to do to get your regular links working:
http://www.w3schools.com/css/css_pseudo_classes.asp
by Paulie
Thu Apr 09, 2015 8:40 pm
Forum: Flare's General Discussion
Topic: Annotating an image with Capture
Replies: 3
Views: 1432

Re: Annotating an image with Capture

Alternatively, open Capture and re-save the image without the annotations. Then, in Flare click Tools > Regenerate Captured Images (I don't use the ribbon so not sure where that option will be on the ribbon). The image should be back to its original state.
by Paulie
Thu Apr 09, 2015 8:36 pm
Forum: Flare's General Discussion
Topic: Annotating an image with Capture
Replies: 3
Views: 1432

Re: Annotating an image with Capture

Hi there,

The original image is stored in the MadCap Capture properties (image name.props) file as a Base64 string.

Having had a quick browse, you can probably use the following website to convert the Base64 string back into an image:

http://www.askapache.com/online-tools/base64-image-converter ...
by Paulie
Thu Apr 09, 2015 2:09 pm
Forum: Styles, Stylesheets and XML
Topic: Table style with print / non-print variations
Replies: 4
Views: 1786

Re: Table style with print / non-print variations

Okay,

Here is what I had to add to my table style sheet to replicate what you are trying to achieve:

@media print
{
table.TableStyle-TwoTone
{
width: 100%;
}
}

@media non-print
{
table.TableStyle-TwoTone
{
width: 100%;
}
}
Note: TwoTone is the name of my table style sheet. You would ...
by Paulie
Thu Apr 09, 2015 1:53 pm
Forum: Styles, Stylesheets and XML
Topic: Table style with print / non-print variations
Replies: 4
Views: 1786

Re: Table style with print / non-print variations

Starting with the simplest solution. If you want this to apply to all tables (regardless of the table style used), you could add something similar to the below to your main style sheet (instead of your table style sheet):
@media print
{
table
{
width: 100%;
}

}
@media non-print
{
table ...
by Paulie
Thu Apr 09, 2015 1:15 pm
Forum: Styles, Stylesheets and XML
Topic: Table style with print / non-print variations
Replies: 4
Views: 1786

Re: Table style with print / non-print variations

Hi there,

In my style sheet (where the media was initially created in Flare), the media syntax is @media print rather than @media-print as in your example. The former will show in the Flare UI and can be assigned to a target. The latter is not visible in the Flare UI and cannot be assigned. I would ...
by Paulie
Wed Apr 08, 2015 6:35 pm
Forum: Web-based Outputs
Topic: Remove Search Highlighting Completely?
Replies: 5
Views: 2793

Re: Remove Search Highlighting Completely?

I have had a quick play, and adding the below to the style sheet seems to disable the search highlighting (by inheriting the style of the parent element):

span.SearchHighlight.SearchHighlight1,
span.SearchHighlight.SearchHighlight2,
span.SearchHighlight.SearchHighlight3,
span.SearchHighlight ...