Search found 77 matches

by Daniel Ferguson
Fri Sep 13, 2019 1:54 pm
Forum: Flare's General Discussion
Topic: Git Issue
Replies: 2
Views: 1327

Re: Git Issue

Was this file previously committed? Is it already tracked in your repo?
by Daniel Ferguson
Thu Feb 01, 2018 10:43 pm
Forum: Printed Documentation Targets
Topic: Shared directory as output destination
Replies: 6
Views: 3330

Re: Shared directory as output destination

Have a look at Google Drive File Stream. It allows you to map Google Drive as a drive on your computer. By default, it shows up as your G: drive. Once that's in place, you can select a folder in that drive as your publishing destination, and it will automatically update the files on the Google Drive...
by Daniel Ferguson
Tue Jan 02, 2018 2:33 pm
Forum: Printed Documentation Targets
Topic: Weird Cross References in PDF Format
Replies: 4
Views: 2317

Re: Weird Cross References in PDF Format

I'm glad that you've got it figured out. Using {filename} as the mc-format was the issue. Changing it to {title} may work for you, but in most xref formats that I've worked in over the years use {paratext}. There are some advantages to using that over {title}, such as if you want to link to a subhea...
by Daniel Ferguson
Fri Dec 29, 2017 2:38 pm
Forum: Flare's General Discussion
Topic: Cross Reference Auto Number
Replies: 1
Views: 1170

Re: Cross Reference Auto Number

You might be able to do this using the text-transform property on your xref style.

Code: Select all

MadCap|xref
	{
		text-transform: lowercase;
	}

That's going to apply lowercase to your entire xref though, so it might be too blunt if you're also including the table description in your xref.
by Daniel Ferguson
Fri Dec 29, 2017 11:47 am
Forum: Flare's General Discussion
Topic: Non-breaking space in variable
Replies: 8
Views: 5178

Re: Non-breaking space in variable

Pardon me for bringing up the dead. We're in a situation where, for branding and aesthetic reason, we can't break between certain words. If we try editing the .fltar target file in a text editor, putting in the entity code (even as hex) causes Flare to balk at the &. We're running Flare 12. Can...
by Daniel Ferguson
Thu Dec 21, 2017 1:32 pm
Forum: Printed Documentation Targets
Topic: Weird Cross References in PDF Format
Replies: 4
Views: 2317

Re: Weird Cross References in PDF Format

Can you post what CSS declarations you have in your MadCap|xref style?

Also, to the topic being linked to, open the topic properties from the Content Explorer. In the Topic Properties tab, what do you have in the Topic Title box?
by Daniel Ferguson
Thu Dec 21, 2017 1:23 pm
Forum: Source Control
Topic: Apply Version Label to Bound Bitbucket Repo
Replies: 2
Views: 1937

Re: Apply Version Label to Bound Bitbucket Repo

What you're looking for is called a "tag" in most source control systems. A tag is basically just a label that you place on a specific commit. In your case, you could choose the last commit you made prior to your production build, and tag that commit with your version number. You didn't sp...
by Daniel Ferguson
Wed May 17, 2017 8:20 am
Forum: Printed Documentation Targets
Topic: TOPIC IN BOOK BUT NOT WANTED IN TOC
Replies: 2
Views: 1391

Re: TOPIC IN BOOK BUT NOT WANTED IN TOC

Create a class in your stylesheet with the mc-heading-level property set to 0, and then assign that class to the headings you want out of the TOC.

CSS will look something like this:

Code: Select all

@media print
{
.noTOC
{
mc-heading-level: 0;
}
}
Then just assign the noTOC class to your headings.
by Daniel Ferguson
Tue Apr 18, 2017 9:46 pm
Forum: Single-Sourcing
Topic: Large images in table cells causing problems in Print output
Replies: 1
Views: 2528

Re: Large images in table cells causing problems in Print ou

It's hard to tell, but I would start with adjusting (or preferably, removing) the inline styles that you have set for the table and column widths. In the <table> tag, you've got "style="width: 530px,"" which is restricting the overall width of the table to 530px. In the <col> tag...
by Daniel Ferguson
Tue Apr 18, 2017 9:27 pm
Forum: Flare's General Discussion
Topic: Positioning the logo in a skin
Replies: 3
Views: 1888

Re: Positioning the logo in a skin

You can set the margin (or negative margin if needed) in the stylesheet. Assuming you're using the TopNav skin, the CSS selector for the logo is: .tab-bar-section a.logo So you could add something like this right to your stylesheet: .tab-bar-section a.logo { margin-left: -50px; } or whatever the mar...
by Daniel Ferguson
Fri Apr 14, 2017 2:51 pm
Forum: Web-based Outputs
Topic: GTM in external frame
Replies: 4
Views: 3223

Re: GTM in external frame

And just to clarify, you'll need to adjust the GTM code as necessary. There may be other elements are are needed in there.
by Daniel Ferguson
Fri Apr 14, 2017 2:45 pm
Forum: Web-based Outputs
Topic: GTM in external frame
Replies: 4
Views: 3223

Re: GTM in external frame

