Documents do not print in the correct order.

I try to print hundreds of documents using a command Station fiery; However, the documents do not leave my machine in the right order and then get printed in the wrong order.

For example, document 05 will print everything first, followed by the 10 document, then the document 01.

How can I force documents to be wound in their correct order (01,02,03, etc.)?

Hi KyleDumond,

In the face of the issue only when you use Fiery Command WorkStation?

You can check if you can print from Windows without any problem. You try to print documents from 10 to 15 at a time and check what is happening.

For more information, refer to article:

Choose printing options

If you are not faced with the question, so you may need to get in touch with support Fiery Command WorkStation to get help:

http://w3.EFI.com/en/fiery/products/CWS5

http://w3.EFI.com/about-EFI/contact-us

Tags: Windows

Similar Questions

  • Card rules do not run in the correct order

    Hello

    I am using FDM 11.1.2.1.

    I imported data and used the card rules: mapping was not what you expected, so I had to modify the sequence of the rules on the map.
    So I updated the sequences of the rules on the map and re-validated (even re-imported) = > I still have the same problem: the card rules do not run in the correct order.

    Below is an example of a line imported with this problem:

    Export of the import mode:
    PARTITIONKEY | CATKEY | PERIODKEY | ACCOUNT | ENTITY | AMOUNT | * UD5 *.
    749. 12. 2011-03-31 00:00:00 | 60413031 | MM31N0 | 773. * 000000 *.

    Rules of the card for the dimension of the UD5 (exported from FDM) (sorry it is not well presented :-/))

    %{DIMNAME/} SRCKEY SRCDESC TARGKEY WHERECLAUSETYPE WHERECLAUSEVALUE SEQUENCE VBSCRIPT PARTITIONKEY
    749 UD5 MTN424 project MTN424 MTN424 1
    749 UD5 R_PROJ_AXMECH project AXMECH #SCRIPT IN * 2 * ' * If Left (varValues (15), 2) = "" MM"" Then. "

    * Result = ""AXMECH *"
    Else if varValues (15) = "" MSIND0"" Then
    Result = ""AXMECH"
    Else if varValues (15) = "" MSTLP0"" Then
    Result = ""AXMECH"
    End If '.
    UD5 749 * 000000 * project undefined PROJET_NON_DEFINI * 3 *.
    749 UD5 R_PROJ_AUTRES other projects * AS * 4

    If despite the sequence 1-2-3-4, the UD5 000000 is mapped to PROJET_NON_DEFINI (rule explicit map with sequence 3) instead of AXMECH (IN the rule of the map with sequence 2).

    Thanks in advance for your help

    Fanny

    The card sequence numbers have effect in a single mapping type (Explicit, between, in, analogues), not through multiple types of mapping only. Explicit cards always take precedence.

  • Illustrator script will not print on the correct printer.

    I call an Illustrator using BridgeTalk script within a script InDesign, but I doubt it would make a difference.  Here's the question: we have four printers on the network that are named 'Printer 1', ' printer 2 "," printer 3 ", and"printer 4"on each Mac on the network." "  I want to print a document to a specific printer, based on the computer that is used to run the script.  Pretty simple idea and I have illustrated it in my script in progress below:

    function illustratorDie(artFile, dieFolder, companyName, orderNum, shipDate, dieInks)
    { 
              // Before anything else, find out to which printer we'll be sending our document.
              var machine = $.getenv("USER");
              $.writeln("(IL) Environment variable 'USER' is " + machine);
              var localPrinter;
              var shipPrinter;
              switch (machine)
              {
                        case "aerostar":
                                  $.writeln("Machine is aerostar.");
                                  localPrinter = "Printer 4";
                                  shipPrinter = "Shipping";
                                  break;
                        case "apache":
                                  $.writeln("Machine is apache.");
                                  localPrinter = "Printer 3";
                                  shipPrinter = "Shipping";
                                  break;
                        case "navajo":
                                  $.writeln("Machine is navajo.");
                                  localPrinter = "Printer 3";
                                  shipPrinter = "Shipping";
                                  break;
                        case "seneca":
                                  $.writeln("Machine is seneca.");
                                  localPrinter = "Printer 2";
                                  shipPrinter = "Shipping";
                                  break;
                        case "warrior":
                                  $.writeln("Machine is warrior.");
                                  localPrinter = "Printer 2";
                                  shipPrinter = "Shipping";
                                  break;
                        case "tomahawk":
                                  $.writeln("Machine is tomahawk.");
                                  localPrinter = "Printer 1";
                                  shipPrinter = "Shipping";
                                  break;
                        case "Marketing":
                                  $.writeln("Machine is Marketing.");
                                  localPrinter = "Printer 1";
                                  shipPrinter = "Shipping";
                                  break;
                        default:
                                  $.writeln("Machine has defaulted.");
                                  localPrinter = "Printer 3";
                                  shipPrinter = "Shipping";
              }
              $.writeln("(IL) Thus, the local printer is " + localPrinter);
    
    
              // First, create a new document for the die.
              var dieDoc = app.documents.add();
    
    
              // Then open the document that contains the artwork.
              var artDoc = app.open(artFile);
    
    
              // Group the art from the document with the artwork,
              // just in case it hasn't already been grouped.
              artDoc.layers[1].locked = true;
              artDoc.selectObjectsOnActiveArtboard();
              var sel = artDoc.selection;
              var newGroup = artDoc.groupItems.add();
              newGroup.name = "ArtGroup";
              newGroup.move(artDoc, ElementPlacement.PLACEATEND);
              for (var i = 0; i < sel.length; i++)
              {
                        sel[i].moveToEnd(newGroup);
              }
    
    
              // And copy the artwork from the art document to this new die document.
              var copiedArt = newGroup.duplicate(dieDoc.layers[0],ElementPlacement.PLACEATEND);
    
    
              // Now we can close the art document as it will no longer be needed.
              artDoc.close(SaveOptions.DONOTSAVECHANGES);
    
    
              // Back to our die document, let's fix up the art now.
              // We do so by first centering it on the page.
              copiedArt.left = ((dieDoc.width - copiedArt.width) / 2);
              copiedArt.top = (dieDoc.height + copiedArt.height) / 2;
    
    
              // Then we change all paths to black & white.
              // For this, we will assume that there are no gradients nor raster art.
              var pathsToRemove = new Array;
              var blackColor = new CMYKColor();
              blackColor.cyan = 0;
              blackColor.magenta = 0;
              blackColor.yellow = 0;
              blackColor.black = 100;
    
    
              convertBW(copiedArt);
    
    
              $.writeln("Removable paths: " + pathsToRemove.length);
              for (var v = 0; v < pathsToRemove.length; v++)
              {
                        pathsToRemove[v].remove();
              }
    
    
              // Now specify the contents of that text block.
              var newLine = String.fromCharCode(13);
              var textContents = companyName + newLine;
              textContents += orderNum + newLine;
              textContents += shipDate + newLine;
              textContents += newLine;
              textContents += "W: " + Math.round((copiedArt.width / 72) * 100) / 100 + newLine;
              textContents += "H: " + Math.round((copiedArt.height / 72) * 100) / 100;
    
    
              // And finally actually place the text block while formatting it.
              var textDesc = dieDoc.textFrames.add();
              textDesc.position = [36, dieDoc.height - 50];
              textDesc.contents = textContents;
              textDesc.textRange.characterAttributes.size = 36;
    
    
              // Let's set print options for the two printers.
              var localPrintOptions = new PrintOptions();
              localPrintOptions.printerName = localPrinter;
              var shipPrintOptions = new PrintOptions();
              shipPrintOptions.printerName = shipPrinter;
    
    
              var myJobOptions = new PrintJobOptions();
              myJobOptions.copies = 1;
              shipPrintOptions.jobOptions = localPrintOptions.jobOptions = myJobOptions;
    
    
              $.writeln("Printing to " + localPrintOptions.printerName);
    
    
              // Now we need to print this text block to the local printer as well as the Shipping printer.
              $.sleep(2000);
              dieDoc.print(localPrintOptions);
              $.sleep(2000);
              dieDoc.print(shipPrintOptions);
    
    
              // Before saving the file to an .EPS, we need to hide (or delete) the text block.
              textDesc.remove();
    
    
              // Lastly, we need to save this document as an .EPS file in the proper location.
              // Set the SaveOptions first, just like the PrintOptions earlier.
              var dieOptions = new EPSSaveOptions
              {
                        compatibility = Compatibility.ILLUSTRATOR16;
                        preview = EPSPreview.TRANSPARENTCOLORTIFF;
                        embedAllFonts = true;
                        cmykPostScript = true;
                        postScript = EPSPostScriptLevelEnum.LEVEL2;
              }
    
    
              // And then actually save the document.
              var savedFile = unescape(dieFolder.toString()) + "/" + artFile.name.slice(0,-4) + "_Die.eps";
              $.writeln("Inside Illustrator script, savedFile is " + savedFile);
              dieDoc.saveAs(File(savedFile), dieOptions);
    
    
              // Finally, close the document.
              dieDoc.close();
              return savedFile;
    
    
              // END OF MAIN.
    
            function blackIt (currentItem)
            {
              ...
             }
    }
    

    I at first thought that the script was running too fast, so I added the two "$.sleep (2000)" orders near the end to see if it would help - it didn't.

    The bits of important, after defining the variables localPrinter and shipPrinter, come after the line / / Let's define the printing options for both printers.

    Instead of print to the local printer, sometimes it will print to the other.  For example, I am the machine called "apache".  The script must localPrinter on "Printer 3".  And, according to the statement of $. writeln() , he does.  However, despite this setting, almost always displays "Printer 2"!  From time to time he actually does it print "Printer 3".

    This happens on other systems, too.  It almost seems as if it prints to a printer that is numerically the one less than that to which it is supposed to print.  "aerostar" prints often to "3", "warrior" often it prints for "printer 1", and then the 'marketing' impressions, we do not yet all printers output a page!

    What is the cause to happen and, more importantly, what can I do about it?  Help, please!

    Of course, I get another set of printers listed.  Nevertheless, I found a solution for this.  Since it seems that the printerName of PrintOptions property is buggy, I decided to try the printPreset property instead.  I created of the presets on each computer, one for each printer and the accordingly modified script.  Works like a charm now.  Now the switch statement:

    switch (machine)
    {
              case "aerostar":
                        $.writeln("Machine is aerostar.");
                        localPrinter = "Printer 4";
                        localPrintPreset = "Color Proof Printer 4";
                        shipPrinter = "Shipping";
                        break;
              case "apache":
                        $.writeln("Machine is apache.");
                        localPrinter = "Printer 3";
                        localPrintPreset = "Color Proof Printer 3";
                        shipPrinter = "Shipping";
                        break;
              case "navajo":
                        $.writeln("Machine is navajo.");
                        localPrinter = "Printer 3";
                        localPrintPreset = "Color Proof Printer 3";
                        shipPrinter = "Shipping";
                        break;
              case "seneca":
                        $.writeln("Machine is seneca.");
                        localPrinter = "Printer 2";
                        localPrintPreset = "Color Proof Printer 2";
                        shipPrinter = "Shipping";
                        break;
              case "warrior":
                        $.writeln("Machine is warrior.");
                        localPrinter = "Printer 2";
                        localPrintPreset = "Color Proof Printer 2";
                        shipPrinter = "Shipping";
                        break;
              case "tomahawk":
                        $.writeln("Machine is tomahawk.");
                        localPrinter = "Printer 1";
                        localPrintPreset = "Color Proof Printer 1";
                        shipPrinter = "Shipping";
                        break;
              case "Marketing":
                        $.writeln("Machine is Marketing.");
                        localPrinter = "Printer 1";
                        localPrintPreset = "Color Proof Printer 1";
                        shipPrinter = "Shipping";
                        break;
              default:
                        $.writeln("Machine has defaulted.");
                        localPrinter = "Printer 3";
                        localPrintPreset = "Color Proof Printer 3";
                        shipPrinter = "Shipping";
    }
    

    and the transfer block that accompanies it, which uses the new variable:

    // Let's set print options for the two printers.
    var localPrintOptions = new PrintOptions();
    localPrintOptions.printPreset = localPrintPreset;
    var shipPrintOptions = new PrintOptions();
    shipPrintOptions.printerName = shipPrinter;
    

    I hope this will help someone else who is faced with this problem!

  • USB port recognizes the location of my external hard drive as F:. Why it does not recognize in the correct order as E:?

    This question is requested based on certain issues I'm having with the Zune software. specifically in the software of pointing to the correct location for listening to music I own that was torn through CD. Currently, all the added music in this way shows the location of each song as E: in the properties of the song. I went back to the score zune software to the right location (for example settings-online collection => by adding the name of the place where the music.). The negative result is that I can't play full songs for music I own. Instead, Zune software plays the second.30 preview for each. Is this a problem of Zune, Vista or Western Digital external drive problem? Why Vista would recognize the location of the reader out of sequence. Please notify. Thank you

    Hi Freddie,.

    You can try to change the E: drive letter and check.

    For more information, you can consult the following article:

    Change, add, or remove a drive letter

  • L80/L81: photo of USB key do not appear in the correct order

    Hello

    My parents-in-law have a digital frame (L80/L81 Toshiba) and when they put the key USB in the photos appear not in order. For example the slideshow begins to photo 15 and not 1.

    My mother-in-law really want this problem solved :)

    Thanks for any help!

    Hello

    I suppose that you have set the slideshow settings on randomly:
    You can set how random or sequential.

    To set the slide show sequence:
    -in main menu, select the photo and press OK to enter the Photo mode
    -device select step that you want to access then pres Ok
    -Select the sequence of slide show, then press ok
    -Select a sequence; sequential or random-> in your sequential case

    See you soon

  • Highlighted in the documents does not print.

    My HP309g works fine except the underscore in the documents does not print.  I use Word 2010 and Word Perfect X 4.  My OS is Windows 7 64 bit.

    Hello Pamelia

    Which application use? Have you tried to use Wordpad or another application with highlights?

  • HP 8600; Printer says it is ready for wireless printing, but will not print my documents. It prints all the pages of the test very well. What I am doing wrong?

    Printer says it is ready for wireless printing, but will not print my documents. It prints all the pages of the test very well. What I am doing wrong?

    Contact HP support.
    http://h10025.www1.HP.com/ewfrf/wc/pfinder?cc=us&DLC=en&LC=en&tool=&query=8600#n251

  • My Dell all-in-one printer does not print from the new hard drive installed

    I reinstalled the printer from the drive home, but when I ask it to print it says that it is not implemented. It will copy but not print. I also tried repairing the system, and it is said that it does not find anything wrong.

    tcarter015,

    Have you installed the desktop system utility / portable and drivers from the chipset first? If this is not the case, the rest of the drivers will not install. How to download and install drivers in the Correct order. If there is a Dell computer. If a non - computer Dell, the chipset drivers still need to be installed first.

    Dell inkjet printer?

    What program anti-virus and firewall are you using?

    Rick

  • Have windows 7 64 bit, andf Intuit quickbooks pro, Amyuni PDF printer will not save to the PDF format. Message from readings of intuit library printers 'could not print to the printer. Check your printer selection. Impression was canced from another progr

    Have windows 7 64 bit, andf Intuit quickbooks pro, Amyuni PDF printer will not save to the PDF format. Message from readings of intuit library printers 'could not print to the printer. Check your printer selection. Impression was canced from another program.

    Hi rkusa1,

    Thank you for using Microsoft Windows forum

    QuickBooks worked very well under Vista? It should also work reliably on Windows 7.

    However, you may want to follow these steps.

    1. right click on your quickbooks start exe file and open properties.

    2. on the Compatibility tab, select the compatibility mode and run this program in compatibility mode for Windows using the following link: http://windows.microsoft.com/en-us/windows7/Make-older-programs-run-in-this-version-of-Windows (only if she worked very well with former Windows operating system)

    3. the control privilege level "Run this program as Administrator". Press apply/OK to close properties.

    4. start - devices and printers - add a printer - add a local printer - create a new port - local port and name it QBD_PDF.

    5. Choose install AMYUNI Technologies - Amyuni Document Converter 300 (click the button update windows if it is not on your list).

    6. If windows detects you already have a driver and then choose to replace the current driver. The printer name Quickbooks PDF Converter - do not share the printer - NOT set as the default printer. Finishing

    7. start right click - devices and printers - printer QB, choose printer - properties and go to the Advanced tab.

    8. remove the checkmarks in the 4 elements with square next to them (lower part of the screen) boxes, and then select "Print directly to the printer" press OK to close the window.

    9 restart you computer and open Quickbooks. Open the file - printer installation and make sure of Quickbooks PDF Converter is selected for any operation PDF printer that you use frequently. (on rare occasions, you will see not of Quickbooks PDF Converter on the list, reboot again and you'll get it).

    You can now perform operations of PDF in Quickbooks (works for 32 and 64-bit Windows 7)

    For a similar question, see: http://social.technet.microsoft.com/Forums/en/w7itproappcompat/thread/2bd30024-0a64-4f6b-a831-8cb7c1e4cce5

    If the steps above do not post your question in this link: http://community.intuit.com/quickbooks

    Kind regards
    Aziz Nadeem - Microsoft Support

  • Printer not print indicating the print spooler is stopped and does not restart

    Original title: printer does not print

    The print spooler is stopped and does not restart. I have a laptop with Windows 7 and the printer is a HP Officejet 8600 (network). My wife has the same laptop model and has no problem with printing. Any help you can give would be welcome.

    David Torres

    Hi David,

    Thanks for posting your question in the Microsoft Community.

    I understand that this printer not print indicating the print spooler is stopped and does not restart. Correct me if I'm wrong.

    I imagine the inconvenience that you are experiencing. I will certainly help the question of fixing.

    To help you suggest several steps to solve the problem, I would appreciate if you could answer the following questions:

    . Have you made any recent hardware or software changes to your computer before the show?

    Please follow the methods and mark the question below:

    Method 1:

    Step 1:

    Run the Microsoft Fix It from the link below.

    Diagnose and automatically fix problems printing and printer:

    http://support.Microsoft.com/mats/printing_problems/

    Step 2:

    Follow the steps in the link below.

    Printer in Windows problems:

    http://Windows.Microsoft.com/en-us/Windows/help/printer-problems-in-Windows

    Method 2:

    You need to check if the Printer Spooler service is started from services.msc.

    a. click Start, click run, type services.msc.
    b. double-click the print spooler and verify that the status is set as Automatic or Manual.

    c. right-click on print spooler and click restart.

    Your response is very important for us to ensure a proper resolution. Please get back to us to help you accordingly.

    I followed method 2 above. When I Rt click Spooler printer restart remained gray when I click on START, I get the message "Windows failed to start the service on local computer print spooler.   ERROR 1053 the service did not demand launch or timely control.
    What can I please?

  • Wireless printer not printing since the wireless router has been reset... Can anyone help. I can connect to the internet, now, just not the printer!

    Wireless printer not printing since the wireless router has been reset... Can anyone help. I can connect to the internet, now, just not the printer!

    Wireless printer not printing since the wireless router has been reset... Can anyone help. I can connect to the internet, now, just not the printer!

    Hi, Rlayhee,

    Printer brand/model?

    Start > Control Panel

    Select the Printers folder

    Right-click on the printer icon, then select open

    Are there pending print jobs

    If Yes, click on file > cancel all Documents

    Close the print queue and the printer folder

    Try printing again

    Start > right click on computer

    Select manage

    Select Device Manager

    Click on the + sign next to the Ieee... compatible printer (if any)

    Right-click on the driver and select uninstall

    Click on the + next to imaging devices

    Right-click on the driver and select uninstall

    Click on the + sign next to printers

    Right-click on the driver and select uninstall

    Click on the + sign next to Bus USB controllers

    Right-click on the driver and select uninstall

    Close the Device Manager

    Restart the computer to Windows to reinstall the drivers

    Go to the manufacturer's website and search for driver updates

    Try printing again

  • My added texts and comments will not print on the .pdf more.  Did turn something off accidentally?

    The text that I added a file .pdf (& sometimes comment boxes) appear not when I print the .pdf.  He is used to.  Same thing with stamps, they are not printed on the document and they used to.  Do you have a something accidentally disabled?  I have Adobe Acrobat XI Standard.

    In the print dialog box, choose "Document and brands."

  • What is the correct order of installation between Siebel - Apache?

    Hi, I have a Siebel architecture with an Apache web server. I wanted to confirm the installation order, that is to say, I install Siebel Enterprise, Siebel server and the gateway. After that, install the Apache web server and, finally, the Siebel Web Server Extension. This is the case? This is the correct order? or should I change a component of the place?

    Thank you very much
    Kind regards

    In siebel 8.1.1 first you install Gateway Siebel and Siebel Enterprise Server, install Siebel server, install the configuration DB utilities, create DB Siebel and install Siebel Web Server Extension (SWSE). If a Siebel DB is not already created, see doc below for more details and considerations:

    http://docs.Oracle.com/CD/E14004_01/books/SiebInstUNIX/SiebInstCOM_InstSES3.html#wp2367737
    http://docs.Oracle.com/CD/E14004_01/books/SiebInstUNIX/SiebInstCOM_InstSES9.html#wp2367945

    The Web server must be installed before installing SWSE. Make sure that you use a supported apache based web server:

    http://docs.Oracle.com/CD/E11886_01/V8/core/SRSP_81/SRSP_81_ServerEnv8.html#wp1013532

    Thank you

    Wilson

  • A PDF file does not print on the new HP printer

    I recently added a printer HP CM1415fnw in my office and I can't print any PDF documents. Word and Excel print very well. Why?

    Well, the point is moot, because the true culprint was my lame OS

    (Vista), so my laptop is in the shop getting Windows 7... Thank you for all

    your advice!

    Bill@VT http://forums.adobe.com/people/Bill%40VT has created the discussion

    "Re: PDF files does not print on the new HP printer.

    To view the discussion, visit:

    http://forums.Adobe.com/message/4558299#4558299

  • "The document is not valid. The index.xml file is missing.

    I suddenly can't open one of my docs of numbers. I get a msg "'name of the doc' document is not valid. The index.xml file is missing.  I literally had the open document this morning without problem, closed, tried to reopen and now I get this msg... all in the same session of the computer. It began not after an update or anything like that, right in the middle of a session of the computer.  You seem to affect all the docs of numbers.  I can't open an any of them now.  I am running OS X El Capitan Version 10.11 and numbers 09, Version 2.1.

    Hi jg,.

    The case usual this message, it is that the document has been opened in numbers version 3.xx, which converts it into a new file version that uses the file index.xml internal requested by Numbers ' 09.

    You have 3 numbers installed on your machine? This file has already been opened in this application?

    The file was saved to iCloud or opened by the iOS version numbers or numbers for iCloud?

    Recommended 'cure' is to open the file using the 3 numbers, then save as... or export to format Numbers ' 09. As a result, remember numbers to quit smoking (v3) - menu numbers > numbers to quit smoking; by clicking on the red light closed the file, but doesn't end numbers. So avoid open numbers files by double-clicking on the file itself.

    Instead, start Numbers ' 09 (v2.3) and open the file in the application.

    Kind regards

    Barry

Maybe you are looking for

  • Ayuda con Cuenta de Icloud

    Buenos Días mi problema are the following. Yo compre UN iphone IOS 9.3.3 5s is actualizo hace 2 dias, solo UN dueno a tenido persona than me lo lo compro in Estados Unidos, el problema vendio are el siguiente yo is lo di mi hijo pero el por tratar co

  • Can someone confirm Xbox works on Qosmio?

    Hello IM about to buy a computer laptop qosmio, one of the main points of sale is that is that a handful of laptops with video in. I want to use it to play my xbox. Ive searched the forum and the person who used it for it had problems but never concl

  • HP 420: Can I replace my CPU?

    Hello. I want to change my processor T4500 with a T9600. It is compatible? Thank you

  • Need help to set up Time Capsule to extend the current U - pay Wi - Fi.

    I am trying to extend my current Wi - Fi signal from AT + T U-Verse. I have a time capsule 1 TB and a Macbook Pro w/Retina Display. When I go in the most convenient airport Configuration it allows me to select "Extend a current network" but who is sh

  • no option of wifi to the fn + f5 to lenovo z460

    I have Lenovo Ideapad Z460 whenever I go on fn + f5 (the Lenovo wireless device settings), the options I don't have there's bluetooth options, but no wifi option. I already turned on the switch radio wireless forward but still no wireless connection.