Expand my Community achievements bar.

can I add a blank page to the result pdf using ddx ?

Avatar

Level 2

Hi,

     can I add a blank page at the last of result pdf using ddx language?

    I know how to add page to make a result document odd or even by page number.

  

   But how can i add page at the last?

   Thanking You.

   Barun Barik.

3 Replies

Avatar

Level 2

Hi,

  It seems you didn't get my point....let me elaborate the scenario ...

  I will create ddx xml dynamically...and it is not possible to know total no of page it contain it may be in even no or may be in odd no ...I want to add a blank page at the end at every scenareio i.e it do not depend on whether result document is odd or even.

I hope you can now have a better understanding of my scenario ..

Avatar

Level 8

If you ALWAYS want a blank page, set the forceEven attribute to false.

<DDX xmlns="http://ns.adobe.com/DDX/1.0/">

    <PDF result="outDoc">
          <PDF source="doc1"/>
          <BlankPage forceEven="false"/>   
    </PDF>
</DDX>