SnippetRunner CommonInterface

I installed Acrobat 8 and the Acrobat 8 SDK and used the CommonInterfaceFX.swf with the SnippetRunner. It worked up until this week. Now, when I open CommonInterfaceFX.swf, I get no UI at all, just a blank page in IE with a small symbol for a broken app.
Then I uninstalled Acrobat 8, installed Acrobat 9, Acrobat 9 SDK and Adobe AIR. I ran Acrobat 9 and then the CommonInterfaceAIR.air. The Common Interface ran with a working UI but the UI showed no plugins, nothing but the documentation in one of the panels.
Then I uninstalled Acrobat 9 and re-installed Acrobat 8. Same issue with CommonInterfaceFX.swf.
I do the Acrobat work on a non-networked XP SP3 system. Nothing in the Event Viewer. Add or Remove Programs shows that I have Adobe Flash Player ActiveX installed.

When you installed 9 and the SDK 9, did you recompile the SnippetRunner project before trying to run the interface?

Similar Messages

  • Trying to load the sample plugin snippetRunner but it's not getting loaded

    I tried to load the sample pluggin SniipetRunner and open Indesign.
    Indesign opened successfully and is showing other plug-ins in the plug-in drop down but now SnippetRunner
    any idea?

    I had the same problem. The SnippetRunner can be found under "Window" in the top menu bar. A screenshot can be seen here: http://stackoverflow.com/questions/23214516/indesign-sdk-sample-plugin-not-working/2323971 5#23239715

  • Two simple SnippetRunner questions which I cannot answer.

    I've started with "JavaScripting" and to be honest I am still confused. I played a little bit with SnippetRunner example.So I have two questions.
    1)Where does "sdkCodeSnippetRunnerObject" name come from?
    In "snippetrunner\examplefiles\scripts\javascript\SnippetRunner.jsx" is this.
    >// get the SDKCodeSnippetRunner object
    var snippetRunner = app.sdkCodeSnippetRunnerObject;
    I understand that in xxxx.fr there is defined "sdkCodeSnippetRunnerObject" object and is added to application object but when I tried to find this string in source codes "sdkCodeSnippetRunnerObject" simply didn't exist....
    2)How can I run some snippetRunner method?
    I wrote this.
    >var snippet = snippetRunner.sdkCodeSnippets.item(53);
    if (snippet.canRun() == true)
    snippet.run();
    but it didn't work. 53 should be PlaceFile snippet.
    Thanks,
    pyso

    Inside the .fr the name is formatted as multiple words separated by spaces matching the notation for AppleScript. The capitalization is just a different formatting for JavaScript. For your object, see SnipRun.fr line 1319, below the kSnipRunObjectScriptElement ID.
    There are also plenty details in the sdkdocs, e.g. scriptable-plugin.pdf
    And Ole is right that these questions are better asked in the SDK forum.
    Regards,
    Dirk

  • How to create a Gradientcolor from two existing swatches

    Hello all,
    I have 2 colors in the swatches palette.has anyone how to create a new gradient color from this to swatches.
    So far I can get my to colors from the palette and extract their color:
    aSwatch1 = sAISwatchList->GetSwatchByName( colList, colorName1 );
    aSwatch2 = sAISwatchList->GetSwatchByName( colList, colorName1 );
    iErr = sAISwatchList->GetAIColor( aSwatch1, &colorP1);
    iErr = sAISwatchList->GetAIColor( aSwatch2, &colorP2);
    // now somehow create a new gradient:
    iErr = sAIGradient->NewGradient( &gradientHnd );
    but what do now. to get the new color from colorP1 and colorP2. I need a simple linear gradient.
    Any hints?
    regards
    Michael

    Hello,
    > Please, excuse any ignorance below. I'm not well versed in the actual artistic side of Illustrator, just the implementation
    excused because you're the one of the few people here who give thoe most usefull answers
    > Isn't that to be expected though? From my admittedly limited understanding, the gradient being saved is really just a sequence of colour stops. I would have thought since the angle of the gradient is more of a property of how its applied to the path (or whatever) that it wouldn't make sense to save it on the gradient colour.
    No, not from my view (and needs ).
    The color for the gradient has a type of AIGradientStyleMap. this struct contains the angle für the linear gradient etc. This color is added to the swatchpalette so it shoud keep the value.
    If you replace the CreateGradientSwatch function in SnpGradien.cpp of the SnippetRunner with the following code a 2nd swatch with an different angle is added to the swatchpalette when creating a new linear gradient is created (name seems not what it should but 2 swatches are created. Applying this 2 swatches to a rectangle also the angle is changed as it should be.
    So from my point of view Illustrator doesn't take the angle when a new color/swatch is created in the swatch panel. Why the angle is saved by creating a style is another question and difficult to answer without looking inside the source of Illustrator
    ASErr SnpGradient::CreateGradientSwatch(const AIGradientHandle gradient, AISwatchRef& swatch)
    ASErr result = kNoErr;
    try {
    // Insert new swatch at end of general swatch group.
    swatch = sAISwatchList->InsertNthSwatch(NULL, -1);
    // Get gradient name.
    ai::UnicodeString gradientName;
    result = sAIGradient->GetGradientName(gradient, gradientName);
    aisdk::check_ai_error(result);
    // Set swatch name.
    result = sAISwatchList->SetSwatchName(swatch, gradientName);
    aisdk::check_ai_error(result);
    // Create the swatch color using the gradient.
    AIColor swatchColor;
    swatchColor.kind = kGradient;
    swatchColor.c.b.gradient = gradient;
    swatchColor.c.b.gradientAngle = 30;
    swatchColor.c.b.gradientLength = 1;
    AIRealPoint origin = {0,0};
    swatchColor.c.b.gradientOrigin = origin;
    swatchColor.c.b.hiliteAngle = 0;
    swatchColor.c.b.hiliteLength = 0;
    SnippetRunnerLog::Instance()->WritePrintf("gradientAngle: %.1f",swatchColor.c.b.gradientAngle);
    SnippetRunnerLog::Instance()->WritePrintf("gradientLength: %.1f",swatchColor.c.b.gradientLength);
    SnippetRunnerLog::Instance()->WritePrintf("gradientOrigin (v / h): %.1f /  %.1f", swatchColor.c.b.gradientOrigin.v, swatchColor.c.b.gradientOrigin.h);
    SnippetRunnerLog::Instance()->WritePrintf("gradientAngle: %.1f",swatchColor.c.b.gradientAngle);
    SnippetRunnerLog::Instance()->WritePrintf("hiliteLength: %.1f",swatchColor.c.b.hiliteLength);
    // Set the swatch color.
    result = sAISwatchList->SetAIColor(swatch, &swatchColor);
    aisdk::check_ai_error(result);
    // making a 2nd swatch
    AISwatchRef swatch2;
    swatch2 = sAISwatchList->InsertNthSwatch(NULL, -1);
    result = sAISwatchList->SetSwatchName(swatch2, (ai::UnicodeString("Grad2")));
      // Create the swatch color using the gradient.
      AIColor swatchColor2;
      swatchColor2.kind = kGradient;
      swatchColor2.c.b.gradient = gradient;
      swatchColor2.c.b.gradientAngle = 60;
      swatchColor2.c.b.gradientLength = 1;
      swatchColor2.c.b.gradientOrigin = origin;
      swatchColor2.c.b.hiliteAngle = 0;
      swatchColor2.c.b.hiliteLength = 0;
    result = sAISwatchList->SetAIColor(swatch2, &swatchColor2);
    catch (ai::Error& ex) {
    result = ex;
    return result;
    The CS3/CS4 question is easy: for CS3 i use the CS3 SDK and for CS4 I#m working with the CS4 SDK :-)

  • Embed OVP in custom Web Dynpro

    Hi,
    I'm experiencing a similar problem as described [here|How to Embed FPM ABAP into a WebDynpro ABAP Application;, but that thread is closed (unanswered).
    I want to embed an (ESS) OVP component in my Z Web Dynpro. I defined a component usage for the OVP component, embedded its window in a view container. I also set the configuration 'XYZ' for the OVS component:
       1. using code (as in FPM developer's guide)
       2. by means of an application configuration for my Z Web Dynpro
    Both approaches to set the configuration (1 and 2) yield into the same result at runtime: see B
    A) When I run the OVP component directly (OVP app with config XYZ), it works (ESS data is shown in FPM_LIST_UIBB panes).
    B) When I run my Z Web Dynpro, only the header of the OVP component is shown (no FPM_LIST_UIBB panes with data).
    Following symptoms make me think my Z Web Dynpro set up is correct and it is a FPM/Web Dynpro bug:
       1. Something of OVP component is shown (page header), so it is initialized and runs
       2. When I open my app while my PERNR is locked, the OVP component shows it in a message (exactly as in case A): "Person is already being processed by user XYZ123")
    Did I forget something? Do you think it could be a bug?
    Regards
    Jeroen

    Hi Joachim,
    To embedd object selector in your custom UI you can use two interfaces which are implemented by this component. There are ObjectSelectorCI and CommandletCI.
    I recommend you to use the ObjectSelectorCI. There are no methods in this interface. So, you need to add this interface to used components from cafuiptn~common dc, the "CommonInterfaces" public part. The only configuration step which you need to perfrom is create component and setup object selector configuration name to context
    like this:
         String componentName = "com.sap.caf.ui.ptn.objectselector.ObjectSelector" ;
         String devComponentName = "sap.com/caf~UI~ptn~objectselector" ;
         IWDComponentUsage usage = wdThis.wdGetObjectSelectorComponentUsage();
              WDUtils.createComponent(usage, componentName, devComponentName, true) ;
    IExternalObjectSelectorCI interface =
    wdThis.wdGetObjectSelectorInterface()
    IWDNodeElement selectorConfig = interface.wdGetAPI().getContext().getRootNode().getCurrentElement();
    selectorConfig.setAttributeValue("configName", configName);
    And that's it. Actually, I never done it, if you'll get a problem please let me know.
    Best regards,
    Aliaksei

  • PLM_AUDITMONITOR New Button

    Hi There,
    I'd like to put a new button on the PLM_AUDITMONITOR detail screen, I've checked a number or BADis from the below list but none of them seem suitable, does anyone know if it is possible to add a new custom tab or button to an existing tab?
    /PLMPCV/QRM_LICENSE_AUDIT      BAdI: License Audit
    ARC_PLM_AUD_CHECK              Archiving Object PLM_AUD: Checks for Add-On-Sp
    ARC_PLM_AUD_WRITE              Archiving Object PLM_AUD: Archiving of Add-On-
    BADI_PLM_AUD_AUDIT_ROLES       Extensions to Roles in Investigations
    BADI_PLM_AUDIT_ACTION_TYPE     Definition of Action Types
    BADI_PLM_AUDIT_ALV             Changes to ALV Table in Audit Management
    BADI_PLM_AUDIT_DS              BAdI for Digital Signature
    BADI_PLM_AUDIT_LIITEM_SERVICE  Enhancements to List Items Services
    BADI_PLM_AUDIT_LIST_ITEM_TYPES Definition of List Item Types in Investigation
    BADI_PLM_AUDIT_OPTIONS
    BADI_PLM_AUDIT_STRUCTURE       Structural View for Investigations (Audit, FME
    BADI_PLM_AUDIT_TYPE            Context Menu Extension
    PLM_AUDIT_ACT_LINK             Audit: Linkage of Objects with the Corrective
    PLM_AUDIT_ALV_GRID             ALV Functions
    PLM_AUDIT_APPEARANCE           PLM Audit Management: Determine Display of Aud
    PLM_AUDIT_ATTRIBUTES           PLM Audit Management: Process Attributes of Au
    PLM_AUDIT_AUO_UPDATE           PLM Audit Management: Create, Change, and Dele
    PLM_AUDIT_AUP_UPDATE           PLM Audit Management: Create, Change, and Dele
    PLM_AUDIT_AUTH_CHECK           Activities in Audit Processing
    PLM_AUDIT_BATCH_JOBS           Scheduling of Background Jobs
    PLM_AUDIT_CALCULATE            Calculation/Valuation of an Audit
    PLM_AUDIT_COR_UPDATE           PLM Audit Management: Create, Change, and Dele
    PLM_AUDIT_GOS                  PLM Audit Management:Generic Object Services -
    PLM_AUDIT_HELP_LINKS           PLM Audit Management: Enhancement for Maint. o
    PLM_AUDIT_IDENTIFIER           Identification of Objects in Audit Management,
    PLM_AUDIT_LAST_GET             Flexibilization of "Display Last Associated Au
    PLM_AUDIT_OBJECT               PLM Audit Management: Audit Object Enhancement
    PLM_AUDIT_QUEST_CONT           Controlling Procedure for Audit Questions
    PLM_AUDIT_QUEST_COPY           Assignment of Question Lists to Audit
    PLM_AUDIT_QUN_UPDATE           PLM Audit Management:Create, Change, and Delet
    PLM_AUDIT_SAP_TXT              PLM_AUDIT_SAP_TXT   Detach Long Text Managemen
    PLM_AUDIT_SEARCHHELP           Enhancement for Search Helps
    PLM_AUDIT_SIGNATURE            Provide Signature for Audit
    PLM_AUDIT_STATUS               PLM Audit Management: Audit Component Status M
    PLM_AUDIT_TEXT_ID              PLM_AUDIT_TEXT_ID   Definition of Text Types P
    PLM_AUDIT_XML                  XML Generation

    Have you looked at how SnippetRunner in the SDK implements the control strip for it's panel? It appears to me all the widgets are just regular widgets put in a ErasablePrimaryResourcePanelWidget, where its binding is set to kBindBottom | kBindLeft | kBindRight,. And of course, you want to specify the ErasablePrimaryResourcePanelWidget is in the bottom of your panel.
    thanks!
    lee

  • How can I get the Attribute Value in the existing XML Elements-Reg.

    Dear All,<br /><br />  I have the InDesign Document with xml Based, now I want to get the XML Elements name and XML Attributes for each Elements, using SDK Concepts. <br /><br />Example:<br /><br /> <chapter>  chapter1 </chapter> id = "ch001"<br /> <sec> Section ....</sec> id ="se001"<br /> <para> para ....</para> id="pa001"<br /><br />How can I get the XMLElements & XML Attributes in the InDesign-XML Structure.<br /><br />Please  any one can suggest me....<br /><br />Thanks & Regards<br />T.R.Harihara SudhaN

    Dear Dirk
    Many Thanks for the Suggestions, Now I search and study the XML concepts. Meanwhile, I need your suggestions for further Development in SDK -XML concepts.
    I am using the SnippetRunner -SDK file, their given some XML based programmes. [Create XML Elements, Elements + Attributes, XML Comments] and etc...
    Hope U will help me to Develop the SDK- XML Concepts.
    Thanks & Regards
    T.R.Harihara SuduhaN

  • How to define script object for plug-in

    hi all,
    I'm new developer in InDesign Server.
    I'm having a look at the SnipRunner & BasicPersistInterface.
    In the file SnippetRunner.jsx:
    // get the SDKCodeSnippetRunner object
    var snippetRunner = app.sdkCodeSnippetRunnerObject;
    In the file BasisPersitInterface.jsx:
    app.basicpersistinterfacePreferences.bpiData = "default";
    if (app.basicpersistinterfacePreferences.bpiData != "default") {}
    really, I dont understand where & how to define the "sdkCodeSnippetRunnerObject" & "basicpersistinterfacePreferences" in the source code of plug-ins written in C/C++
    so anyone can help me on this?
    thanks

    This is a very basic question. F1 help on statement form will do.

  • How to Create a text frame?

    Hai
    i'm senthil....
    i'm just now started working with Adobe Indesign plugin's..
    Can anyone tell me how to create a text frame...
    wat r the steps for creating a text frame?
    what are the Interface pointers used for creating a text frame...
    plzz reply me who knows...
    bye.

    See SDKLayoutHelper::CreateTextFrame.
    You can also look at SnpCreateFrame::CreateTextFrame in SnippetRunner.
    Regards,
    Narayan

  • How to convert color of bitmap image?

    I am programming with Acrobat 7.
    I'd like to change color of all object to CMYK color or gray.
    In case of plain object like path or font,
    I need to seek CMYK color from the object's RGB color.
    and I change the property of the object color space and value with it.
    but in case of bitmap image, i don't know how to at all.
    it has numerous colors.
    I hope your advice.

    Thank you both of you.
    by the way, Leonard, Could you tell me that APIs more detailly?
    I have look into the document for long time. it is still hard to find proper API.
    I have to say this again. I am trying to find APIs based on version 7.
    I am using custom function ACEconvertColorProfile which is placed in snippetrunner. it consists of these APIS ACMakeColorTransform, ACApplyTransform, and so on.
    but I can't find the way to convert bitmaps once and for all.
    I hope you give more hint.
    Thanks again.

  • Undeclared Identifier Error for some 'PDFEdit_Layer' Methods

    Hi,
    I am getting the errors for the some Methods in PDFEdit_Layer ,
    1. Code -> PDEText pdeText = PDETextCreate();
    Error 3 error C2065: 'PDETextCreateSELPROTO' : undeclared identifier
    2. Code -> sysFont = PDFindSysFont(&pdeFontAttrs,sizeof(PDEFontAttrs), 0);
    Error 5 error C2065: 'PDFindSysFontSELPROTO' : undeclared identifier
    3. Code -> pdeFont = PDEFontCreateFromSysFont(sysFont, kPDEFontDoNotEmbed);
    Error 9 error C2065: 'PDEFontCreateFromSysFontSELPROTO' : undeclared identifier
    4. Code -> pdeColorSpace = PDEColorSpaceCreateFromName(ASAtomFromString("DeviceGray"));
    Error 11 error C2065: 'PDEColorSpaceCreateFromNameSELPROTO' : undeclared identifier
    5. Code -> PDETextAdd (pdeText, kPDETextRun, 0,(ASUns8 *)Title, strlen(Title), pdeFont, &gState,sizeof(gState), NULL, 0, &textMatrix, NULL);
    Error 15 error C2065: 'PDETextAddSELPROTO' : undeclared identifier
    Irrespective of including below header files i am the above Errors.
    #include "CoreExpT.h"
    #include "PDSExpT.h"
    #include "PEExpT.h"
    #include "PERProcs.h"
    #include "CorCalls.h"
    #include "PDCalls.h"
    #include "PERCalls.h"
    #include "PEWCalls.h"
    #include "PDSExpT.h"
    #include "PSFCalls.h"
    #include "PDSysFontExpT.h"
    I tried including the above headers then also i am getting the errors as shown above. Please let me know why is this happening, am i missing something ??
    Please someone help me, Thanks in advance.
    Regards,
    Chetan.

    This is for Plugin in Acrobat, not for Reader.
    Yes, i have set all proper defines for the project.
    #pragma 
    region [ Headers ]
    #include 
    <string>
    // Acrobat Headers.
    #ifndef 
    MAC_PLATFORM
    #include 
    "PIHeaders.h"
    #endif
    #pragma 
    endregion
    "PIHeaders.h" is having all the required header files for the Methods which i have specified.
    Yes.All this method i find under Samples\SnippetRunner project, i am able to build this project successfully.
    Please let me know what needs to be done for successfull building the solution.Thanks in advance.
    Regards,
    Chetan.

  • Where can I get the acrobat plugins samples?

    I have acrobat sdk 9 and some samples inside folder pluginsupport/samples
    However, when I read live.doc (http://support.adobe.com/devsup/devsup.nsf/docs/51634.htm),
    there are some other sample of SDK: UIBasic, AddImage, ...  (I need to operate with images, pdf and dialog)
    Could you please tell me where I can get all sdk samples?
    Thanks

    All samples are in the SDK.
    Be sure to look at the MYRIAD of samples that are part of SnippetRunner (see PluginSupport\Samples\SnippetRunner) which is all about helping you learn by just looking at a snippet of code.

  • Create new tag for selected text using API?

    Hello,
    I want to add new tag for the selected text just like 'Create Tag from selection' .
    is it possible to create tag for selected text using acrobat api?
         please,help me.

    As per sample of snippetRunner for adding tag for selected text.
    I tried below code
    PDPage pg;
    AVDoc avDoc = AVAppGetActiveDoc();
    PDDoc pd = AVDocGetPDDoc(avDoc);
        pg = PDDocAcquirePage(pd, 0);
    ASAtom theSelectionType = AVDocGetSelectionType(avDoc);
    if (theSelectionType == ASAtomFromString("Text")){
        PDTextSelect ts = static_cast<PDTextSelect>(AVDocGetSelection(avDoc));
        PDSTreeRoot pdsTreeRoot;
        CosObj pageObj = PDPageGetCosObj (pg);
        PDSElement newElem;
        PDSElementCreate(pd, &newElem);
        char buf1[64];
        strcpy (buf1, "A new structure element");
        // set its type as "Document" standard type
        PDSElementSetType(newElem, ASAtomFromString ("Document"));
        // set its title
        PDSElementSetTitle(newElem, reinterpret_cast<const ASUns8*> (buf1), strlen(buf1));
        PDSTreeRootInsertKid (pdsTreeRoot, aElem, kPDSAfterLast);
        PDSElementInsertMCAsKid // here something i have to add
    If i have PDTextSelect how i can add tag for selected text.like user add tag using "CreateTagForSelectedText" option.
    please,help me.
    thanks.

  • Selected text and coordinates

    Hi,
    I would know if with Acrobat sdk is possible to extract text from a user's selection on pdf so as copy this text in a editbox, with the coordinates of this selection too.
    I'm using delphi xe2 without update 3.
    Thanks.

    I believe there is some sample code in SnippetRunner for doing this sort of thing.   But you will need to read the SDK documentation and get an understanding of the various parts of the SDK…

  • Inconsistent behavior when placing a file in a transformed frame

    I've been playing around with the sample plug-in SnippetRunner's SnpPlaceFile::PlaceViaHelper() method to allow it to place a file inside a frame.<br /><br />If a frame is selected, I compute boundsInParentCoords as follows:<br />  InterfacePtr<IGeometry> itemGeometry(selectedItemRef, UseDefaultIID());<br />  boundsInParentCoords = itemGeometry->GetPathBoundingBox();<br />and in the call to layoutHelper.PlaceFileInFrame(), I use the frame's UIDRef (selectedItemRef) as the parentUIDRef but I get the database for the importFileCmdData->Set() method using the active layer UIDRef.<br /><br />This works fine, unless the frame has been transformed before I do the place, in which case it works in some cases and not in others. Specifically, it works for Scale, Rotate, Horizontal Shear, and Horizontal Flip, but it doesn't work (i.e., the image is placed at the wrong location) for Translate, Vertical Shear, and Vertical Flip.<br /><br />Can anyone explain why this works in some cases and not in others? Is there something else I'm suposed to be doing? Or maybe I'm going about this all wrong. In either case, I need help. Thanks.<br /><br />Bob

    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    public class SetAlwaysOnTop {
        private JFrame frame;
        public SetAlwaysOnTop () {
            frame = new JFrame("Set always on top frame");
            JPanel panel = new JPanel(new BorderLayout());
            panel.add(new JLabel ("Top Label"),BorderLayout.NORTH);
            JButton dialogButton = new JButton("Show Dialog");
            dialogButton.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    createDialog();
            panel.add(dialogButton,BorderLayout.CENTER);
            frame.setContentPane(panel);
            frame.pack();
            frame.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
            frame.setVisible(true);
        private void createDialog() {
            final JDialog testDialog = new JDialog(frame,"Modal Frame",true);
            JPanel closePanel = new JPanel(new BorderLayout());
            JButton close = new JButton("Close");
            close.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    testDialog.dispose();
            testDialog.setLocation(50,50);
            closePanel.add(close);
            testDialog.setAlwaysOnTop(true);
            testDialog.setContentPane(closePanel);
            testDialog.pack();
            testDialog.setVisible(true);
        public static void main (String[] args) {
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    SetAlwaysOnTop top = new SetAlwaysOnTop();
    }

Maybe you are looking for

  • Is it possible to save the data in the trend graphs?

     I am making a HMI and want to user to be able to study earlier graphs. It would be best if this could be saved in a report or something.... I am using labview 8.0 and the DSC module. I understand that it is possible to save data in the citadel datab

  • IPhoto sharing via messages not working

    I always use to be able to share my photos in iPhoto by clicking share at the bottom to then send via messages, however this option is no longer available. Does anyone know why?

  • How do i import excel data base into pdf form drop down field

    Hi, I have a table of about 2500 rows and three columns that i would like to import into a drop down window on a PDF form to be self populated when item selected rather than entering the data. How can this be done? Thanks! Richard

  • Concerned about bandwidth usage with this program.

    I live in a remote area which has few internet options. My internet plan is not unlimited. I pay high rates for anything I use over a specified amount. I can't allow any programs to regularly upload or download data unregulated by me. Is this situati

  • New subcription to ExportPDF - "Error occured while signing in" message???

    Just pruchased ExportPDF subscription and cannot sign in - Tools > Convert to word > bypass to Sign in in uppoer right corner > enter email > enter password > death circle > "Error occured while signing in" message - continuous loop.................