Hello Jordan,
There is the CurrentRecordNumber() function.
If you have a versioned item (single record of data) like an event ticket and
the only variable data on it is the sequential number, here is the INCREDIBLY
EASY procedure:
1. Open your PDF (this example will use an existing event ticket that you want
to number)
2. Go to FusionPro > Data Definition > Wizard...
3. Select "Specify data source definition" and click Next
4. Select "None" and click Next
5. Click Finish
6. Go to FusionPro > Edit Rules... and create a new text rule, using the Empty
Rule option
7. Write this rule (I'll call it NumberSequence):
return CurrentRecordNumber();
8. Draw a text frame where you want the number to appear and insert your rule.
9. When you compose, go to the Input Tab of the Composition Settings dialog.
10. Under the Record Range section, enter the starting number for your sequence
and the ending number for your sequence. For example, if you want to create a
sequence from 1000-9999, you would enter the starting number as 1000 and the
ending number as 9999.
Go ahead and compose, and you will get your sequence.
HOWEVER, since you are using this simple JS rule to provide a sequence, why not
add some other "cool" stuff to it:
You can format it so that there are always four digits:
return FormatNumber("0000",CurrentRecordNumber());
You can add the event date (imagine November 16, 2006) to the front:
return '1111606' + FormatNumber("0000",CurrentRecordNumber());
Then, why not also add a barcode as well for added security (using the 128
barcode for this sample) by creating a second rule that applies the barcode
function to the first rule:
return Make128Barcode(Rule("NumberSequence"));
HTH
regards,
Alex
-----Original Message-----
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Monday, September 15, 2008 10:56 AM
To: FusionPro Users Forum
Subject: [fusionpro] Numbering a Job still
I am trying to number a job but i don't have a database file because there
are no names or anything on it. How can i get a number in the corner of
each page without a database. I tryed to use CurrentRecordNumber() but
there is only one page and i just need to print 500 copies with an
ascending number 1 through 500. Help
Thanks
Jordan Hickok
Auburn Printers
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
FusionPro 5.0 Now Available!
Variable text on a curve and soft drop-shadows for variable text
LIMITED TIME upgrade offer of $299 per license for current customers:
http://fusionpro.printable.com/store/upgrade
New licenses available for $599 each at:
http://fusionpro.printable.com/store/
All FusionPro 5.0 customers to receive FusionPro 5.1 with
Adobe Acrobat 8 and InDesign CS3 support when released for FREE.
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
--
Users of FusionPro Desktop have unlimited free email support. Contact Printable
Support at [EMAIL PROTECTED]
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm
--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--
--
Note: All e-mail sent to or from this address will be received or otherwise
recorded by the e-mail recipients of this forum. It is subject to archival,
monitoring or review by, and/or disclosure to someone other than the recipient.
Our privacy policy is posted on www.printplanet.com
--
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
FusionPro 5.0 Now Available!
Variable text on a curve and soft drop-shadows for variable text
LIMITED TIME upgrade offer of $299 per license for current customers:
http://fusionpro.printable.com/store/upgrade
New licenses available for $599 each at:
http://fusionpro.printable.com/store/
All FusionPro 5.0 customers to receive FusionPro 5.1 with
Adobe Acrobat 8 and InDesign CS3 support when released for FREE.
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-
--
Users of FusionPro Desktop have unlimited free email support. Contact Printable
Support at [EMAIL PROTECTED]
--
View FusionPro Knowledge Base, FusionPro Samples at
www.printable.com/vdp/desktop.htm
--
You are currently subscribed to fusionpro as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
--
--
Note: All e-mail sent to or from this address will be received or otherwise
recorded by the e-mail recipients of this forum. It is subject to archival,
monitoring or review by, and/or disclosure to someone other than the recipient.
Our privacy policy is posted on www.printplanet.com
--