February 03 '08:
* NEW!! Label and barcode ZPL/EPL raw data ...
... direct from browser-hosted content to - say - a Zebra thermal printer? Review the newly-released sample, docs & code here and here.
January 28 '08:
* Problem? Has it already been fixed? *
Check here to find out.
January 22 '08:
* ScriptX SPECIAL! *
We're still offering a generous deal on fully-loaded ScriptX + MaxiPT publishing licenses.
Find out more here.
December 4 '06:
* For those of you testing or updating to IE7 XP and Vista ...
... the current release version of ScriptX (a mandatory update for IE7) is fully compatible.
August 1 '06:
* For the first time in eight years ...
... we have got around to asking some of our customers to describe their use of ScriptX.
Their responses are here.
April 11 '06:
* IE Security Update (KB912812/MS06-013) and ScriptX *
The security update for XP SP2 released on 11th April 2006 but slowly rolling out around the world is not compatible with old versions of ScriptX.
Click here for more information...
March 29 '06:
* IE update for ActiveX Control activation *
Microsoft has posted some update info here.
This change (to comply with the EOLAS judgement) applies to 'interactive' controls that render a user interface on the page.
ScriptX is a non-visual control, so works exactly the same (with no changes required to any tag or script) before or after installation of that patch.
Both our own in-depth testing and feedback from our customers confirms this.
March 10 '04:
* Zeepe 7.x is released today *
Check these bytes for the answer to "So what?" and then start your evaluation.
MeadCo's MaxiPT provides printing capabilities that are significantly more flexible and powerful than Internet Explorer's standard offering. Check these samples and their sources to see how to script the template:
Licensing MaxiPT
From version 6,1,431,2 of ScriptX and later, the licensing of the two Feature Sets of MaxiPT is controlled on the publishing license issued to you by MeadCo:
<PERMISSION PRINTING="true" MAXIPTCORE="true" MAXIPTEXTENDED="true"> </PERMISSION>
Deployment
The print template's resources are now installed client-side in a DLL and - from version 6,3,436,14 of ScriptX and later - called from there by a parameter on the ScriptX object:
<!-- MeadCo Security Manager -->
<object id="secmgr" style="display:none"
classid="clsid:5445be81-b796-11d2-b931-002018654e2e"
codebase="[your path here]/smsx.cab#Version=6,3,436,14">
<param name="GUID" value="{C537EAE6-66B2-498D-A060-683068A29856}">
<param name="Path" value="[your path here]/sxlic.mlf">
<param name="Revision" value="0">
</object>
<!-- MeadCo ScriptX -->
<object id="factory" style="display:none"
classid="clsid:1663ed61-23eb-11d2-b92f-008048fdd814">
<param name="template" value="MeadCo://maxipt"/>
</object>
MaxiPT functionality
MaxiPT incorporates these additional properties:
document.printingRules.allPagesHeader = "<div align=center> <h1> MeadCo's MaxiPT </h1> <br>"+ "Header for &p page <br> time: &T </div>";
document.printingRules.firstPageFooter = "<div align=right> <h3> MeadCo's MaxiPT </h3> <br>"+ "Footer for page &p of &P </div>";
document.printingRules.extraFirstPageFooter = "<font color="#0000FF"> Total pages: <b>&P</b> - "+ "<i>Technical Data Sheets</i><font>";
document.printingRules.allHeaderHeight = 120; // points document.printingRules.extraFirstFooterHeight = 60;
document.printingRules.pageRange = "1,3-5,7,9-11";
document.printingRules.printingPass= "even";
document.printingRules.mirrorMargins = true;
document.printingRules.optimalPageLayout = true;
document.printingRules.limitContentLastPage = 2.5; // inches
document.printingRules.optimalPageLayoutDirection = "Equally"; // "Top", "Botton", "Equally"
document.printingRules.useActiveFrame = true;
document.printingRules.pageWidth = 1280; // points document.printingRules.pageHeight = 1024;
document.printingRules.pageZoom = "50%";