Jump to content

AngelBenitez

Members
  • Posts

    46
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

AngelBenitez's Achievements

Contributor

Contributor (5/14)

  • Dedicated Rare
  • Collaborator Rare
  • One Month Later
  • First Post Rare
  • Conversation Starter Rare

Recent Badges

0

Reputation

  1. Hello, Is there any way to include the output of a rule in a document's slug? I want my printer to know when something is meant to be printed based on the rules I've written to out a date.
  2. Hello @Dan Korn, Thank you for your prompt response. I have attached a file that provides a mockup of my desired outcome. Essentially, I am looking to have crop marks for both the flyer and postcard that correspond to their respective sheets. I am hoping to achieve the same result as if I were using two separate impositions. If this cannot be accomplished, please advise on the best approach to achieve a result that closely resembles my desired outcome. Imposition Example.pdf
  3. Hello, Could someone please assist me with FusionPro Imposer? I have a PDF file that includes two pages, but they each have different sizes. One is a standard 8.5 x 11 flyer, and the second page is an 8.5 x 5.5 postcard. I want the imposition to include crop marks for each designated page. Can anyone assist me with how I would go about this?
  4. Hello, Does anyone have an update on how I would go about achieving the above? Your guidance and insights would be greatly appreciated.
  5. Hello, Does anyone have an update on how I would go about achieving the above? Your guidance and insights would be greatly appreciated.
  6. Hello, I am reaching out regarding a request related to MarcomCentral. Could someone please assist me in creating a rule that accomplishes the following: Since MarcomCentral doesn't offer a product in which a user can choose to directly download a static flyer or a versioned flyer within that one product, I am trying to create something that comes close to it. I would like to create a versioned product in which a user will have the option to personalize it only if they want to. If a user chooses not to personalize, they can simply download the static version of the flyer, as it is built into the template. However, if they want to customize the flyer, they would then select "Yes," and then they would get the option to fill in all the necessary fields. Example: If the user chooses "No," the system will automatically output a static version of a flyer, which is built into the template. They can then proceed to download it without any further modifications. If the user chooses "Yes," they are directed to a customization interface.
  7. Hello, I am reaching out regarding a request related to MarcomCentral. Could someone please assist me in creating a rule that accomplishes the following: I am working on creating a booklet and want to provide my users with the option to choose from five different covers. What rule would enable this choice for my users? Are there any additional steps required to achieve this? I assume the PDF cover pages would need to be stored within my library. Additionally, within the booklet, there are two pages that can be inserted immediately after the cover. However, users have the flexibility to exclude them if they prefer. I'd like the page numbering to begin right after the cover, so if the user decides to include the first two additional pages, the numbering will start from there. If they choose not to include those two pages, the numbering will start as if they were never selected. Examples: The booklet has the following covers: Landscape Photography Cover Portrait Photography Cover Wildlife Photography Cover Street Photography Cover Abstract Photography Cover User A chooses the "Landscape Photography Cover" and includes the two extra pages. In this case, the booklet's page numbering would start right after the chosen cover and include the two additional pages. So, it would look like this: Landscape Photography Cover Additional Page 1 (Page 1) Additional Page 2 (Page 2) Content of the booklet starts here... (Page 3) User B, on the other hand, selects the "Wildlife Photography Cover" but decides not to include the extra pages. In this case, the numbering would start directly after the chosen cover without counting the additional pages: Wildlife Photography Cover Content of the booklet starts here... (Page 1)
  8. Hello @Dan Korn I've always been curious about overflow pages and how to implement them. Could you please direct me to a forum or resource that guides me through the process? Thank you!
  9. Hello, I am reaching out regarding a request related to MarcomCentral. Could someone please assist me in creating a rule that accomplishes the following: I want to provide users with the option to preview the result without bleed or crop marks, while still generating an output file that includes the bleeds and crop marks for my use.
  10. Hello, I am reaching out with a request related to MarcomCentral. I need assistance in creating a rule to achieve the following: I want to provide my users with the option to preview a product version, but on my end, I need to view a different version based on their responses to certain questions. For instance, the user should see the business card they created, while I should see the same business card with an additional page meant exclusively for my eyes. Your help in setting up this rule would be greatly appreciated. Thank you!
  11. Hello, I need to create a graphic rule that accomplishes the following. *Note: This is for a rule using MarcomCentral: I have a set of users who belong to a specific group, and they have the option to include a special image on their business cards. These users have been identified through TPAs. I want to provide my users with the choice to decide whether they want to include the image on their cards or not. However, it's important to note that not all of my users are members of this particular group. Therefore, if a user who isn't part of the group decides to include the image on their card, the rule should take precedence over their selection of "yes." Example Scenarios: Scenario 1 (Manager): User: John (Manager) Choice: "Yes, I want the logo." Result: John's business card includes the special logo. Scenario 2 (Manager): User: Sarah (Manager) Choice: "No, I don't want the logo." Result: Sarah's business card does not include the special logo. Scenario 3 (Regular Employee): User: Mike (Regular Employee) Choice: Mike has no choice in this matter since he's not a Manager. The rule ensures that the logo is not added to his business card, even if he somehow selects "Yes." This rule ensures that only Managers have the option to include the special image on their business cards, while Regular Employees are excluded from this choice.
  12. Hello @Dan Korn, I was able to figure it out. Thank you so much for your help on this, I really appreciate it.
  13. Hello @Dan Korn, Thank you for your assistance. I have a question regarding the XDF file. If I intend to use this file across multiple products, is it possible for me to update it once and have the changes propagate to all products? This file contains constantly changing information, so I'm wondering if I need to update it individually for each product or if there's a way to update it universally for all products.
  14. Hello, I am working on creating an XDF rule in MarcomCentral to achieve the following: I would like to populate fields in a flyer from an Excel file (.xlsx) based on a user's selection from a dropdown menu. For instance: Users can choose between two managers, John or David. If a user selects 'John,' all of John's information should populate the flyer. If a user selects 'David,' all of David's information should populate the flyer. var XDF = new ExternalDataFileEx("ManagerInformation.xlsx","Excel"); var Manager = ""; var PhoneNumber = ""; var MobileNumber = ""; var EmailAddress = ""; var finaladdress = ""; var i = DeptXDF.FindRecord("Manager", Field("Text_Manager")); if (i>0 && Field("Text_Manager") != "") { Manager = DeptXDF.GetFieldValue(i, "Manager"); PhoneNumber = DeptXDF.GetFieldValue(i, "PhoneNumber"); EmailAddress = DeptXDF.GetFieldValue(i, "EmailAddress"); finaladdress = AppendText(finaladdress, "", Manager); finaladdress = AppendText(finaladdress, "<br>", PhoneNumber); finaladdress = AppendText(finaladdress, "<br>", EmailAddress); } return finaladdress; The reason that I want to use an XDF is because this information is constantly changing If anyone knows if this rule is correct, and the additonal steps I would need to do in order to link the XDF file within MarcomCentral, I would greatly appreciate it.
×
×
  • Create New...