Trying to print my own invitations

I need to order invitations for a party I am throwing, but they are blank. I just started using iWork '08 last week and I don't know how to set up pages to a specific template and size to print the specialized size of the inserts for the invitations I MUST print myself. Can someone help me?? Please tell me it's easy

How easy or hard your task will be depends on the paper stock you are using. If you are purchasing card stock that is smaller than normal paper, that's pretty easy: measure the cards and then open Pages and select a blank page layout template, select the Inspector, click on the first tab, and then click on the Page Setup button. In the Page Setup dialog click on the Paper Size popup menu and scroll down to custom. Create a new paper size by clicking on the plus button - name it Invites or something like that. Set the paper size and leave margins as they are. Back in the Inspector, set your document margins. The Pages document will magically change to the size you set. Create your invitation and print.
If, on the other hand, you have bought Avery card stock, you are going to create your own Pages template. You'll need to do careful measurements again and open a blank page layout template. Make sure Pages is showing the rulers. You'll need to drag out guides to define the actual page. In other words, let's say the card starts 1 inch from the top of the card stock. Put your cursor up in the top ruler, click and drag down an inch. This will drag out a blue guide which you'll use when you create your text box. Drag out the rest of your guides. Then insert a text box and drag it out to fill the blue box you created with the guides. Now add text, graphics, and print. Oh, print first on a normal sheet of paper and then hold it against a piece of card stock to see how it will fit on the real thing. Adjust as needed.

