Jump to content

FreightTrain

Administrators
  • Posts

    327
  • Joined

Posts posted by FreightTrain

  1. kkonovalov,

    I'm pretty sure MCC security will not allow you to do this on your own. However, it can be done using a Single Sign On (SSO) integration. There are 2 types of SSO:

    1) An HTTPS redirect

    2) SSO with Web Services

     

    Either one incurs a setup fee. However the Web Services there is also a monthly fee. Please touch base with your BRM for more information.

  2. Vimal

    Create 2 Graphic rules, one for the L graphic box and 1 for the R graphic box:

    L graphic box Rule

    if (Field("align") == "L")

    return Field(image");

    else

    return "";

    R graphic box Rule

    if (Field("align") == "R")

    return Field(image");

    else

    return "";

    Insert each rule into its respective frame and that should do it.
  3. george,

    DSF can use the Define HTML Form option on the FusionPro menu. This allows you to create "Single-line" string entry fields or "Multi-line" text areas for any of the text fields in your data source. In both instances you can restrict the number of characters allowed. You may also create a "Pick List" with varying settings. FusionPro generates an HTML preview for testing, although it does not generate a proof in the preview.

     

    Once saved and collected, FusionPro generates an XML file that you upload into DSF with the other FusionPro files, which allows for the form interaction (as previewed) to generate a proof. All that being said, I have never used DSF, I have only had the process demoed and it seems easy enough. If you have further questions about the process inside of DSF, I would check with their user forum or with EFI directly.

     

    Hope this helps

  4. Drew,

    There is no way for FusionPro to decipher what is a title and what is an acronym. If you can split these into 2 separate fields; one for "Title", another for the acronym "credentials". This will allow you to apply 2 different case rules to each field.

  5. Jon,

    This is not something that we get a lot of requests for, but we can certainly add an enhancement request. Currently the only way you can limit Users or Groups ordering capabilities is to use User Budgets. Once the $ limit is reached they would not be able to checkout with this as their payment type.

  6. The link below has an example job. Here is the JS rule for the Address Info:

    //XDF is defined is in OnJobStart

    if (FusionPro.inValidation) //this tells the script to run OnJobStart

    Rule("OnJobStart");

     

     

    Address1 = ""; //initializing the variables we will use below

    Address2 = "";

    City = "";

    State = "";

    Zip = "";

     

     

     

    for (i = 1; i < XDF.recordCount+1; i++)

    //i is established as a numeric value that we will cycle through until it reaches the end record

    //header is zero, so look at row 1 (i=1), look at rows for all records plus 1 because we started at 1, increment by 1 (i++)

     

    {

    T2Toffice = XDF.GetFieldValue(i, 0); //where in XDF T2Toffice is the first column in the data

    {

    if (Field("Office Location") == T2Toffice)

    {

    Address1 = XDF.GetFieldValue(i, 1);

    Address2 = XDF.GetFieldValue(i, 2);

    City = XDF.GetFieldValue(i, 3);

    State = XDF.GetFieldValue(i, 4);

    Zip = XDF.GetFieldValue(i, 5);

    }

    }

    }

     

    if (Address2 != "")

    {

    return Address1+"<p>"+Address2+"<p>"+City+", "+State+" "+Zip;

    }

     

    else if (Address2 == "")

    {

    return Address1+"<p>"+City+", "+State+" "+Zip;

    }

    XDF Lookup Example
  7. Marcus,

    I believe this is possible, but you might inquire on the FusionPro forum. FusionPro can definitely figure out the page count, where I'm not sure is converting that to a string that could be used as a value for MCC. I know for sure this value could appear on the output (in the bleed perhaps), that way you will see the page count and it will be cut off.

     

    Not knowing exactly what you want to do, I can only guess that you need this info to price the item appropriately. If so, we have a feature that can be activated call "Page Count Pricing". This will validate the number of pages, price it accordingly, however I'm not sure if the page count value can be added as part of the SKU or Description. Check with your BRM for more info.

×
×
  • Create New...