Jump to content

Rotate Pg2 for Preview only


jwhittaker

Recommended Posts

I have a 2 page postcard template where the front is portrait(page1) and the other side(mailing panel)page2 is landscape. There is variable on both sides and the customer was to view both sides right reading.

(Page 1 vertical and page 2 rotated 90 CCW.)

I want to create the preview like this but the print pdf without the rotate.

I think I need an OnRecordStart using this code:

 

onlinePreviewVal = FusionPro.Composition.JobOptions.isOnlinePreview;

desktopPreviewVal = FusionPro.Composition.isPreview;

 

if (onlinePreviewVal == "Yes" || desktopPreviewVal == true)

code to rotate page 2 only

else

don't rotate

Link to comment
Share on other sites

I don't believe that FP can rotate the pages of your PDF template - only the FP frames, or resources.

 

I would set up a third (rotated, right-reading) page, set both back pages to unused, and turn on the appropriate page through the OnRecordStart callback:

FusionPro.Composition.SetBodyPageUsage("Rotated-back", IsPreview());
FusionPro.Composition.SetBodyPageUsage("NonRotated-back", !IsPreview());

Link to comment
Share on other sites

Thanks Step

That is what I am doing but there are about 15 text boxes and 5 image boxes that have fit exactly in the right place because of the art etc.

I just takes a long time and I am having to make minute changes on both pages. This customer is making a lot of changes on that side of the template every day. I missed one of the type corrections on the print pdf. They have circles inside circles and text very close to art elements and if they are off at all you see it. I was just hoping I could use the same page to proof and to print from instead of having 2 different ones and hoping they are exactly the same.

Link to comment
Share on other sites

It would be ideal if you could set the back page content up as a template component and rotate it on either page depending on the value of IsPreview but I don't think that "rotate" is a property of the "template" object.

 

Unfortunately, I can't really think of an easy solution for that problem. But luckily for you, this forum is full of users that are much smarter than I am.

Link to comment
Share on other sites

It would be ideal if you could set the back page content up as a template component and rotate it on either page depending on the value of IsPreview but I don't think that "rotate" is a property of the "template" object.

 

Unfortunately, I can't really think of an easy solution for that problem. But luckily for you, this forum is full of users that are much smarter than I am.

I think you should be able to call out the repeatable component (template) in a rotated text frame. But, there are some issues with runaround and such when doing this, so it might not work depending on the complexity of the page contents.

 

But I guess I'm wondering why you need to do this in the first place. I would think that almost any printing device or RIP would figure out that both the front and back of the postcard need to be printed at the same orientation. Or is this an imposition issue?

Edited by Dan Korn
added question about imposition
Link to comment
Share on other sites

Thanks for all the responses. While still in the designing stages with this product, having to make numerous changes everyday, the final ending place for this template will be on a Marcom store. While this is going through the proofing stages with this template I am having to compose a set of sample data 3-4 times a day and then rotate every other page so our customer can read all the text right reading. This is the way they want the store to preview as well. I'll have to look into repeatable components like Dan suggested, but haven't figured out how repeatable components work yet. I'm still rookie when it comes to javascript.
Link to comment
Share on other sites

While still in the designing stages with this product, having to make numerous changes everyday, the final ending place for this template will be on a Marcom store. While this is going through the proofing stages with this template I am having to compose a set of sample data 3-4 times a day and then rotate every other page so our customer can read all the text right reading. This is the way they want the store to preview as well.

That's fine, but how is the item ultimately going to be printed? I would dummy up some output with the second page landscape (for reading), and then send it to the printer/RIP, and see what happens. If it prints correctly, then you don't need to do anything else.

Link to comment
Share on other sites

Dan

For the final printing both pages need to be vertical and isn't the problem. The problem is showing only the rotated page for the customer to see the variable right reading or landscape. I don't like proofing from one page and printing from another especially with a complex setup. The customer oks something that never actually prints and what prints isn't ever seen or ok'd. This is the structure for my template right now.

page 1 vertical views and prints vertical

page 2 vertical (this is for printing only doesn't show in preview)

page 3 landscape (this is only used for the preview and is shut off for final composition)

I'll attach a jpg of the template layout

Thanks Dan

templatelayout.thumb.jpg.0ac2203a7b2c013ae0a6bb59e44e4152.jpg

Link to comment
Share on other sites

For the final printing both pages need to be vertical and isn't the problem.

I don't think that's true, and I think you're missing my point. For the final printing, you should be able to provide one page portrait and the other page landscape, and most printers out there should be able to figure it out. I would at least try that before doing something complicated with extra pages.

The problem is showing only the rotated page for the customer to see the variable right reading or landscape. I don't like proofing from one page and printing from another especially with a complex setup. The customer oks something that never actually prints and what prints isn't ever seen or ok'd.

Right, so that's why I'm suggesting that not only shouldn't you do that, but that you probably don't need to.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...