Jump to content

randy.willeyefi.com

Registered Users - Approved
  • Posts

    32
  • Joined

Posts posted by randy.willeyefi.com

  1. I have clients that use the Change Phone Format Rule template constantly. However, many of them need to convert the template to JavaScript and edit the base rule because two of the formatting options do not include a space between the area code and the phone number. Is there a way to modify the base rule in the template itself to include the space in these formats so that the JavaScript doesn't need to be updated every time the template is used?

    PhoneFormat.png.265d8d0fc1ea8e9f289ff34587b24ce4.png

  2. I did that so my rule now looks like this:

     

    var returnString = " ";

    var input = FusionPro.Composition.inputFileName;

    var ex = new ExternalDataFileEx(input, ',');

    var records = ex.recordCount;

     

    for (var i = 1; i <= records; i++)

    {

    beerList = new FPRepeatableComponent("Craft");

    beerList.AddTextVar(Field("Beer"), Field("Style"));

     

    returnString += beerList;

    }

     

    return returnString;

     

    ----------------

     

    However, now it's repeating the same record multiple times on the page and created separate pages for each record. What I am looking to get is more than one record on the same page.

     

    Thanks.

  3. I am attempting to create a rule that will cycle through a data list and place the defined fields into a repeatable component template and have each record display one under the next. For some reason my rule is only returning the first record. My rule is below. Any suggestions?

     

    var returnString = " ";

    var input = FusionPro.Composition.inputFileName;

    var ex = new ExternalDataFileEx(input, ',');

    var records = ex.recordCount;

     

    for (var i = 1; i <= records; i++)

    {

    beerList = new FPRepeatableComponent("Craft");

    beerList.AddTextVar(Field("Beer"), Field("Style"));

     

    returnString += beerList;

     

    return returnString;

    }

  4. I has been months now since this issue was first posted and the response back was that it was still being tested. How long will it take for PTI to test this and get it working with OS X Mavericks. I am a third party trainer of the software and don't always have the luxury of working with a client who has not already upgraded to Mavericks and we need to be able to support these clients. Please provide an update on it's support.

     

    Thanks.

  5. I have the font family FrutigerLtStd-Cn installed on my system. I am able to access the font Frutiger LT Std 77 Black Cn from the font family while working in Adobe InDesign. However, that particular font in the font family is not available in FusionPro. I have attempted to Load All Fonts several times and it still isn't available. What would cause just that one font in the family not to load?
×
×
  • Create New...