• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Print button from "Skinny on Skins" not working in Firefox

New Here ,
Nov 10, 2009 Nov 10, 2009

Copy link to clipboard

Copied

I've added the Print button to the webhelp skin and this works great in IE, but not in Firefox. I click the print button in Firefox and nothing happens. The javascript I added is as follows:

javascript:parent.frames[1].bsscright.focus();var arrayofDivs = parent.frames[1].bsscright.document.all.tags('DIV');for (x=0;x<arrayofDivs.length;x++) { arrayofDivs.style.display = 'block'; };setTimeout('window.print()',50);

Any ideas would be much appreciated.

Robohelp version: 7

Tested in Firefox 3.0.10

And I just want to say that the Skinny on Skins help file is fantastic and I refer to it often.

Views

1.2K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 10, 2009 Nov 10, 2009

Copy link to clipboard

Copied

There's a similar script on my site in Snippets. See if that deals with this problem.


See www.grainge.org for RoboHelp and Authoring tips

Follow me @petergrainge

Help others by clicking Correct Answer if the question is answered. Found the answer elsewhere? Share it here. "Upvote" is for useful posts.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 10, 2009 Nov 10, 2009

Copy link to clipboard

Copied

Thanks Peter! I've referred to your site many times over the years.

I found two snippets related to adding a Print button on your site.

Snippet 24 worked great in Firefox and IE, but didn't print all the expanding and drop-down text. Could this script be modified to do this? If so, does anyone know how?

Snippet 5 is related to adding a print icon to a topic, correct? I'd like to add the Print button to the toolbar and print all expanding/drop-down text. The script I mentioned in my intial post did this, it just didn't work in Firefox.

Thanks!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 10, 2009 Nov 10, 2009

Copy link to clipboard

Copied

Sorry but you are going to need someone who can write a script that brings these things together.


See www.grainge.org for RoboHelp and Authoring tips

Follow me @petergrainge

Help others by clicking Correct Answer if the question is answered. Found the answer elsewhere? Share it here. "Upvote" is for useful posts.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 12, 2009 Nov 12, 2009

Copy link to clipboard

Copied

Thanks Peter.

I did just that and consulted with a developer who provided me with the code below. Now when the Print button is clicked in both IE and FF, any drop-down text is expanded and the displayed topic prints.

var printAction = function()
{
var topicPane = top.frames[1].frames[1];
topicPane.focus();
var arrayofDivs = parent.frames[1].bsscright.document.getElementsByTagName('div');
for (x=0;x<arrayofDivs.length;x++)
{ arrayofDivs.style.display = 'block'; };
topicPane.print();
}

Just wanted to post this in case anyone else has this problem in the future.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Nov 12, 2009 Nov 12, 2009

Copy link to clipboard

Copied

Cool!

A big thank you to your developer. I will add this code to Snippets.


See www.grainge.org for RoboHelp and Authoring tips

Follow me @petergrainge

Help others by clicking Correct Answer if the question is answered. Found the answer elsewhere? Share it here. "Upvote" is for useful posts.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Dec 09, 2009 Dec 09, 2009

Copy link to clipboard

Copied

This is a fantastic piece of code, thank you VERY much for posting it here.

I'm running into 1 specific problem with it however,

I'm displaying PDFs in my topic pane sometimes, and this breaks the script in IE.

I wouldnt expect it to work, and of course there is the alternative Print button that the PDF has itself, however with it being there I'm sure users will attempt to use it, and it causes a rather nasty error.

In firefox, and chrome the button works, but IE8 sends this back instead. (haven't tested on previous versions of IE)

Webpage error details

User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
Timestamp: Wed, 9 Dec 2009 16:01:36 UTC


Message: Access is denied.

Line: 26
Char: 1
Code: 0
URI: file://file01/path/path/path/path/Release_Notes/whskin_tbars.htm

~That line of code it refers to in tbars.htm is the "var arrayofDivs = parent.frames[1].bsscright.document.getElementsByTagName('div');" from the script.

Any one have any ideas on why this is failing?

Thanks. If I can get a solution from one of our Dev's ill post it up.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Dec 09, 2009 Dec 09, 2009

Copy link to clipboard

Copied

Well I had no luck, after much reading it seemsits an IE security thing.

It 'should' work if the file is from the same domain as the site, which mine is, but apparently it will fail if its being looked at locally.

See these site for info.

http://codingforums.com/showthread.php?t=8473

http://www.webdeveloper.com/forum/archive/index.php/t-54903.html

In the mean time I added a piece to the code to catch the error and display a message to the user.

Because there is the 2nd print button on the PDF toolbar, users are instructed to use that instead. Better than the horrible error that IE throws.

changed code

var printAction = function()
{
var topicPane = top.frames[1].frames[1];
topicPane.focus();
try {
var arrayofDivs = parent.frames[1].bsscright.document.getElementsByTagName('div');
for (x=0;x<arrayofDivs.length;x++)
{ arrayofDivs.style.display = 'block'; };

topicPane.print();

}

catch(err)
       {
txt="Sorry, but you must use the Print button in the PDF toolbar.\n\n";
txt+="Click OK to continue.\n\n";
alert(txt);
       }

}

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Dec 09, 2009 Dec 09, 2009

Copy link to clipboard

Copied

LATEST

Thanks for this info! I wasn't aware of this issue, or of a solution.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
RoboHelp Documentation
Download Adobe RoboHelp