Jump to content

insert in a fusion pro template a page of a PDf


Recommended Posts

Ah wonderfull!!

But can i select a page of pdf by a field of file excel?

If you mean that you have a data field which specifies the page number, or the PDF file name, you can do something like this:

var r = CreateResource(Field("PDFName"));
r.pagenumber = Field("PageNumber");
return r;

I'm just guessing at your field names, of course. I could provide more specific suggestions with more information, such as the collected job, or at least the data file. (Note that whether the data file is Excel or some other format makes no difference.)

And have i create a new rule? In ghrapics frame What should I write?

Thanks!!

Yes, you would create a new rule of type Graphic / JavaScript. Then you would select graphic frame, and in the Frame Properties palette, select the rule's name in the [Field or Rule] drop-down.

Link to comment
Share on other sites

Hi, it's work good!!

And if would i change proportion in a rule?

It's possible??

Thanks!

If it's being placed into a graphic frame, then you can adjust the size of the frame itself, and you can adjust the scaling and cropping of the graphic within the frame by using the controls on the Frame Properties palette.

 

If it's an inline graphic, in a text frame, then you need to output a <graphic> tag from a text rule, with either (or both) the width or height attributes set (in hundredths of points, 7200 per inch), something like this:

return '<graphic file="' + Field("PDFName") + '" pagenumber="' +Field("PageNumber") + '" width=7200 height=7200>';

For more information, please refer to the section "Inline Graphics" in the FusionPro User Guide, and the section "Graphic Tag Inside Story Tag / Inline Graphics" in the FusionPro Tags Reference.

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...