aeb.js

来自「It uses latex to give question papers」· JavaScript 代码 · 共 25 行

JS
25
字号
/*
    AEB Import FDF Methods

    Copyright (C) 2006 AcroTeX.Net
    D. P. Story
    http://www.acrotex.net

    Version 1.0
*/
if ( typeof aebTrustedFunctions == "undefined") {
    aebTrustedFunctions = app.trustedFunction( function ( doc, oFunction, oArgs )
    {
        app.beginPriv();
            var retn = oFunction( oArgs, doc )
        app.endPriv();
        return retn;
    });
}
aebImportAnFDF = app.trustPropagatorFunction( function ( oArgs, doc )
{
    app.beginPriv();
        doc.importAnFDF(oArgs);
    app.endPriv();
});

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?