How to Specify and Particular Printer?

I have a simple one page form with a print button (that was or originally created in LiveCycle) that we have been using with Acrobat (For distribution pruposes).
What I'd like to do it specify a particular network printer for output when a user clicks the "Print Form" button. The form resides internally, so all users have access & permission to this network printer.
My Question? Is there someway to specify a printer, default to a printer or only allow access to a particular printer in Acrobat (or even LiveCycle for that matter)?
Thanks VERY Much!

Thanks very much - I think you have me pointed in the right direction.
I did some reading and research on JavaScript in the API Reference. From what I understand you add/edit commands under 'Advanced>>Document Processing>>Batch Processing'. I added a new sequence using the printParams method stated in the reference:
      var pp = this.getPrintParams();
      pp.interactive = pp.constants.interactionLevel.automatic;
      pp.printerName = "OrderDesk";
      this.print(pp);
It all looks good - unfortunately when I use the PRINT putton on the document - it is still asking me to print to my default printer.
Perhaps I am not adding the method correctly?
Thanks for your attention!
(note :: 'OrderDesk' is the comman name of our network printer)

Similar Messages

  • How to install and set printer paper and tray automatically via script or batch file

    Hi,
    Our firm using HP Printers and we need to deploy printer in Citrix Environment where setting does not save to the Base PC Image.
    Because our Environment is Citrix (User Settings and Printer are deployed when user login).
    Can we build the setting into the Base PC Image for All users?
    Printer get install when using login.
    Problem that I am encounter right now are:
    1. How to correctly identify all tray from each printer.
    2. How to set all paper tray to A4
    I am currently using Powershell Script to install printers during login, all the printer driver has been installed to the Base PC Image.
    But the trouble I have is when the script run to completion.
    It only added the printer.
    I've been googling, but I can't find a way to detect printer tray or how to set all the tray to A4.
    I don't mind using any type of script/batch file or even program.
    Any of the following language is C#, VB.NET, powershell, vbscript or Event Access to HP API ?
    Our Environment:
    Windows 7 x32 SP1
    Windows Server 2008 R2 (Print Server)
    I am using the PCL 6 Printer Driver.
    Our Printers are:
    HP LJ CP1025NW
    HP C LJ 4650
    HP C LJ 3525
    HP LJ 1045
    HP LJ 2050
    HP LJ 3055
    HP LJ 4015
    HP LJ 4350
    HP LJ 4700
    HP LJ 2035n
    Thanks in advance
    Regards Dat.

    Most of those printers are commercial grade printers.  It would be best to post in the commercial LaserJet forums.
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

  • How to specify a particular index for DB2 database when using SQL in ABAP

    Is this format for Oracle?
      select *
       into -
       from  vbrk CLIENT SPECIFIED
    where erdat in erdat
        and mandt EQ sy-MANDT
        %_HINTS ORACLE 'INDEX("VBRK" "VBRK~ZER")'
    For the index 'VBRK~ZER' was defined before,it only includes one field 'VBRK-ERDAT'.
    How can i tell Sap to use this index while processing SQL in DB2?
    Thanks advance.

    There are different hints for the different database platforms.
    For up-to-date information please read the SAP notes, search 'hint DB2'.
    Siegfried

  • How to specify and use arrays in .h and .m files?

    Ok, this is pretty basic. For regular variables, no problem.
    (in .h)
    @interface Mine : NSObject {
    int x;
    @property (assign) int x;
    @end
    (in .m)
    @implementation Mine
    @synthesize x;
    @end
    But, when I want to specify an array of objects, it fails, with "error: bad property declaration".
    (in .h)
    @interface Mine : NSObject {
    int x[15][10];
    @property (assign) int x[15][10];
    @end
    (in .m)
    @implementation Mine
    @synthesize x;
    @end
    If I don't use @property and @synthesize, I can use these arrays just fine in the .m file.
    However, the problem I run into, quite often is that I cannot use these without a warning, which usually causes an exception:
    x[myX][myY] = s;
    or
    [obj getX:myX :myY];
    gives a warning "assignment from a distinct Objective-C type" or "obj may not respond to -getX" which usually ends up with an exception:
    2009-08-17 16:56:00.512 AppName[9638:20b] * -[Mine getX::]: unrecognized selector sent to instance 0x103a800
    2009-08-17 16:56:00.538 AppName[9638:20b] * Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '* -[Mine getX::]: unrecognized selector sent to instance 0x103a800'
    2009-08-17 16:56:00.548 AppName[9638:20b] Stack: (
    807902715,
    2426465851,
    808284155,
    Can someone tell me how to do this properly?
    My app wants to create 2 arrays of 15x9 to manage a playing board on an x,y grid.
    I want one array to be of type NSString, and the other to be of class Piece (one of my own classes). In some places it works without the @property declaration using a custom getter and setter, but in other places the exact same code gives me one of the errors above.
    What am I missing?

    Still working this out. In my App, I really only use the "NSMutableArray* cells" to use as a representation of my initial layout, built from a string obtained in my scene plist file. (sceneTableau)
    An example board can be seen at http://reststop.homeip.net/dev/Picture4.png for those interested in seeing what the working code does.
    - (Board*) setupBoard:(Board*)b {
    if (b) {
    int loc=0;
    b.cells = [[NSMutableArray alloc] initWithCapacity:(boardWidth*boardHeight)];
    for (int n=0; n<boardHeight; n++) {
    for (int m=0; m<boardWidth; m++) {
    NSRange myRange=NSMakeRange(loc*3,2); // get first 2 of 3 chars
    NSString* t = [b.sceneTableau substringWithRange:myRange];
    [b.cells insertObject:t atIndex:loc];
    [t release];
    loc++; // increment to next piece
    } // for m
    } // for n
    }This works great, doing my own math for x,y. In fact this initialization loop ONLY used m,n for documentation and could simply be "for (int loc=0; loc<boardWidth*boardHeight; loc++)" to shorten the code. Since I don't ever actually modify the NSString*s I could make the setter routine for cells be an empty void method, e.g. "- (void) setCells:(NSString*) {}".
    I also noticed a couple of method in the NSString.h file:- (NSArray *)componentsSeparatedByString:(NSString *)separator;
    - (NSArray *)componentsSeparatedByCharactersInSet:(NSCharacterSet *)separator;which would allow me to simply use:b.cells = [b.sceneTableau componentsSeparatedByCharactersInSet:whitespaceAndNewlineCharacterSet];since my sceneTableau string is simply 135 sets of 2-character codes separated by a space or a newline.
    Taking this in the other direction, I could dispense with the cells array and simply use the sceneTableau field and my getter routine would be:- (NSString*) getCells:(int)loc {
    NSRange myRange=NSMakeRange(loc*3,2);
    return [b.sceneTableau substringWithRange:myRange];
    } (I may go ahead and make this change as it is a little more compact and I don't use this array except to initialize the display).
    However, for the pieces, I do need to keep an array, as there is more structure to the objects, and some objects will move from one position to another and the display will need to be redrawn after each move, changing the appearance of at least 2 positions and as many as 4 positions.
    If I did need to modify the contents of a cell, then I presume that I should really use objects of type NSMutableString* instead of NSString, and then the proper way to set a new value would be:
    - (void) setCells:(NSString* s) {
    NSMutableString* c = [self.cells objectAtIndex:(x+y*boardWidth)];
    [c setString:s];
    I am not sure what I need to do in the way of releasing c in this context. Does c go away at the end of the invocation, and no longer points to anything, or do I need to assign nil, or release c?
    I presume I could also do as my current code does[self.cells replaceObjectAtIndex:(myX+myY*boardWidth) withObject:s];but again I am not sure what I need to do about release. I gather that the NSArray handles retaining and releasing the objects which are put into or removed from its instance, and they will all be released when I release the NSArray in my dealloc method.
    Based on this, I do need to rethink my NSMutableArray* of pieces, as I will need to write methods that move the pieces and my earlier model does not allow them to move freely without having to perform some coding gymnastics in Objective-C. I will still need to use an array, NSMutableArray most likely.
    Have I missed anything?
    A quick question on my "setupBoard" routine above. You may have noticed that it takes a Board* and returns a Board*. I currently have to use[b setupBoard:b]; which seems wrong, but it works. What is the proper way to define and invoke this message so that my code would look more like this???[b setupBoard];
    and then to finish and do my releases
    [b upsetBoard];Is it correct Objectivc-C syntax to have a method that manipulates the contents of an object, such as my setupBoard method, and to say:invocation:
    [boardPointer setupBoard];
    implementation:
    - (void) setupBoard {
    if ( self ) { // test for non-nil
    [self.cells = [self.sceneTableau componentsSeparatedByCharactersInSet:whitespaceAndNewlineCharacterSet];

  • How to specify AND/OR relationships while linking nodes in uCMDB Java API

    Hi,
    I am trying to build a TQL via the uCMDB Java API. The structure that I am trying to build is of this type:
    |- Server
        |- Disk
        |- FileSystem
        |- NIC(Interface)
            |-IPAddress
    In the TQL I want to specify the relationship between server and  nic (interface) as composition or containment. So if either relationship matches, it should return me data.
    To build this, I used the following code:
    //server node
    QueryNode serverNode = queryDefinition.addNode("ServerNode").ofType("node");
    //nic (interface) node, uses containment link
    QueryNode nicNode = queryDefinition.addNode("NICNode").ofType("interface");
    //nic (interface) node, uses composition link
    QueryNode nicNode1 = queryDefinition.addNode("NICNode1").ofType("interface");
    // now add relationships
    serverNode.linkedTo(nicNode).withLinkOfType("containment").atLeast(0);
    serverNode.linkedTo(nicNode1).withLinkOfType("composition").atLeast(0);
    My guess is that when I am adding relationships using "withLinkOfType()", it directly ANDs the conditions. Is there a way I could OR conditions which says:
                        Give me NIC Interfaces which either have a composition or containment relation with my server.
    Thanks in advance!

    Hi,
    You need to create a ejb-jar.xml and jboss.xml files to deploy the application on the servers.
    Also, put these lines of codes after getting System Properties.
    prop.put(Context.PROVIDER_URL, "iiop://localhost:[port_no]");Thanks,
    Srikant

  • Optional parameters - how to specify a particular one

    Hi
    Im using the lineStyle function, and I want to set the miterLimit parameter, can I set it directly with something like:
    ui.graphics.lineStyle(1,0x000000, miterLinit:3); or do I have to add in lots of  commas like ui.graphics.lineStyle(1,0x000000,  ,  , , 3)
    public function lineStyle(thickness:Number =  NaN, color:uint = 0, alpha:Number =  1.0, pixelHinting:Boolean = false, scaleMode:String =  "normal", caps:String =  null, joints:String =  null, miterLimit:Number =  3):void

    Unfortunately you will have to put commas.

  • How do I specify a particular Proxy Server, port, user-ID and password for file downloads

    We are attempting to deploy Creative Cloud trial applications to a couple of users for testing purposes.
    This is a corporate environment where we need to specify a particular proxy server by IP address, and port with a User-ID and password for identification in order to download files.
    The Creative Cloud app appears to be ignoring the proxy settings in the browsers installed on the machine used to attempt a download. The Adobe Application Manager Enterprise Edition wants you to already have the files available.  All technical support had is a white list, no help on how to specify a particular proxy server.  Do we have to obtain media from Adobe, or is there a way to download these?
    Thanks

    Creative Suite Enterprise Deployment | Adobe Developer Connection

  • I've got a wireless network with one iMac and a Vista PC, on the Vista PC is through USB a printer connected. How can i print from my iMac to that particular printer ?

    I've got a wireless network with one iMac and a Vista PC, on the Vista PC is through USB a printer connected. How can i print from my iMac to that particular printer ?

    You need to turn on Printer Sharing on both the PC and OS X. I can't help you on Vista but in OS X it's System Preferences - Sharing - check the Printer Sharing box.

  • How to print the row  ,column,and particular cell in separate color

    how to print the row  ,column,and particular cell in separate color IN ALV GRID

    HI,
    Here you go good program links
    <a href="http://www.sapfans.com/forums/viewtopic.php?t=52107">How to Set Color to a Cell in AVL</a>
    <a href="http://www.sapdevelopment.co.uk/reporting/alv/alvgrid_color.htm">ALV Grid Coloring</a>
    Thanks
    Mahesh

  • How to select and print calls only made and receiv...

    how to select and print out list of calls made and received for the past year, between myseld and one particular contact

    While I'm not sure about what you want to accomplish, I'll offer a couple of possible solutions.
    1. If the items that you want to remove are on the timeline, and those items are in layers that contain no content that you want to keep, then you can just select those layers and delete them.
    2. If you want to remove some items from the stage, but keep the original items for some later purpose, just copy the movie and then edit the copy as in item 1.
    3. If you need to remove some items from stage and then resize the stage to compensate for the loss of these items, then you may have to move and/or resize some of the items in your movie. This may be as simple as using the "edit multiple frames" selection in the timeline, or it may be much more time consuming.

  • How to specify a printer?

    I have a coldfusion application that's used by a collection of users who are all using the same type of label printer.
    One thing the app does is use cfdocument to generate a pdf sized for this label printer.  It also generates a series of forms that are printed on a regular printer - these vary, and are the default printer on each client's machine.
    Here's what I need to know - when the label is generated, they press the print button and the print dialogue opens, how can I make the label printer (not the default printer) the printer that's selected?  So all users have to do is click "print" --> "ok" and the page prints, without needing to choose a printer.
    Like I said, I know the exact printer all my users are using.
    I know this can be done as one of my users sent me screen capture of another web app doing this.  I didn't catch which scripting language they were using but will try to find out.
    So, obviously this is possible with some combination of web scripting / javascript / vbscript / something.  Can anyone offer ANY ideas?  I don't even mind if it's a browser-specific solution in this case.
    Thanks much,
    Joe

    Thanks Tclaremont for the link.
    I did look at cfprint and getprinters.  Thing is, I keep reading (in your link too) that they're for server-side printing only.  That's the opposite of what I'm trying to do.  My users are a series of independent businesses strung across the U.S., who all happen to perform the same function and therefore all use the same specialized printer type to do it.  They are all using the same TYPE of printer, but every business has their own, in their own building.  These places are definitely NOT on a network as many of them are competitors.
    I don't need to determine the types of printers available on each client's network.  I KNOW which printer I want to specifiy, and I know they all use it.  I just need a way to specify that printer - instead of the default printer, which is usually an office laser printer / copier / fax - in the print page dialogue that I'll probably open with javascript.  I'm trying to avoid forcing the users to select the specialty printer instead of the default every time they print from my system.  It's not a real big deal but you know how that goes: people get in a hurry and you've got print jobs going to the wrong printer, wasting paper, toner, and time.
    I've read this isn't possible, but like I said, I've seen another web app that does it.  It's definitely possible that they've "tactfully" installed something on the user's computers to do this, and I'll stop short of that.  But if there's ANY combination of web-based scripting languages that can do it, I'd love to learn.
    Thanks...
    Joe

  • Ihave an ipad and an epson nx430 printer.  I tried to print my airline itinerary  and it printer 4 pages that was mostly ads.  How can i print just the itinerary which fits on oneage?

    I have an ipad2 and an epson nx430 printer.  I tried to print my airline itinerary  and it printer 4 pages ,most ofwhich were ads. How can i focus just on the information that i need?

    Does the website you're using offer a "printer freindly" button or perhaps the faciltiy to email the intenerary to yourself?
    Matt

  • HT4356 My iPad does not find the printer. I have tried the HP app and it works, but in any other app the printer is not seen. How do I get this printer visible to the iPad. All my other network computers find and print with out a problem.

    My iPad does not find the printer. I have tried the HP app and it works, but in any other app the printer is not seen. How do I get this printer visible to the iPad. All my other network computers find and print with out a problem.

    hi
    could you tell us what the other app is please

  • TS1135 i upload iPhone pics to Shutterfly, which gives me a "low resolution" warning and the prints come out blurry. does anyone know how to increase resolution of iPhone pics?

    i upload iPhone pics to Shutterfly, which gives me a "low resolution" warning and blurry prints. Does anyone know how to enhance resolution/printing quality of iPhone pictures?

    How does iPhoto play a part in this?  You're in the iPhoto forum.  Shouldn't you be asking your question in the iPhone forum?  I'll ask the powers to be to move you question to the iPhone forum.
    OT

  • I upload iPhone pics to Shutterfly, which gives me a "low resolution" warning and blurry prints. Does anyone know how to enhance resolution/printing quality of iPhone pictures? iPhone 5

    i upload iPhone pics to Shutterfly, which gives me a "low resolution" warning and blurry prints. Does anyone know how to enhance resolution/printing quality of iPhone pictures?
    iPhone 5

    How does iPhoto play a part in this?  You're in the iPhoto forum.  Shouldn't you be asking your question in the iPhone forum?  I'll ask the powers to be to move you question to the iPhone forum.
    OT

Maybe you are looking for

  • Jabber for Windows 9.7(2)

    Is Jabber for Windows 9.7(2) the fixed version for Advisory ID: cisco-sa-20140605-openssl which is Open SSL - Multiple Vulnerabilities.    When I look at Bug ID of CSCup23913 on this matter it is not entirely clear.

  • Problem displaying drill down STANDARD ALV for a particular record after pressing back button

    I have a simple interactive ALV grid report. NOT 'OO'. It display correctly on initial execution. AT the moment, 6 records. I want it to work such that if i click record '1', a drill-down version of that ALV with only that one record clicked is displ

  • Wsdl for emails

    How to get a wsdl for sending mail by a third party service provider??

  • Not enough ram - 3d revolve

    Hello I am a complete novice when it comes to specs however i can tell you i am using a MAC os X 10.5.8, with a processor of 2.66 GHz Intel core 2 Duo, and Memory of 4Gb 1067 MHz DDR3. Currently i have designed some spray can labels which i need to p

  • Help! Can I recover an image from Bridge's Cache?

    Nightmare situation. Deleted clients 3 month old baby files by accident. Recovery software found files but they are corrupted, all of them.... SO I know I showed them to her originally in Bridge CS3 and that bridge makes a high-res preview. This prev