Jump to content

randomhello

Registered Users - Approved
  • Posts

    5
  • Joined

Converted

  • FusionPro Products
    No

randomhello's Achievements

Rookie

Rookie (2/14)

  • First Post Rare
  • Week One Done
  • One Month Later
  • One Year In
  • Conversation Starter Rare

Recent Badges

10

Reputation

  1. Version 2017.012.20095 Acrobat Pro DC 2017 Menu bar option for FusionPro is accessible... But go to TOOLS > no longer can see PTI/FusionPro option so as to ADD the iconic tools to the right bar. Was working prior to latest DC update. Uninstalled ALL (including DC) and reinstalled ALL, still no good. Adobe is blaming the Plug-ins, which I'm having a hard time believing since this is also affecting PitStop Pro 13.2 and Quite Imposing Plus 4. Perhaps a registry tweak or .aaui file is needed? Any thoughts? THANKS!
  2. I am using a hotfolder based workflow where when I Compose, the output files are being saved to my printers hotfolder (as PDF). Is there anyway to suppress the .msg & .cfg file or otherwise save them to a different location than the output files? My printer is seeing them as print jobs and running them in line with the output files.
  3. I need the records duplicated across the sheet instead of a cut/stack setup because of the variable number of times each 'ticket' will be printed. it makes more sense to have a 3-up sheet of the same info than to have a stack imposition. the answer to my problem was to divide the repeat count by the imposition count and round up to the nearest full integer: var COUNT = Field("SHIPCOUNT")/3; var ROUNDUP = Math.ceil(COUNT) FusionPro.Composition.repeatRecordCount=ROUNDUP if (FusionPro.Composition.repeatRecordNumber == 1) FusionPro.Composition.StartNewStack();
  4. Yes, startnewstack is intended, but the issue I'm having is with the mix of impo + repeat. I am getting 3x as many records as I want. So for instance, if rec1 repeats 100x, the 3x impo makes is actually result in 300x. And this makes sense... the impo is not aware of the repeatrecord and vice versa, so they're simply performing their respective task independent of each other. I think I may have answered my own question however. Based on some other threads it seems like I'll probably have to use some math to divide my repeat count by the n-up value, so 100/3 for instance. thanks
  5. using OnRecordStart: FusionPro.Composition.repeatRecordCount=Field("REPEATCOUNT") where REPEATCOUNT record 1 = 100, record 2 = 32, record 3 = 45; etc. But also using 3-up imposition (8.5x3.5" on Letter) with a Vertical 3 and Duplicate turned On. End result is that I'm getting triplicate of what I need of course. I need 100 versions of rec 1, 32 of rec 2, 45 of rec 3, but I want to print 3-up. Based on other threads I've read, seems like you cant co-mingle RepeatRecordCount and Imposition successfully. Main idea is that the count is variable, so really best to do this with a rule as opposed to setting the Stack amount in Imposer everytime. Any suggestions would be greatly appreciated. thanks!
×
×
  • Create New...