Similar Messages

  • How to use mdb to print my own struct info on sparc10?

    Hi All,
    I'm debugging a system panic coredump on sparce10. I tried to print my own struct with command address::print -t my_struct or address$<my_struct, but both of them didn't work. but on x86, it could work.
    I have googled on internet, maybe i need to write a .mdbrc files? could anybody give me a help?
    thanks a lot!
    Toosic

    This came from a guy named Jonathan.
    This worked fine for me on Sol 10 x86 with the gcc compiler.
    So, in my test.so file, you load it into mdb...
    ::load ./test.so
    then use it
    <address>::MR
    wr
    +++++++++++++
    Solaris compiles it's dmods with the following GCC invocation:
    /usr/sfw/bin/gcc -fident -finline -fno-inline-functions -fno-builtin
    -fno-asm \
    -nodefaultlibs -D__sun -fno-strict-aliasing -fno-unit-at-a-time
    -fno-optimize-sibling-calls -O2 -m64 -mtune=opteron -Ui386 -U__i386
    -Wall -Wno-unknown-pragmas -Wno-missing-braces -Wno-sign-compare
    -Wno-parentheses -Wno-uninitialized
    -Wno-implicit-function-declaration
    -Wno-unused -Wno-trigraphs -Wno-char-subscripts -Wno-switch -Werror
    -std=gnu89 -gdwarf-2 -std=gnu89 -fno-dwarf2-indirect-strings -fPIC
    -DTEXT_DOMAIN="SUNW_OST_OSCMD" -D_TS_ERRNO -D_ELF64 -D_KERNEL
    -ffreestanding -c -o test.o test.c
    (I'm sure that many of these options aren't needed)
    And then links it with:
    /usr/sfw/bin/gcc -fident -finline -fno-inline-functions -fno-builtin
    -fno-asm
    -nodefaultlibs -D__sun -fno-strict-aliasing -fno-unit-at-a-time
    -fno-optimize-sibling-calls -O2 -m64 -mtune=opteron -Ui386 -U__i386
    -Wall
    -Wno-unknown-pragmas -Wno-missing-braces -Wno-sign-compare
    -Wno-parentheses
    -Wno-uninitialized -Wno-implicit-function-declaration -Wno-unused
    -Wno-trigraphs
    -Wno-char-subscripts -Wno-switch -Werror -std=gnu89 -gdwarf-2
    -std=gnu89
    -fno-dwarf2-indirect-strings -DTEXT_DOMAIN="SUNW_OST_OSCMD"
    -D_TS_ERRNO
    -D_ELF64 -D_KERNEL -ffreestanding -Wl,-Bdirect -shared test.o -o
    test.so
    Do these work for you?
    Cheers,
    - jonathan
    +++++++++++++++++
    test.c file follows...
    #include <sys/mdb_modapi.h>
    #include <errno.h>
    #include <sys/stat.h>
    #include <sys/debug.h>
    #include <sys/types.h>
    #include <sys/cmn_err.h>
    #include <sys/param.h>
    #include <sys/cred.h>
    #include <sys/stream.h>
    #include <sys/stropts.h>
    #include <sys/kmem.h>
    #include <sys/time.h>
    #include <sys/ddi.h>
    #include <sys/modctl.h>
    #include <sys/devops.h>
    #include <sys/sunddi.h>
    #include <malloc.h>
    #include <time.h>
    #include <sys/sysmacros.h>
    #include <sys/utsname.h>
    extern int uname(struct utsname *);
    extern int atoi(const char *);
    static int
    print_ftheader (uintptr_t addr, uint_t flags, int argc, const mdb_arg_t * argv)
    int bytes;
    char *cp;
    if (!(flags & DCMD_ADDRSPEC))
         mdb_warn ("You must specify an address (<address>::FtHdr)\n");
         return (DCMD_ERR);
    mdb_printf ("\nHeader_t Data Structure 0x%lx\n", addr);
    return (DCMD_OK);
    static int
    print_mr (uintptr_t addr, uint_t flags, int argc, const mdb_arg_t * argv)
    int bytes;
    char *cp;
    if (!(flags & DCMD_ADDRSPEC))
         mdb_warn ("You must specify an address (<address>::MR)\n");
         return (DCMD_ERR);
    mdb_printf ("\nMr_t Data Structure 0x%lx\n", addr);
    return (DCMD_OK);
    static int
    print_mControl (uintptr_t addr, uint_t flags, int argc,
              const mdb_arg_t * argv)
    int bytes;
    if (!(flags & DCMD_ADDRSPEC))
         mdb_warn ("You must specify an address (<address>::mControl)\n");
         return (DCMD_ERR);
    mdb_printf ("\nMonControl Data Structure 0x%lx\n", addr);
    return (DCMD_OK);
    * MDB module linkage information:
    * We declare a list of structures describing our dcmds, and a function
    * named mdbinit to return a pointer to our module information.
    static const mdb_dcmd_t dcmds[] = {
    {"mControl", NULL, "Display momControlMsg_t data structure", print_mControl},
    {"FtHdr", NULL, "Display FT header data structure", print_ftheader},
    {"MR", NULL, "Display MR data structure", print_mr},
    {NULL}
    static const mdb_modinfo_t modinfo = {
    MDB_API_VERSION, dcmds, NULL
    const mdb_modinfo_t *
    mdbinit (void)
    return (&modinfo);
    }

  • Trying to print invitations on custom sized card stock - like a postcard

    Trying to print invitations on 8.5 x 5.5 card stock (like a postcard) and I cannot change the paper to a custom size.
    When printing from the software, Print Artist Platinum 24, which has the correct size paper, the printer thinks I want to print an envelope.
    How do I get the printer to print on the custom paper correctly?

    My custom settings.
    Please mark the post that solves your issue as "Accept as Solution".
    If my answer was helpful click the “Thumbs Up" on the left to say “Thanks”!
    I am not a HP employee.

  • Odd results when trying to print a booket

    I print a short run A5 booklet in house. It's printed on a Samsung CLP 610 colour Laser, which can duplex. The printer has it's own booklet protocol. The paper used is A4.
    If I produce pages in CS4 at A5 size and try to print them 2-up saddle stitch, they come out rotated and A6 size - like you were trying to print 4 up to A4. 
    The only way I can make it work is to produce the pages at A4 and use the printers booklet making facility. It then reduces them rotates them and imposes them in the right order. 
    This is OK as a work around, but I may want to go to an outside printer at some point and they will need A5 pages. 
    I must be missing something here - can anyone give me a blow by blow of how to achieve this while originating in A5 and using Indesign's page imposing?

    OK, I think I have it! Don't know if this will help anyone else,
    but this is what I did:
    Originate document as A5 facing pages.
    Print booket, 2 up saddle stitch
    Go to print settings and select the orientation with little man on his side, head to left(!)
    In the printer driver, set the orientation to A4 landscape and double side on the short edge.
    Result - success...
    Simples!

  • Trying to Print 2 books at once

    Hello, I am trying to print some 8 1/2 X 5 1/2 booklets on 8 1/2 X 11 Paper, but I am trying to print them so that when you cut the paper, you get two complete booklets, so one on the left and one on the right.
    any help would be appreciated. thanks

    If your printer doesn't have it's own two-up imposition capability, make a second file that's 11 x 8.5 in landcape orientation. Use the script in Stix's link above to place your orignal ID file twice, once positioned left, once positioned right. Export that to PDF and print. But are you sure you don't need to print on a larger sheet to allow for grind-off in the bindery?
    Note that Stix suggested placing a PDF of the original file, while I said the .indd. Aside from being able to make edits inthe original and have it update inthe 2-up copy, if necessary, without needing to remake the intermediate PDF, it turns out that placing the .indd file is a lot more efficient in terms of file size when exporting the 2-up PDF.

  • Trying to print in black only

    one cartriage depleted trying to print  in black only. setting is on gray scale still will not print

    Please read this post then provide some details.  What printer model? What operating system?  Are there any error messages on the printer or computer screen?
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • Trying to print picture package.

    I am trying to print a picture package ... once it is ready, I hit print and nothing happens.   I can  print a single pic, and could print a package last week.. I have tried again, and again, and am getting frustrated.  

    Though I can't tell you how to fix your problem, you can use a work-around to print your picture photo.
    You can easily save your picture package as a pdf file which you can print at your convience.
    install any print-to-pdf application.The application would register itself as a printer and whenever sent a page to print, would convert and save it as a pdf
    prepare your picture package and print it using the print-to-pdf application
    load the saved pdf file and print it
    Adobe has its own print-to-pdf application too. http://www.adobe.com/products/acrobat/print-to-pdf.html

  • I tried to print file from my ipad, but it did not work and i wonder why?

    Hello, I just purchased Photosmart Prem C310, set it up and have no problem to printed from my IPad, but today I tried to print some files and nothings work, no error messages either. Can you please help? Thanks, Siuway

    Hi Siuway,
    I'm sorry you're having this issue but I have some steps that might help.
    1.  Unplug your network's router, then the printer, and turn off the iPad (in that order).
    2.  After  about 60 seconds, plug in your router and when everything is ready (steady lights on the front), plug in the printer and turn on the iPad.
    3.  Try printing the same documents again.
    Please let me know if this works or not.  If it doesn't, I have some more steps we can try.
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • I tried to print airline tickets, it failed with the message insufficie​nt data, what do I have to

    I tried to print airline tickets from my iPad. It failed withe note insifficient data. What do I have to do

    Hey Jimlalak!
    Were you trying to print them from the Delta Airlines app? If so, can you print from any other apps? If you can print from other apps then you'll want to contact Delta, but if you can't print from any other apps let me know what error message you get and I'll try to help you out further. If you aren't printing from an app and are just printing from your computer, make sure you can print other documents and contact Delta for further help.
    Let me know if I can provide any more help!
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • Officejet pro 8500a I am trying to print from yahoomail.when I press print my IE disappears

    wth? trying to print for first timefrom my laptop.Press print and the whole Internet explorer just disappears...I think I set everything up fine.

    Have you tried printing from a different Program to verify its not just an IE issue. Try using notepad for a test print.
    I work for HP but my posts and replies are my own thoughts.
    If I have solved your issue, please feel free to provide kudos
    Make it easier for other people to find solutions, by marking my answer with Accept as Solution if it solves your issue.

  • Trying to create my own package

    So basically, I am trying to create my own package in WIndows.
    I have created the directory:
    C:\javaclasses\defnull\array
    and in that directory all I have is:
    intcheck.class
    All the class does is check how large an integer array is. Here is the uncompiled code:
    package defnull.array;
    public class intcheck {
         public static int inarray(int[] numbers){
              int i = 0;
              try {
                   for (i = 0; true; i++)
                        numbers[i] = numbers;
              catch (ArrayIndexOutOfBoundsException e){
                   return i;
    I opened up the cpanel, went to system, Advanced, Environment Variables, and added:
    ;C:\javaclasses
    onto the end of the classpath variable.
    Now, here is where I run into issues:
    Problem a:
    If I import the just the intcheck class, the program works fine:
    import defnull.array.intcheck; //  IMPORTING ONLY THE INTCHECK CLASS.
    public class tester {
         public static void main(String[] args){
    int[] hai = new int[18];
    int x = intcheck.inarray(hai);
    System.out.println(x);
    }and the output is "18".
    But if I try to import the entire folder "array" of classes, like this:
    import defnull.array.*; // IMPORTING ENTIRE FOLDER OF CLASSES
    public class tester {
         public static void main(String[] args){
    int[] hai = new int[18];
    int x = intcheck.inarray(hai);
    System.out.println(x);
    }I get these errors
    .\intcheck.java:3: class tester is public, should be declared in a file named tester.java
    public class tester {
           ^
    tester.java:9: cannot access intcheck
    bad class file: .\intcheck.java
    file does not contain class intcheck
    Please remove or make sure it appears in the correct subdirectory of the classpath.
    int x = intcheck.inarray(hai);
            ^
    2 errorsIt should just be importing the whole folder of classes, correct?
    I have even tried to create a new object for it:
    intcheck check = new intcheck();It just gives similar errors

    I dont understand why:
    import defnull.array.intcheck;
    would work but not:
    import defnull.array.*;
    It seems to be that specific class that is not working. i made another simple one to print out a string, which allowed me to use the wildcard.
    what is wrong with that class?

  • HP Photosmart 6510 gets a "Paper Mismatch" error trying to print on Avery return address labels

    I just bought the HP Photosmart 6510 yesterday.  I'm trying to print out return address labels to put on my daughters birthday party invitations, but the printer gives me a "Paper Mismatch" error.  This new printer replaced an HP PSC 1350 all-in-one, which printed these labels just fine.  I am using Pages on Mac OS 10.7 with the Avery 5195 template.  The labels are on standard US Letter (8.5" x 11") paper.  I'm really not sure what the problem is.
    Any help would be appreciated.  I have to get these printed out tomorrow!!!

    Hi barryofguilder I hope you are doing well and sorry to learn that you are having  this issue.
    Are you still experiencing this problem? If you are I will do my best to help you.
    Please read this Article  Click here. Let me know the out come  if you still need asssistance I will do my best to help you.  
    If you are not facing this issue any longer please take a little bit of you time and let me know it will be deeply appreciated.
    Best regards;
    RobertoR
    Remember ↓↓↓
    You can say THANKS by clicking the KUDOS STAR. If my suggestion resolves your issue Mark as a "SOLUTION" this way others can benefit Thanks in Advance!

  • 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

  • When trying to print to PDF from a sales program we use it keeps throwing errors

    When several people try to print to PDF from MAS90, it will save it and create a file as it normally does. However, it does not open in Acrobat 9 Pro as it normally does, and displays the famous error "Acrobat could not open 'xxxx.pdf' because it is either not a supported..."  Yet when you manually open the file from the file system, it opens just fine.
    So to rehash what I just said, when I print to pdf, it asks me where to save, the notification said the printing completed, adobe opens and displays error. If you click on the file, then the file opens just fine.
    However several other people do not have this error while trying to print to file from mas90. Does anyone out there have any idea what could possibly be causing this error to be displayed?

    Hi ftd12300,
    Are you saving the PDFs you're creating to a network drive or are they being saved locally? 
    Do you have this problem when creating PDFs from other applications such as Notepad?
    -David

  • Freezing when trying to print out PDF?

    Trying to print out PDF of Aperture 'book'. Each time it freezes on the same page ... this particular page is where I have one image stretched across two pages. Is this possibly a glitch with Aperture?
    Ben
    I've trashed my preferences several times; doesn't seem to help. I've also tried to use two copies of the same picture (right half on right page, left half on left page); but that doesn't work too well, as Aperture seems to want to favor one side or the other – and thus I can't adjust the two sides to match up properly.
    Any suggestions would be most appreciated, thank you,
    Ben

    Hi Allen,
    I'm all topped up, big graphics card, latest ver. of Tiger, permissions repaired every day or so. The mystery continues.
    I love the IDEA of the two page spread. Have longed for it in Pages, where I'm producing a whole series of books ... a lot of two page spreads (but done by using two versions of the same still).
    Thanks,
    Ben

Maybe you are looking for

  • Ipod touch 4th generation always zooming

    My ipod touch 4th generation is  always zooming ! Help please. many thanks.

  • Jasper reports help urgent

    Hi, I am getting an error while putting the image into jasper reports. the error goes in the folowing way. java.io.FileNotFoundException: D:\Tomcat5\webapps\Test (Access is denied)      at java.io.FileInputStream.open(Native Method)      at java.io.F

  • Creating a hover over in Keynote

    Is there any way to create a hover over when you move your mouse over a shape with text in? the closest solution I have found is to create an animation, which feels a little clumsy

  • Retrieve responsible resources for a role in cProjects

    Hey all, I would like to display a list of assigned/unassigned resources corresponding to a role for tasks grouped under individual projects. I am not sure how I can find a relationship between the roles and resources using the tables. It would be re

  • Applying old-time look to photo (or something)?

    I am trying to make my own baseball card and am at a loss to get the effect on the photo.  Here are two actual baseball cards (the 1988 Fleer set) with the look I am trying to achieve: I have put my photo inside of a rectangle with rounded corners, a