WhatTheyThink Acquires PrepressForums.com, Releases New Version of PrintPlanet

This site is a static archive, you are free to search, and view but no new posts or registrations are allowed.

Please visit printplanet.com for the new discussion groups

Prepress Forums  

Go Back   Prepress Forums > General > Tips/Tricks/Knowledgebase
Googlemap ME Members List Calendar Search Today's Posts Mark Forums Read

» Site Navigation
 > FAQ
» Skyscraper

Reply
 
LinkBack Thread Tools Display Modes
  #11 (permalink)  
Old 12-05-2005, 06:00 PM
neckbone's Avatar
neckbone neckbone is offline
Member
 
Join Date: Sep 2005
Location: Milwaukee, WI USA
Posts: 53
Well, if InPosition has cut stacks available as an imposition type, you should be able to just create your ticket 1-up in Quark, use master pages to do the numbering and then run it through InPosition.

-Adam
__________________
Xitron Navigator 7.0 - Epson 7600 - Fuji Dart II
Xante PlateMaker 4
AHT Fibre Gateway - Xerox Docutech 135
IKON CPP-650 w/Creo RIP
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #12 (permalink)  
Old 12-09-2005, 07:29 PM
pspdfppd's Avatar
pspdfppd pspdfppd is offline
Senior Member
 
Join Date: May 2004
Location: Toronto, Canada
Posts: 722
Adam,

I dont think InPosition has a stacks feature.


Anyone else know?

With my crazy method the Quark file sometimes gets up to 1GB in one 500 ticket file!

This is insane for sure
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #13 (permalink)  
Old 12-10-2005, 06:54 AM
Sparky's Avatar
Sparky Sparky is offline
Moderator
 
Join Date: May 2004
Location: Up-State New York
Posts: 1,564
We have an actual numbering machine that we can number pre-printed pieces in up to 4 positions and calibrate exactly where each number is placed. It prints up to 6 digits and when we switch heads can have a lot of size and color choices.
We do a lot of tickets for golf courses and church raffles and such. The only drawback is that it's so damn loud, it sounds like someone hammering on the wall when its running.
__________________
\"No well engineered plan survives contact with reality\" Me
Mac-OS
Presstech 5334 DI
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #14 (permalink)  
Old 12-20-2005, 10:43 AM
Migel Migel is offline
Junior Member
 
Join Date: Dec 2005
Posts: 3
My boss came to me about a year and a half ago with that same problem. The way I dealt with it was to create a simple program that creates sorted lists of numbers and then outputs them to comma delminated files that I could then use in a merge. So if I wanted tickets that went 1 to 500 ten up my program would create a file that would be 1,51,101,151,201 and so on.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #15 (permalink)  
Old 09-23-2006, 06:16 PM
pspdfppd's Avatar
pspdfppd pspdfppd is offline
Senior Member
 
Join Date: May 2004
Location: Toronto, Canada
Posts: 722
ah...guess if you survive in this racket long enough you're eventually gonna get "PREPS"....now it'd be nice to make those stacked raffle tickets .........
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #16 (permalink)  
Old 09-30-2006, 04:26 PM
spaga spaga is offline
Member
 
Join Date: Sep 2006
Location: lock 60
Posts: 47
if you have tickets and make them say 3up

make an excel file with your numbers and use 3 colums to equal your numbers

make a file with your merge lined up one column for each ticket (you can even use ms word for this :lol: )

lay the merge file on top of the master page (our b/w use xerox freeflow) and print and when you cut your stacks are in order
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #17 (permalink)  
Old 10-09-2006, 11:59 AM
Glars Glars is offline
Junior Member
 
Join Date: Sep 2004
Posts: 11
I'm no Excel guru but for stacked numbers, I just setup an Excel file and do a data merge

For 4 stacks of 100;

a1: 1
a2: =sum(a1,1000)
a3: =sum(a1,200)
a4: =sum(a1,300)
a5: =sum(a1,1)

then just copy/paste a2-a5 until you reach 100
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #18 (permalink)  
Old 01-03-2007, 09:39 AM
pr0t0 pr0t0 is offline
Junior Member
 
Join Date: Jan 2007
Posts: 4
How about an AppleScript?

Hello Everyone! This is my first post...caught the story in American Printer today.

I wrote this script to work with InDesign. Are we allowed to post Scripts? The way I do it is I create the ticket as an EPS in illustrator and then place it accordingly in an InDesign file. Then I create the text boxes for the raffle numbers and apply necessary styling. Doing this makes the only text boxes in the document, boxes for the raffle numbers. ID assigns a "number" to every text box you make, I still haven't figured out the order (across then down, or maybe vice-versa).

That probably didn't make much sense, but if you look at the code, you can see how it works. And it does work, beautifully. Number 00002 is under 00001 in the stack so that when you cut them, everything is in order.

Hope this works for you!

set myNumber to 0

on add_leading_zeros(this_number, max_leading_zeros)
set the threshold_number to (10 ^ max_leading_zeros) as integer
if this_number is less than the threshold_number then
set the leading_zeros to ""
set the digit_count to the length of ((this_number div 1) as string)
set the character_count to (max_leading_zeros + 1) - digit_count
repeat character_count times
set the leading_zeros to (the leading_zeros & "0") as string
end repeat
return (leading_zeros & (this_number as text)) as string
else
return this_number as text
end if
end add_leading_zeros


tell application "Adobe InDesign CS2"

activate

set myDocument to active document

--set the beginning number
set numBegin to 1

--set the end number
set numEnd to 150

--set the number of times the item is on the page
set numUp to 10

--set the number of leading zeros (i.e. setting to 5 will yield a 6 digit number)
set numZeros to 5

--calculate total sheets needed
set numPrint to ((numEnd - (numBegin - 1)) / numUp)

repeat with counter from 1 to numPrint
tell myDocument
repeat with subcounter from 1 to numUp
tell text frame subcounter of page 2
set contents to add_leading_zeros(((counter + numBegin - 1) + ((subcounter - 1) * numPrint)), numZeros) of me
end tell
end repeat
set subcounter to 1
print without print dialog
end tell
end repeat

end tell
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #19 (permalink)  
Old 01-03-2007, 10:28 AM
pr0t0 pr0t0 is offline
Junior Member
 
Join Date: Jan 2007
Posts: 4
Sorry for second reply

I noticed on the script I posted, it had the line:
tell text frame subcounter of page 2

you may want that to read:
tell text frame subcounter of page 1

I had to modify that for a job that had numbering on the back only.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #20 (permalink)  
Old 01-13-2007, 06:57 PM
dkinsac dkinsac is offline
Member
 
Join Date: Jan 2007
Location: Sacramento, CA
Posts: 60
We use excel but we have an HP Indigo 5000 that prints Varible Data! That makes it pretty darn easy!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Job Numbering Systems Rydog General Prepress 11 01-19-2007 01:27 AM
Numbering page as 0 in Preps Ro Kodak-Creo Systems 6 09-27-2006 02:40 PM
number raffle tickets rezin8 Tips/Tricks/Knowledgebase 12 07-14-2005 12:10 PM
Show me your job tickets! Lammy General Prepress 9 05-23-2005 09:14 AM
Q: Preps and numbering tickets colotus Kodak-Creo Systems 0 01-21-2005 03:09 AM


All times are GMT -8. The time now is 03:06 AM.


Powered by vBulletin® Version 3.6.7
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.0.0
Powered by vBadvanced CMPS v3.0 RC1

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40