I just read in another post that someone was having trouble with GTM affecting page load time. If you want to insert the GTM script reference at the bottom of the external frame file rather than in the head section, use this code snipped in your skin file instead: $(document).ready(function () { $('...
by Daniel Ferguson
Fri Apr 14, 2017 2:03 pm
Forum: Web-based Outputs
Topic: GTM in external frame
Replies: 4
Views: 3223

Re: GTM in external frame

As you've discovered, the MasterPage applies only to the content within the content iFrame in TriPane output. To make changes to the external frame, you'll need to use javascript or jquery in the TriPane skin file. This actually creates a separate javascript file that gets called from the external f...
by Daniel Ferguson
Fri Apr 14, 2017 1:32 pm
Forum: Web-based Outputs
Topic: download a file from a hyperlink
Replies: 7
Views: 4579

Re: download a file from a hyperlink

Have you tried the download attribute? This has worked for me in the past. https://www.w3schools.com/tags/att_a_download.asp I don't think there is an option in the Flare interface for this, so you'd need to do it in your HTML code. It would look something like this: <a href="MyXSD.xsd" do...
by Daniel Ferguson
Sat Feb 25, 2017 5:55 pm
Forum: Web-based Outputs
Topic: Font Awesome Icons in Output
Replies: 1
Views: 1198

Re: Font Awesome Icons in Output

I'm a little confused by this question. Font Awesome icons themselves aren't hosted in your project, so excluding content from the target shouldn't have anything to do with whether Font Awesome works or not. I'm not an FA expert by any means, but I've used in successfully in a number of different pr...
by Daniel Ferguson
Sat Feb 25, 2017 5:39 pm
Forum: Single-Sourcing
Topic: Table widths in Help and printed output
Replies: 3
Views: 2947

Re: Table widths in Help and printed output

Hi Barry, My recommendation would be to convert your absolute pixel column widths to percentages in your table stylesheet. For example, you could set the table to take 100% of its available width, then set column 1 to take 20% and column 2 to take 80%. These tables and columns then adjust themselves...
by Daniel Ferguson
Sat Jan 14, 2017 12:49 pm
Forum: Source Control
Topic: Git (Bit Bucket) and Flare Don't Like Each Other Anymore
Replies: 1
Views: 1979

Re: Git (Bit Bucket) and Flare Don't Like Each Other Anymore

I've upgraded to Flare 2017 for a couple projects that are bound to bitbicket-hosted GIT repos, and I haven't had any problem. I'm not using Flare to do the source control operations though. I'm using Source Tree for that.
by Daniel Ferguson
Sat Jan 14, 2017 12:42 pm
Forum: Printed Documentation Targets
Topic: Suppress the page numbering on some items in TOC?
Replies: 3
Views: 2464

Re: Suppress the page numbering on some items in TOC?

You can use the mc-pagenum-display property in the stylesheet to remove the page number and leading from TOC levels. For example, if you wanted the h1s to show up without page numbers in the TOC, you could put this in your stylesheet: p.TOC1 { mc-pagenum-display: none; } Not sure this solves the ent...
by Daniel Ferguson
Wed Jul 13, 2016 3:15 pm
Forum: Flare's General Discussion
Topic: Windows 10 window issues
Replies: 13
Views: 10240

Re: Windows 10 window issues

Hi Paul,

I don't work on Windows 10, but I have a client who does, and he's run into some similar issues that you identify. In my client's case, he switched his screen resolution to 100% (it was at 200%), then rebooted his computer, and the issues were resolved.
by Daniel Ferguson
Wed Jul 13, 2016 2:58 pm
Forum: Flare's General Discussion
Topic: Scripted (scheduled) target builds?
Replies: 5
Views: 1851

Re: Scripted (scheduled) target builds?

Check out madbuild.exe. Mine is in c:\Program Files\MadCap Software\MadCap Flare 12\Flare.app. C:\Program Files\MadCap Software\MadCap Flare 12\Flare.app>madbuild Usage: madbuild -project <project file> [ -target <target name> ] madbuild -export <project file> -settings <export project file name> Op...
by Daniel Ferguson
Wed Jul 13, 2016 8:43 am
Forum: Styles, Stylesheets and XML
Topic: Loads of white space in the middle of a table
Replies: 5
Views: 2383

Re: Loads of white space in the middle of a table

It's certainly a stylesheet problem, not a topic problem. Tables have a lot of HTML tags in them, and they can be very tricky from a style standpoint as a result. That's why I mentioned that your best option is to look at the css styles that the browser is applying when you look this topic in your o...
by Daniel Ferguson
Tue Jul 12, 2016 8:49 pm
Forum: Styles, Stylesheets and XML
Topic: Loads of white space in the middle of a table
Replies: 5
Views: 2383

Re: Loads of white space in the middle of a table

RE responsiveness: In CSS, you can have different CSS properties apply to the same HTML elements based on certain media queries, such as screen width. When you say that the table is fine when you resize the screen, it makes me wonder if you have a media query in your CSS file that applies one set of...
by Daniel Ferguson
Tue Jul 12, 2016 4:52 pm
Forum: Web-based Outputs
Topic: [%=TITLE%] variable in HTML5 TOC
Replies: 2
Views: 1157

Re: [%=TITLE%] variable in HTML5 TOC

To me, it looks like you're missing part of your variable syntax. You've referenced the variable name, but not the variable set. For example, if this variable was in a variable set named MyAwesomeVariables , the proper TOC syntax would be [%=MyAwesomeVariables.TITLE%] . Open the Variables folder in ...
by Daniel Ferguson
Tue Jul 12, 2016 4:24 pm
Forum: Styles, Stylesheets and XML
Topic: Border Lines and div tags
Replies: 4
Views: 2121

Re: Border Lines and div tags

My guess is that your paragraph styles that are applied to your list paragraphs are adding extra padding or margin. We'd have to see your list paragraph styles to know for sure. Have you considered using actual <ol>, <ul>, and <li> tags instead of paragraph classes for your lists? See this discussio...
by Daniel Ferguson
Mon Jul 11, 2016 4:39 pm
Forum: Importing
Topic: Pushing templates to Flare
Replies: 3
Views: 2482

Re: Pushing templates to Flare

Hi Jim, If I'm understanding your requirement correctly, I think this might be quite simple. Flare saves topic templates in user-defined template folders. When a user is creating a new topic, Flare scans the template folders and presents their files as templates available for the user to select. So ...