Helpcase print button and breadcrumbs

Looking at the manual for scriptcase (choose HELP > WEBHELP)

  1. each page has a header that is blue with a print icon in the far right edge of that header.

How do you create that button - AND - make it print?

Using html, I can make a print button - and it clicks - but doesn’t actually do anything once I put it in helpcase.

<!DOCTYPE html>
<html>
<body>

<p>Click the button to print the current page.</p>

<button onclick=“myFunction()”>Print this page</button>

<script>
function myFunction() {
window.print();
}
</script>

</body>
</html>

  1. Their breadcrumbs are actually links. When I use the breadcrumbs option in Helpcase > settings I get a line of text (just like I typed here) … no hyperlinks.

2015-08-29_16h13_57.png

Bump. Anybody have the code for that helpcase header? I’d like to make the print button work.