Search found 26 matches

by lc4466
Tue Jul 18, 2023 7:50 am
Forum: Web-based Outputs
Topic: Make Toolbar Prev/Next buttons match TOC used in Menu Proxy?
Replies: 3
Views: 589

Re: Make Toolbar Prev/Next buttons match TOC used in Menu Proxy?

Verified with Flare support that no out of box functionality exists for this. So I think my answer has to be javascript. In trying to research existing code I could tweak, I found this partial code from a similar question on Stack Overflow that creates an array of all the urls in the page (in my cas...
by lc4466
Mon Jul 10, 2023 11:13 am
Forum: Web-based Outputs
Topic: Make Toolbar Prev/Next buttons match TOC used in Menu Proxy?
Replies: 3
Views: 589

Re: Make Toolbar Prev/Next buttons match TOC used in Menu Proxy?

I think for my use case what I actually need is the eLearning Toolbar proxy, but the issue is the same. It's still using the target toc and there doesn't seem to be a way to identify a different toc to use.
by lc4466
Mon Jul 10, 2023 8:05 am
Forum: Web-based Outputs
Topic: Make Toolbar Prev/Next buttons match TOC used in Menu Proxy?
Replies: 3
Views: 589

Make Toolbar Prev/Next buttons match TOC used in Menu Proxy?

Hi all. I'm trying to set up a master page that includes both a toolbar with prevtopic/nexttopic buttons (or back/forward, I've tried both) and a menu proxy that uses a separate TOC from the main target toc (I'm using sidenav html skin). The issue is that the toolbar buttons keep defaulting to the m...
by lc4466
Wed Dec 14, 2022 7:09 am
Forum: Web-based Outputs
Topic: Printing from Help only prints first page of topic
Replies: 6
Views: 3228

Re: Printing from Help only prints first page of topic

I'm on the latest 2022 r2 version of Flare and still seeing this issue in our HTML5 output
by lc4466
Fri Nov 19, 2021 10:34 am
Forum: Styles, Stylesheets and XML
Topic: Full height div
Replies: 1
Views: 1853

Re: Full height div

Just in case anyone else stumbles on this topic, what eventually worked for me after a LOT of trial and error was to replace Flare's responsive layout with a flexbox instead - that at least kept the two divs the same height (the height of the taller div). Then I added a calculated min-height to my r...
by lc4466
Fri Nov 12, 2021 10:41 am
Forum: Web-based Outputs
Topic: Mini-TOC with only one sub-section of children?
Replies: 0
Views: 1964

Mini-TOC with only one sub-section of children?

Is there anyway to have madcap generate a dynamic link list like it does in the mini-toc but only for a specific sub-section of page children? Example TOC: Book 1: Landing Page - Book 1A: Sub-section A -- Topic 1 -- Topic 2 -- Topic 3 - Book 1B: Sub-section B -- Topic X -- Topic Y -- Topic Z If I pu...
by lc4466
Mon Oct 11, 2021 11:36 am
Forum: Styles, Stylesheets and XML
Topic: Full height div
Replies: 1
Views: 1853

Full height div

Hi all. We have a responsive layout master page that puts the body proxy at roughly 75% and a relationship proxy at 25% so that the relationship proxy becomes a panel on the right (or the bottom on mobile). However, if I give a background color to the relationship proxy, I can see that the box heigh...
by lc4466
Thu Sep 02, 2021 11:20 am
Forum: Web-based Outputs
Topic: Default Togglers to Expanded on Page Load
Replies: 34
Views: 32812

Re: Default Togglers to Expanded on Page Load

EDIT: This slightly updated script is what ended up working for me:

Code: Select all

<script>
$(window).bind("load", function() {
		$(".MCDropDownHotSpot").click();     
	});
</script>
by lc4466
Tue Jul 20, 2021 12:54 pm
Forum: Web-based Outputs
Topic: download a file from a hyperlink
Replies: 7
Views: 4580

Re: download a file from a hyperlink

I got this to work on my project by searching dev boards and finding out about an .htaccess file. So I created one in my published repository that just contains: AddType application/octet-stream .txt AddType application/octet-stream .pdf You should be able to add additional lines for any kind of fil...
by lc4466
Tue Jul 20, 2021 12:48 pm
Forum: Web-based Outputs
Topic: jquery script not working
Replies: 1
Views: 1179

jquery script not working

Hi all! I'm trying to use the following jquery script to create expanding tables in my html5 output: http://jsfiddle.net/w6tL8abc/ This is the first time I'm trying to use scripting in Flare - the html/script shown in the fiddle is exactly what I have in my project for testing purposes (minus the br...
by lc4466
Thu Jun 24, 2021 7:14 am
Forum: Web-based Outputs
Topic: Reorder Columns in Responsive Layouts?
Replies: 4
Views: 1628

Re: Reorder Columns in Responsive Layouts?

Yes - as far as I can tell they are linked in such a way that right in Web is always bottom in Mobile, left in Web is always top in Mobile. Changing the order in one view changes the order in the other as well.
by lc4466
Thu May 27, 2021 12:51 pm
Forum: Web-based Outputs
Topic: Reorder Columns in Responsive Layouts?
Replies: 4
Views: 1628

Re: Reorder Columns in Responsive Layouts?

Hey Jeff. I would love to do this through the responsive layouts directly but I think I must be missing something in your explanation. If I use the Responsive Layout controls to switch to the Mobile view and reposition the cell in question to be on the top instead of the bottom, switching back to We...
by lc4466
Wed May 26, 2021 8:04 am
Forum: Styles, Stylesheets and XML
Topic: Adding :before property to custom xml
Replies: 2
Views: 4439

Re: Adding :before property to custom xml

Just a heads up in case anyone else has run into this - this has been logged as a bug by MadCap.
by lc4466
Wed May 26, 2021 8:00 am
Forum: Web-based Outputs
Topic: Reorder Columns in Responsive Layouts?
Replies: 4
Views: 1628

Reorder Columns in Responsive Layouts?

Hey! Is there a way to use CSS to reorder the columns in a responsive layout for mobile? I have a layout that's two column (9-col, 3-col) and when resized the 3-col right menu automatically shifts to the bottom. Ideally I'd like it to be on top in mobile but still on the right in larger formats. Any...
by lc4466
Fri Apr 16, 2021 9:01 am
Forum: Styles, Stylesheets and XML
Topic: Outputting as raw text with custom xml tags
Replies: 1
Views: 975

Re: Outputting as raw text with custom xml tags

I do this by building the xml files in flare and pulling in the content via snippets, ex: <ContentKey1> <help> <MadCap:snippetBlock src="..[url]" /> </help> </ContentKey1> Then I publish out with the Clean XHTML target. In my case, the developers still have to use a script to translate to ...
by lc4466
Fri Apr 16, 2021 8:44 am
Forum: Styles, Stylesheets and XML
Topic: Adding :before property to custom xml
Replies: 2
Views: 4439

Adding :before property to custom xml

Hi all. We have some custom xml tags we use for embedded text within our application which I publish from madcap using the Clean XHTML target. However, I'm also working on a way to make this content easier to review, so I'm looking at creating a print CSS format that would convert our custom tags in...
by lc4466
Tue Dec 15, 2020 2:32 pm
Forum: Web-based Outputs
Topic: Dropdown Icon Spacing Issue
Replies: 3
Views: 1234

Re: Dropdown Icon Spacing Issue

My best workaround so far has been to put the header text inside a div and give it a 98% width. It's not my favorite solution but it does seem fix the issue, so just in case anyone else is struggling with the same!
by lc4466
Tue Dec 15, 2020 2:20 pm
Forum: Web-based Outputs
Topic: Dropdown Icon Spacing Issue
Replies: 3
Views: 1234

Re: Dropdown Icon Spacing Issue

That doesn't seem to affect it either unfortunately. I think the issue truly is the conversion to a background image because by definition backgrounds don't have margins against other objects. In the Topics.css file, it's converting the images to this: .MCDropDown_Open .MCDropDownHotSpot_.MCHotSpotI...
by lc4466
Thu Dec 03, 2020 9:26 am
Forum: Web-based Outputs
Topic: Dropdown Icon Spacing Issue
Replies: 3
Views: 1234

Dropdown Icon Spacing Issue

Okay guys, I've got another one for you that I can't figure out. I have my dropdown icons swapped out and set to the right and it mostly works great, but if the text of the header is too long or becomes too long in a mobile view, it sometimes comes up against the icon or even overlaps it. It looks l...
by lc4466
Thu Dec 03, 2020 6:05 am
Forum: Web-based Outputs
Topic: How to change expander icon in top nav menu
Replies: 14
Views: 6247

Re: How to change expander icon in top nav menu

That worked like a dream, thank you so much! It's such a small thing but it's been driving my web designer crazy to not be able to change, ha. Thanks again! ETA: Ah, minor hiccup. In mobile, the icon is positioned correctly when closed but jumps to the top of the line when expanded. Not sure what's ...
by lc4466
Wed Dec 02, 2020 8:57 am
Forum: Web-based Outputs
Topic: How to change expander icon in top nav menu
Replies: 14
Views: 6247

Re: How to change expander icon in top nav menu

Well, assuming that's what you want to change, I think I managed to do that - kind of a fun challenge anyway :). Flare creates that "icon" in an interesting way, with a border that it hides a part of to make a triangle, which it then flips upside down when you expand the menu. My method w...
by lc4466
Wed Dec 02, 2020 8:15 am
Forum: Web-based Outputs
Topic: HTML5 Caching
Replies: 1
Views: 1076

HTML5 Caching

Hi all, We are finally publishing out our new help site, and I've run into an issue with caching. Initially I had the developers cache the static files (js and css mostly) for better load times, but then if updates are made to the css - or more concerningly, the toc - they're not reflected in the si...
by lc4466
Wed Sep 09, 2020 7:39 am
Forum: Flare's General Discussion
Topic: Capturing Effective Dates
Replies: 2
Views: 1065

Capturing Effective Dates

Hi all, Does anyone have any tips for how to capture the 'effective' date of particular topics? My use case is that ideally I'd like to be able to run a report on say all topics where the effective date is over a year old in order to initiate a new review cycle. Does anyone have similar processes? W...
by lc4466
Fri Apr 17, 2020 2:23 pm
Forum: Styles, Stylesheets and XML
Topic: Custom Button in Topic Toolbar (HTML5)
Replies: 1
Views: 1102

Custom Button in Topic Toolbar (HTML5)

I'm looking to create a custom button in our topic toolbar that opens(/duplicates) the currently viewed topic in a new tab. I'm using an HTML5 Side Nav skin, so I've got a separate topic toolbar skin created as well. I added the custom button under Setup, and it shows up in the list under Styles, bu...
by lc4466
Wed Nov 20, 2019 11:06 am
Forum: Styles, Stylesheets and XML
Topic: Plain xml output
Replies: 0
Views: 680

Plain xml output

Is there any way to generate a plain xml output from Flare? The closest I've gotten so far is the clean xhtml format, but it's still appending head and meta tags into the content even when I remove them in the page level text editor. Is there a target-level setting I'm missing maybe? I deselected th...