﻿<?xml version="1.0" encoding="utf-8"?><rss version="2.0"><channel><title>ScriptX User Forum</title><link>https://scriptx.meadroid.com</link><item><title>Printing to PDF</title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2022/1/printing-to-pdf.aspx</link><description><![CDATA[
<p>Hi Everyone,</p>
<p>How can I go about printing to PDF?</p>
<p>I can see all of the physical printers in my Domain, but I am unable to print to a local (Adobe) PDF printer.</p>
<p>Any help is greatly appreciated.</p>
<p>Kind Regards,</p>
<p>Davo</p>
]]></description><pubDate>Fri, 14 Jan 2022 00:47:22 GMT</pubDate></item><item><title>IE 11 hang when print with Scriptxv7.1.0.60 (1)</title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2020/3/ie-11-hang-when-print-with-scriptxv71060-(1).aspx</link><description><![CDATA[
<p>Hi All,</p>
<p>&nbsp;I am using ScriptX v7.1.0.60 for my website printing and recently we encountered the following error :</p>
<p>&quot;This webpage wants to run 'MeadCo ScriptX' which isn't compatible with Internet Explorer's enhanced security features. If you trust this site, you can disable Enhanced Protected Mode for this site and allow the control to run' .</p>
<p>I have click on the 'Run control' button and it can pop out the Print window . But if I click on the 'Cancel' button, the whole IE browser will hang and I have to close the whole browser.&nbsp; The following error will keep coming back if I cleared the cache
 of my browser.</p>
<p>Below is my code . Anyone know how to resolve this issue ?</p>
<p>&lt;script language=&quot;JavaScript&quot;&gt;</p>
<p>function PrintReceiptPage()<br>
{</p>
<p>var h = factory.printing.header;<br>
&nbsp;var f = factory.printing.footer;<br>
&nbsp;factory.printing.header = &quot;&quot;;<br>
&nbsp;factory.printing.footer = &quot;&quot;;<br>
&nbsp;<br>
&nbsp;factory.printing.Print(false);&nbsp;<br>
&nbsp;factory.printing.header = h;<br>
&nbsp;factory.printing.footer = f;<br>
<br>
&nbsp;window.close();<br>
}</p>
<p><br>
setTimeout(&quot;PrintReceiptPage();&quot;,500);<br>
&lt;/script&gt;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></description><pubDate>Fri, 06 Mar 2020 02:00:56 GMT</pubDate></item><item><title>IE 11 hang when print with Scriptxv7.1.0.60</title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2020/3/ie-11-hang-when-print-with-scriptxv71060.aspx</link><description><![CDATA[
<h4 style="">Hi ,</h4>
<h4 style="">Recently we have some policy upgrade to our laptop and when I launched the site that require printing, I will hit the following error :&nbsp;</h4>
<h4 style="">'This website wants to run 'MeadCo ScriptX' which isn't compatible with Internet Explorer's enhanced security features. If you trust this site, you can disable Enhanced Protected Mode for this site and allow the control to run'&nbsp;</h4>
<h4 style="">and there will be 2 buttons &quot;Run Control&quot; and &quot;Don't Run&quot; . When I click on the &quot;Run Control&quot; button, it will show the Printer windows . However if I click on 'Cancel' from the Print window and back to my website, the window will just hang .&nbsp;</h4>
<h4 style="">Below is my code. Any idea why it will hang ?&nbsp;</h4>
<h4 style="">&nbsp;</h4>
<pre class="x_brush: x_c-sharp;" style="">function gf_DoPrint() {
&nbsp; //save existing user's info
&nbsp; var h = factory.printing.header;
&nbsp; var f = factory.printing.footer;
&nbsp; //hide the button
&nbsp; document.all(&quot;printbtn&quot;).style.visibility = 'hidden';
&nbsp; //set header and footer to blank
&nbsp; factory.printing.header = &quot;&quot;;
&nbsp; factory.printing.footer = &quot;&quot;;

&nbsp; &nbsp;//print page without prompt
&nbsp; &nbsp; factory.DoPrint(false);
&nbsp; //restore user's info
&nbsp; factory.printing.header = h;
&nbsp; factory.printing.footer = f;
&nbsp; //show the print button
&nbsp; document.all(&quot;printbtn&quot;).style.visibility = 'visible';
}</pre>
<p style="">&nbsp;</p>
]]></description><pubDate>Thu, 05 Mar 2020 09:37:33 GMT</pubDate></item><item><title>print popup window not show in IE 11</title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2019/10/print-popup-window-not-show-in-ie-11.aspx</link><description><![CDATA[
<p>Review the tech refs for info on prompted / promptless Print:</p>
<p>&nbsp;</p>
<p><strong>https://tinyurl.com/yxtjouzp</strong></p>
<div id="x_success">&nbsp;</div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></description><pubDate>Thu, 24 Oct 2019 12:40:38 GMT</pubDate></item><item><title>print popup window not show in IE 11 (1)</title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2019/10/print-popup-window-not-show-in-ie-11-(1).aspx</link><description><![CDATA[
<p style="margin:0in 0in 0in 0.375in; font-family:Calibri; font-size:11pt">I use factory.printing.Print function in internet explorer 11 with MeadCo ScriptX 8.2.1.2, when I click print button then print directory from browser without print popup window.</p>
<p>&nbsp;</p>
]]></description><pubDate>Thu, 24 Oct 2019 05:20:19 GMT</pubDate></item><item><title>Print preview/print hanging</title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2014/3/print-previewprint-hanging.aspx</link><description><![CDATA[
<p>I have IE 10 on windows 7.</p>
<p>I set some print settings and then try to print preview and IE hangs.</p>
<p>I had to comment out &nbsp;MeadCo.ScriptX.PrintPage(true); because that cause IE to hang to. I'm using scriptx 1.7.</p>
<p>Code is below:</p>
<p>&nbsp;</p>
<p>&nbsp;&lt;script type=&quot;text/javascript&quot;&gt;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; $(window).load(function () {</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (MeadCo.ScriptX.Init()) {</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; if (MeadCo.Licensing.IsLicensed()) {</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MeadCo.ScriptX.Printing.SetMarginMeasure(2);</p>
<p>&nbsp;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $(&quot;#pbPrintLetter&quot;).click(function () {</p>
<p>&nbsp;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; with (MeadCo.ScriptX.Printing) {</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; header = &quot;This is LETTER size with LANDSCAPE orientation.&quot;;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; footer = &quot;This is LETTER size with LANDSCAPE orientation.&quot;;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; orientation = &quot;landscape&quot;;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; topMargin = 1;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; leftMargin = 1;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; paperSize = &quot;Letter&quot;;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</p>
<p>&nbsp;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;// &nbsp; MeadCo.ScriptX.PrintPage(true);</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; });</p>
<p>&nbsp;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; $(&quot;#pbPrintLegal&quot;).click(function () {</p>
<p>&nbsp;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; with (MeadCo.ScriptX.Printing) {</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; header = &quot;This is LEGAL size with LANDSCAPE orientation.&quot;;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; footer = &quot;This is LEGAL size with LANDSCAPE orientation.&quot;;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; orientation = &quot;landscape&quot;;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; topMargin = 1;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; leftMargin = 1;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; paperSize = &quot;A4&quot;;</p>
<p>&nbsp;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</p>
<p>&nbsp;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; // &nbsp;MeadCo.ScriptX.PrintPage(true);</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;&nbsp;</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; });</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; else {</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; MeadCo.Licensing.ReportError(&quot;This sample requires a license.&quot;);</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; }</p>
<p>&nbsp; &nbsp; &nbsp; &nbsp; });</p>
<p>&nbsp; &nbsp; &lt;/script&gt;</p>
<p>&nbsp;</p>
]]></description><pubDate>Mon, 24 Mar 2014 23:51:56 GMT</pubDate></item><item><title>Printing to a non-default printer</title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2018/6/printing-to-a-non-default-printer.aspx</link><description><![CDATA[
<p>Hi,</p>
<p>Does scriptX contain anything that would allow me to print to a non-default printer?</p>
<p>I have already captured the printer name(s) that I am interested in. I was hoping that I could remove some old VBScript with a cleaner solution.&nbsp;</p>
<p>thanks.</p>
<p><span style="font-size:1em">Scot.</span></p>
]]></description><pubDate>Mon, 04 Jun 2018 17:12:26 GMT</pubDate></item><item><title>Javascript error IE9</title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2012/10/javascript-error-ie9.aspx</link><description><![CDATA[
<p>I get</p>
<p>an error has occured in the script on this page</p>
<p>line 2126</p>
<p>char 1</p>
<p>error: invalid procedure call or argument</p>
<p>url: res://ieframe.dll/preview.js</p>
<p>win 7 home prem 64bit</p>
<p>ie9</p>
]]></description><pubDate>Wed, 03 Oct 2012 20:01:59 GMT</pubDate></item><item><title>Print is not working in Internet Explorer.</title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2018/1/print-is-not-working-in-internet-explorer.aspx</link><description><![CDATA[
<p>Hi,</p>
<p>I have an issue with printing a file even after installing MeadCo HTML printing and MeadCo Security Manager in IE.</p>
<p>I have a URL &quot;https://[myUrl]&quot; which gives me a pdf file with some information. I tried so many different ways to pop up the new window rendering the pdf file from the URL provided and at the same time send that pdf to my default printer. But it never worked
 as expected. Here is the code that i tried:</p>
<p>First I tried like this, but didn't work</p>
<p>==============================================================================================</p>
<p class="x_MsoNormal">&lt;html&gt;</p>
<p class="x_MsoNormal">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &lt;object id=&quot;factory&quot; style=&quot;display:none&quot;</p>
<p class="x_MsoNormal">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;classid=&quot;clsid:1663ed61-23eb-11d2-b92f-008048fdd814&quot;</p>
<p class="x_MsoNormal">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;codebase=&quot;https://[myUrl]&quot;&gt;</p>
<p class="x_MsoNormal">&lt;/object&gt;</p>
<p class="x_MsoNormal">&lt;script&gt;</p>
<p class="x_MsoNormal">function btn_print_onclick() {</p>
<p class="x_MsoNormal">&nbsp; factory.printing.Print(false);</p>
<p class="x_MsoNormal">}</p>
<p class="x_MsoNormal">&lt;/script&gt;</p>
<p class="x_MsoNormal">&lt;body&gt;</p>
<p class="x_MsoNormal">&lt;button onclick=&quot;btn_print_onclick()&quot;&gt;Print report&lt;/button&gt;</p>
<p class="x_MsoNormal">&lt;/body&gt;</p>
<p>&nbsp;</p>
<p class="x_MsoNormal">&lt;/html&gt;</p>
<p class="x_MsoNormal">====================================================================================================</p>
<p class="x_MsoNormal">Again i tried this way:</p>
<p class="x_MsoNormal">===================================================================================================</p>
<p class="x_MsoNormal"><span style="font-size:12.16px">&lt;html&gt;</span></p>
<p class="x_MsoNormal"><span style="font-size:12.16px">&lt;script&gt;</span></p>
<p class="x_MsoNormal"><span style="font-size:12.16px">function print_label() {</span></p>
<p class="x_MsoNormal"><span style="font-size:12.16px">var myWindow = window.open('https://[myUrl]','','width=800,height=600');</span></p>
<p class="x_MsoNormal"><span style="font-size:12.16px">if (navigator.appName == 'Microsoft Internet Explorer') window.print();</span></p>
<p class="x_MsoNormal"><span style="font-size:12.16px">else myWindow.print();</span></p>
<p class="x_MsoNormal"><span style="font-size:12.16px">}</span></p>
<p class="x_MsoNormal"><span style="font-size:12.16px">&lt;/script&gt;</span></p>
<p class="x_MsoNormal"><span style="font-size:12.16px">&lt;body&gt;</span></p>
<p class="x_MsoNormal"><span style="font-size:12.16px">&lt;button onclick='print_label()'&gt;Print report&lt;/button&gt;</span></p>
<p class="x_MsoNormal"><span style="font-size:12.16px">&lt;/body&gt;</span></p>
<p class="x_MsoNormal"><span style="font-size:12.16px">&lt;/html&gt;</span></p>
<p class="x_MsoNormal"><strong>In this case it tries to download or save the file but never poped up the new window with the pdf file that i was expecting and never sent the file to printer.</strong></p>
<p class="x_MsoNormal">Your help is greately appreciated.</p>
<p class="x_MsoNormal">&nbsp;</p>
<p class="x_MsoNormal">Thank you&nbsp;</p>
<p class="x_MsoNormal">&nbsp;</p>
]]></description><pubDate>Thu, 25 Jan 2018 14:32:56 GMT</pubDate></item><item><title>Printing in Terminal Server 2008 R2</title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2014/12/printing-in-terminal-server-2008-r2.aspx</link><description><![CDATA[
<p>All out servers are TS on 2008 R2. We are upgrading to IE11. The advanced printing message comes and works for domain admins. It doesn't work for users. We geet message &quot;Meadco scriptx is not properly installed&quot;.</p>
<p>Meadco security manager does show in toolbars and extensions in &quot;Manage add-ons&quot;.</p>
<p>We are not in a position to rebuild 62 servers as it would mean be 2 days downtime per site.</p>
<p>Thanks for any help.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></description><pubDate>Fri, 31 Mar 2017 09:47:06 GMT</pubDate></item><item><title>Printing files transparently</title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2017/7/printing-files-transparently.aspx</link><description><![CDATA[
<p>&nbsp;I have always used ScriptX to print web pages rhat were visible to the user, via a Print button.&nbsp; Is there a way to send files from a web server directly to ScriptX without first displaying them?</p>
<p>&nbsp;</p>
<p>Thanks in advance,</p>
<p>Jerry Scannell</p>
]]></description><pubDate>Sat, 22 Jul 2017 13:43:15 GMT</pubDate></item><item><title>with KB4022715 and frame-page, I can't use ScriptX.</title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2017/6/with-kb4022715-and-frame-page,-i-cant-use-scriptx.aspx</link><description><![CDATA[
<p>Today,with&nbsp; KB4022715 from Microsoft Update ,windows10,I can't use ScriptX. I can get all white page only.Our Web page use Frame.</p>
<p>After uninstall&nbsp; KB4022715,I can print Web page Normaly.Please tell me the countermeasure.</p>
<p>&nbsp;</p>
]]></description><pubDate>Wed, 14 Jun 2017 07:37:20 GMT</pubDate></item><item><title>ScriptX printing error from iframes</title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2017/1/scriptx-printing-error-from-iframes.aspx</link><description><![CDATA[
<p>Hello!</p>
<p>I have free licensed ScriptX version 7, and I have iframes from which I want to print html page...</p>
<p>So, when I print first iframe all is working fine, then I print another frame, and also all is OK, but when I returned to first frame, and want to print it , I get an JS error&nbsp;</p>
<pre class="x_x_brush: x_x_js;">Only one ScriptX object can be used per browser window.</pre>
<p class="x_x_brush: x_x_js;">&nbsp;Here is my declaration:</p>
<p class="x_x_brush: x_x_js;">&lt;!-- MeadCo ScriptX --&gt;</p>
<p class="x_x_brush: x_x_js;">&lt;object id=&quot;factory&quot; style=&quot;display:none&quot;</p>
<p class="x_x_brush: x_x_js;">&nbsp;classid=&quot;clsid:1663ed61-23eb-11d2-b92f-008048fdd814&quot;</p>
<p class="x_x_brush: x_x_js;">&nbsp;codebase=&quot;/smsx.cab#Version=7&quot;&gt;</p>
<p class="x_x_brush: x_x_js;">&lt;/object&gt;&nbsp;</p>
<p class="x_x_brush: x_x_js;">and printing code:</p>
<p class="x_x_brush: x_x_js;">factory.printing.header = \&quot;\&quot;;</p>
<p class="x_x_brush: x_x_js;">factory.printing.footer = \&quot;\&quot;;</p>
<p class="x_x_brush: x_x_js;">factory.printing.portrait = true;</p>
<p class="x_x_brush: x_x_js;">factory.printing.leftMargin = 0;</p>
<p class="x_x_brush: x_x_js;">factory.printing.topMargin = 0;</p>
<p class="x_x_brush: x_x_js;">factory.printing.rightMargin = 0;</p>
<p class="x_x_brush: x_x_js;">factory.printing.bottomMargin = 0;</p>
<p class="x_x_brush: x_x_js;">factory.printing.Print(false);</p>
<p class="x_x_brush: x_x_js;">&nbsp;</p>
<p class="x_x_brush: x_x_js;">P.S in each frame page I have this code...</p>
<p class="x_x_brush: x_x_js;">So any advices, please?</p>
]]></description><pubDate>Tue, 10 Jan 2017 15:30:22 GMT</pubDate></item><item><title>Using ScriptX with Firefox </title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2016/10/using-scriptx-with-firefox-.aspx</link><description><![CDATA[
<p>Is there an issue with loading and running the ScriptX plugin from within Firefox version 47?</p>
<p>Here is my code snippet to load the object.&nbsp; It works on IE version 11 if that helps:</p>
<p>&lt;!-- MeadCo ScriptX --&gt;<br>
&lt;object viewastext<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; id&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = &quot;factory&quot;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; style&nbsp;&nbsp;&nbsp; = &quot;display:none&quot;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; classid&nbsp; = &quot;clsid:1663ed61-23eb-11d2-b92f-008048fdd814&quot;<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; codebase = &quot;<a href="http://www.kofcri.org/smsx.cab#Version=7,5,0,20">http://www.kofcri.org/smsx.cab#Version=7,5,0,20</a>&quot;&gt;<br>
&lt;/object&gt;</p>
<p>I checked the properties of the smsx.cab that is in that path, and it has an internal timestamp of Tuesday, may 23, 2006 @ 9:47:07 AM which seems to be quite old, expecially I know that I've had a few ScriptX upgrades along the way, but maybe the .cab file
 doesn't change that often.</p>
<p>Also, does it matter where you place javascript button-click functions?&nbsp; They don't seem to work anywhere.&nbsp; Since I am troubleshooting, I changed the event handler for&nbsp;my &quot;Page Setup&quot; button from &quot;factory.printing.PageSetup()&quot; to &quot;jsPageSetup();&quot; but I don't
 know where to put the function.&nbsp; Here's what I put in there as a troubleshooting thing but nothing happens whether I put it inside &lt;head&gt; or &lt;body&gt;:<br>
function jsPageSetup()<br>
{<br>
&nbsp;&nbsp; alert ( &quot;Got here&quot; );<br>
&nbsp;&nbsp; if ( !factory.object )<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; alert ( &quot;uh-oh&quot; );</p>
<p>&nbsp; alert ( &quot;Got here, too&quot; );<br>
&nbsp; jsPutSettings();<br>
&nbsp; factory.printing.PageSetup();<br>
}</p>
<p>Since the factory object is set right after the &lt;body&gt; statement, I assume that javascript functions that use the object need to be in the &lt;body&gt; section, too.</p>
<p>My website is using Classic ASP.</p>
<p>Thanks in advance,</p>
<p>Paul</p>
]]></description><pubDate>Mon, 24 Oct 2016 15:22:38 GMT</pubDate></item><item><title>Issue with context menu print/preview in Internet Explorer after calling factory.printing.PrintHTML()</title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2016/4/issue-with-context-menu-printpreview-in-internet-explorer-after-calling-factoryprintingprinthtml().aspx</link><description><![CDATA[
<div>We've been experiencing an issue when using the context menu print/preview in Internet Explorer after calling factory.printing.PrintHTML(). &nbsp;The whole document is printed/previewed in this scenario instead of the specific frame. &nbsp;It works correctly before
 calling factory.printing.PrintHTML().</div>
<div>The current workaround is to close and re-open the window so the PrintX control will reload.</div>
<div>Code snippet below:</div>
<div>var printAttribs = { topMargin : 0.5, leftMargin : 0.3, rightMargin : 0.3 }</div>
<div>
<div>...</div>
<div>&nbsp; &nbsp;</div>
<div>printing.copies = (attribs &amp;&amp; attribs[&quot;copies&quot;]) ? attribs[&quot;copies&quot;] : 1;;</div>
<div>printing.header = &quot;&quot;;</div>
<div>printing.footer = &quot;&quot;;</div>
<div>&nbsp; &nbsp;&nbsp;</div>
<div>printing.portrait = (attribs &amp;&amp; attribs[&quot;portrait&quot;]) ? attribs[&quot;portrait&quot;] : true;</div>
<div>&nbsp; &nbsp;&nbsp;</div>
<div>printing.SetMarginMeasure(2); // allegedly this resets the margins to defaults</div>
<div>printing.topMargin = (attribs &amp;&amp; attribs[&quot;topMargin&quot;]) ? attribs[&quot;topMargin&quot;] : 0;</div>
<div>printing.leftMargin = (attribs &amp;&amp; attribs[&quot;leftMargin&quot;]) ? attribs[&quot;leftMargin&quot;] : 0;</div>
<div>printing.rightMargin = (attribs &amp;&amp; attribs[&quot;rightMargin&quot;]) ? attribs[&quot;rightMargin&quot;] : 0;</div>
<div>printing.bottomMargin = (attribs &amp;&amp; attribs[&quot;bottomMargin&quot;]) ? attribs[&quot;bottomMargin&quot;] : 0;</div>
<div>...</div>
<div>printing.PrintHTML(html, !isDirect);&nbsp;</div>
<div>printing.WaitForSpoolingComplete();&nbsp;</div>
<div>printing.templateURL = &quot;&quot;;</div>
</div>
<div>
<div>We not setting the document.printingRules.useActiveFrame in this scenario (just mentioning this in case it's relevant).</div>
<div>A similar issue was reported in the release history as fixed in v7.5.0.20. &nbsp;We're currently using a version above that, v7.7.0.20. &nbsp;Browser is IE11 and OS is Windows 7.</div>
<div>Please let me know if you need any more information. &nbsp;Thanks in advance.</div>
</div>
]]></description><pubDate>Tue, 19 Apr 2016 22:31:53 GMT</pubDate></item><item><title>Does MeadCo ScriptX Control works in Firefox and Chrome?</title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2016/4/does-meadco-scriptx-control-works-in-firefox-and-chrome.aspx</link><description><![CDATA[
<div>Hi,&nbsp;</div>
<div>I have following code that I have used for many years, it works well in IE, is there a reason why it doesn't work in firefox and chrome and is there work arounds so that for all browsers?</div>
<div>&nbsp;</div>
<div>&nbsp;</div>
<div>
<pre class="x_brush: x_c-sharp;">&lt;object id='factory' style='display:none' viewastext classid = 'clsid:1663ed61-23eb-11d2-b92f-008048fdd814' codebase='smsx.cab#Version=6,5,439,50'&gt;&lt;/object&gt;
&lt;script defer src='jscript.js'&gt;

&lt;input  type='button' value='Print' onclick='factory.printing.footer = &quot;&amp;b&amp;b&amp;p/&amp;P&quot;;factory.printing.Print(true);'&gt;
&lt;input  type='button' value='Page Setup...' onclick='factory.printing.footer = &quot;&quot;&amp;b&amp;b&amp;p/&amp;P&quot;&quot;; factory.printing.PageSetup()'&gt; 
&lt;input type='button' value='Print Preview...' onclick='factory.printing.footer = &quot;&amp;b&amp;b&amp;p/&amp;P&quot;;factory.printing.Preview()'&gt;</pre>
<p>&nbsp;</p>
</div>
<div>I got this error when it is running in Chrome, seems like it is not recognizing the object's property.</div>
<div>&nbsp;</div>
<div>Uncaught SyntaxError: Unexpected token . -- in jscript.js</div>
<div>Uncaught TypeError: Cannot set property 'footer' of undefined - in aspx</div>
<div>Please advice. Your help wouild be greatly appreciated!</div>
]]></description><pubDate>Tue, 19 Apr 2016 19:27:08 GMT</pubDate></item><item><title>Stop printing when text lines are over</title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2016/3/stop-printing-when-text-lines-are-over.aspx</link><description><![CDATA[
<p>Hi jerry<br>
how would i set a custom paper size? lets say i want the paper to be 20cm wide and 9cm high<br>
thank you in advance</p>
]]></description><pubDate>Wed, 16 Mar 2016 04:23:53 GMT</pubDate></item><item><title>Printing works 2-3 times then stops</title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2016/3/printing-works-2-3-times-then-stops.aspx</link><description><![CDATA[
<p><span style="color:#333333; font-family:Arial,sans-serif; font-size:14px; line-height:20px">I current have a client with a</span>&nbsp;<span style="color:#333333; font-family:Arial,sans-serif; font-size:14px; line-height:20px">UFRII printer driver and when they
 go to print, the print screen comes up between 2-3 times then after the second or third time, the print screen stops appearing. &nbsp;This is not the case with other clients having a PCL5 driver. &nbsp;</span><span style="color:#333333; font-family:Arial,sans-serif; font-size:14px; line-height:20px">Why
 is this? &nbsp;</span><span style="color:#333333; font-family:Arial,sans-serif; font-size:14px; line-height:20px">Clients with the UFRII driver cannot change to the PCL5 driver because their older Cannon printers cannot run it. &nbsp;</span></p>
<p><span style="color:#333333; font-family:Arial,sans-serif; font-size:14px; line-height:20px">Thank you</span></p>
]]></description><pubDate>Thu, 10 Mar 2016 15:10:18 GMT</pubDate></item><item><title>The license could not be verified&amp;quot; for the sxlic.mlf file</title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2016/1/the-license-could-not-be-verifiedquot-for-the-sxlicmlf-file.aspx</link><description><![CDATA[
<p><span style="font-family:Arial; font-size:13.3333px; background-color:#f5f5f5">We confirm the troubleshooting steps provided from MeadCo support were performed:&nbsp;</span><br style="font-family:Arial; font-size:13.3333px">
<span style="font-family:Arial; font-size:13.3333px; background-color:#f5f5f5">1. Confirmed Intermediate (VeriSign Class 3 Code Signing 2010 CA) and Root (eriSign Class 3 Public Primary Certification Authority - G5) certificates are in place in the MMC on the
 server.&nbsp;</span><br style="font-family:Arial; font-size:13.3333px">
<span style="font-family:Arial; font-size:13.3333px; background-color:#f5f5f5">2. Updated the ScriptX to the latest available version 7.7.0.20&nbsp;</span><br style="font-family:Arial; font-size:13.3333px">
<span style="font-family:Arial; font-size:13.3333px; background-color:#f5f5f5">3. Confirmed the servers policy allows for downloading &quot;update root certificates&quot; automatically although we also manually imported the required Intermediate/Root certificates.&nbsp;</span><br style="font-family:Arial; font-size:13.3333px">
<span style="font-family:Arial; font-size:13.3333px; background-color:#f5f5f5">4. Cleared local server browser Cache for Internet Explorer.&nbsp;</span><br style="font-family:Arial; font-size:13.3333px">
<span style="font-family:Arial; font-size:13.3333px; background-color:#f5f5f5">5. Confirmed the Properties &gt; Digital Signatures, of the license file C:\xampp\htdocs\admin\sxlic.mlf has no error when viewing the certificate for Mead &amp; Company Limited. This confirms
 the certificate is correct and the Digital Signature is recognized.&nbsp;</span><br style="font-family:Arial; font-size:13.3333px">
<br style="font-family:Arial; font-size:13.3333px">
<span style="font-family:Arial; font-size:13.3333px; background-color:#f5f5f5">Unfortunately, testing continues to return the error message for the license file.&nbsp;</span></p>
<p><span style="font-family:Arial; font-size:13.3333px; background-color:#f5f5f5">The error message is: &quot;The publish license for this page cannot be properly verified. Adwanced functionality will not be available and scripts error may now occur on thsi page..&quot;</span></p>
<p><span style="font-family:Arial; font-size:13.3333px; background-color:#f5f5f5">Any idea?</span></p>
<pre class="x_brush: x_c-sharp;">&nbsp;</pre>
]]></description><pubDate>Wed, 06 Jan 2016 07:50:48 GMT</pubDate></item><item><title>French accents (é, è, à) are printed as Empty squares</title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2015/12/french-accents-(é,-è,-à)-are-printed-as-empty-squares.aspx</link><description><![CDATA[
<p>We are using IE 11 under Win 7 with the latest Script x. Everytime when we print badge stickers with our Dymo 450, french accents come out as empty little squares.</p>
<p>Can you please help?</p>
<p>thanks a lot</p>
<p>Regards</p>
<p>Michel</p>
]]></description><pubDate>Thu, 24 Dec 2015 09:57:52 GMT</pubDate></item><item><title>Intermittant Print Dialogue box showing with automation</title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2015/12/intermittant-print-dialogue-box-showing-with-automation.aspx</link><description><![CDATA[
<p>This issue is resolved&nbsp;in ScriptX 7.7</p>
<p>&nbsp;</p>
]]></description><pubDate>Fri, 18 Dec 2015 18:48:27 GMT</pubDate></item><item><title>Black box when printing PDF in BatchPrintPDF</title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2015/11/black-box-when-printing-pdf-in-batchprintpdf.aspx</link><description><![CDATA[
<p>Hello,</p>
<p>I (and some of my customers) am having an issue where my PDFs are printing out with a large black box on them when printing through the BatchPrintPDF method.</p>
<p>I am using an older version of ScriptX (7,5,5,16) - would updating to the latest version fix this issue?</p>
<p>Or, is there a way to tell the printer to &quot;Print as Image&quot; similar to what one can do through Adobe Acrobat?</p>
<p>Thank you for the help.</p>
]]></description><pubDate>Tue, 17 Nov 2015 18:11:58 GMT</pubDate></item><item><title>Change preview dialog language</title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2015/10/change-preview-dialog-language.aspx</link><description><![CDATA[
<p>Hello,<br>
I use ScriptX to print and preview web page by Javascript.<br>
It works fine, but there is one problem.<br>
Manually preview without using ScriptX, preview dialog is shown by Japanese,<br>
But using ScriptX, preview dialog is shown by English, like 'page', 'shrink to fit', etc.<br>
Is there any way to change preview dialog language?<br>
<br>
Regards,<br>
nakamura</p>
]]></description><pubDate>Mon, 05 Oct 2015 01:59:36 GMT</pubDate></item><item><title>The MeadCo Publishing License has expired</title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2012/6/the-meadco-publishing-license-has-expired.aspx</link><description><![CDATA[
<p>Hello,</p>
<p>I receive the following error message when trying to print a view in Microsoft Forecaster, version 6.7 SP9:&nbsp; The MeadCo Publishing license has expired.</p>
<p>The client is moving to the newer release of Forecaster but would like to print out data for this year.&nbsp; Any suggestions??</p>
<p>Thanks,</p>
<p>Alan Linhart</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
]]></description><pubDate>Fri, 15 Jun 2012 22:36:08 GMT</pubDate></item><item><title>PaperType in Factory.print</title><link>https://scriptx.meadroid.com/community-support/community-forum/printing/2015/7/papertype-in-factoryprint.aspx</link><description><![CDATA[
<p>Hi everyone.</p>
<p>For one of our application we need to specify the paper type.</p>
<p>In the factory.print, I don't see how to set this parameter:&nbsp;http://scriptx.meadroid.com/knowledge-bank/technical-reference/factory/printing.aspx?id=1176</p>
<p>Is there a way to do that?</p>
<p>&nbsp;</p>
<p>Thank you</p>
]]></description><pubDate>Fri, 17 Jul 2015 10:51:02 GMT</pubDate></item></channel></rss>