How do I print on the backside of a 5x7 folded greeting card?

I am trying to create a folded greeting card to print at home.  However, in creating a card and using the template, I cannot figure out how to put an image and text to print on the back of the greeting card.  The template does not allow me to add anything on the back.

I don't think it can be done with the supplied templates and when using the "Create Greeting Card" feature.
You can do it yourself by starting with a new image sized to the unfolded card, adding another page, and then adding your design elements to it.  You'll save it as a PSE project file, but then you'll have both sides that can be printed.
Ken

Similar Messages

  • How can I print only the body of the email without all the 'Received history'

    When I print a received email, the first page is a list of 'Received:' data and X- data.
    How do I print just the body of the message?
    John Sykes

    View (Alt-V) - Headers - Normal

  • How can I print ONLY the active document?

    Whenever I go to File/Print the darn PSE 9 program sends all of the working files in the bin to the printer. I've searched online for 2 hours now looking for an answer.
    I like to work with having several to many files in the 'bin' and prefer to only print the active file I'm currently working on without having to close the 'working files' before I can print. How can I print ONLY the active document or file in the project bin? Please help, I've upgraded from PSE 3 to PSE 9 and really like the updated features, but this one pain in the neck default is getting the best of me.

    Thanks for your help, that works nicely. It is good to have control of the printer again.

  • How can i print out the waveform chart?

      hello everybody,
    how can i print out the "waveform chart". can i do it just push the button. ( example; stop button is stop the program etc..)
    i checked the NI examples but i can't understand. i'm new to the Labview.
    pls help me.
    i added the my program
    look forward your reply
    regards from turkey...
    Message Edited by hknmkt on 05-29-2008 04:15 AM
    Attachments:
    29.05.2008_11.vi ‏37 KB

        hi jim,
    i tried the program but it's not running. When i run the program, it's print out without run the program
    i added the printed file.
    look forward your reply
    hakan
    Attachments:
    error8.JPG ‏8 KB

  • How can I print with the black and white cartridge only?

    I am trying to print using the black and white cartridge only because magenta is out of ink but I'm getting the following error message in HP Photosmart C7200 series print dialog:
    The printer is out of ink.
    The following ink cartridges are empty: Magenta. Replace these ink cartridges to resume printing.
    How can I print with the black and white cartridge only?
    Mac OSX 10.7.3
    HP Photosmart C7280 (7200 series)
    This question was solved.
    View Solution.

    I am absolutely disgusted by this; clearly a scam from HP to make more money by selling extra ink cartridges!!  I will make sure to never buy any products from the shoddy rip off merchants at HP ever again!!
    You should be ashamed!!

  • How can i print all the contect of the code in sapscript window ? ?

    how can i print all the contect of the code in sapscript window ? ?

    Hi,
    Do you mean that you want to print the ABAP code to SAPscrip form ?
    Svetlin

  • How can i print all the tab pages not just the first page (tab)

    how can i print all the tab pages not just the first page (tab)

    You would need to do this programmatically. Here's one way:
    Attachments:
    Example_VI_BD6.png ‏3 KB

  • How do I print just the text in a power point opened in preview

    How do I print just the text in a power point opened in preview

    In the front panel, right click on the listbox object and select create>attribute node.
    In the diagram click on the attribute node and select "Item Names".
    Connect the desired array of string to the attribute node.
    BigBen

  • How can I print only the attachment without the email content

    How can I print only the attachment without the email content. Every time I send to print, It prints the email itself with the attachment- can I cancel that?

    Hello Riklama,
    When you first open the attachment (e.g. on your phone) than you can mail only that attachment. Works fine with my husbands blackberry.
    Elsy

  • How do I  print out the attributes of objects from a  Vector?  Help !

    Dear Java People,
    I have created a video store with a video class.I created a vector to hold the videos and put 3 objects in the vector.
    How do I print out the attributes of each object in the vector ?
    Below is the driver and Video class
    Thank you in advance
    Norman
    import java.util.*;
    public class TryVideo
    public static void main(String[] args)
    Vector videoVector = new Vector();
    Video storeVideo1 = new Video(1,"Soap Opera", 20);
    Video storeVideo2 = new Video(2,"Action Packed Movie",25);
    Video storeVideo3 = new Video(3,"Good Drama", 10);
    videoVector.add(storeVideo1);
    videoVector.add(storeVideo2);
    videoVector.add(storeVideo3);
    Iterator i = videoVector.interator();
    while(i.hasNext())
    System.out.println(getVideoName() + getVideoID() + getVideoQuantity());
    import java.util.*;
    public class Video
    public final static int RENT_PRICE = 3;
    public final static int PURCHASE_PRICE = 20;
    private int videoID;
    private String videoName;
    private int videoQuantity;
    public Video(int videoID, String videoName, int videoQuantity)
    this.videoID = videoID;
    this.videoName = videoName;
    this.videoQuantity = videoQuantity;
    public int getVideoID()
    return videoID;
    public String getVideoName()
    return videoName;
    public int getVideoQuantity()
    return videoQuantity;
    }

    Dear Bri81,
    Thank you for your reply.
    I tried the coding as you suggested
    while(i.hasNext())
    System.out.println( i.next() );
    but the error message reads:
    "CD.java": Error #: 354 : incompatible types; found: void, required: java.lang.String at line 35
    Your help is appreciated
    Norman
    import java.util.*;
    public class TryCD
       public static void main(String[] args)
         Vector cdVector = new Vector();
         CD cd_1 = new CD("Heavy Rapper", "Joe", true);
         CD cd_2 = new CD("Country Music", "Sam", true);
         CD cd_3 = new CD("Punk Music", "Mary", true);
         cdVector.add(cd_1);
         cdVector.add(cd_2);
         cdVector.add(cd_3);
         Iterator i = cdVector.iterator();
         while(i.hasNext())
           System.out.println( i.next() );
    public class CD
       private String item;
       private boolean borrowed = false;
       private String borrower = "";
       private int totalNumberOfItems;
       private int totalNumberOfItemsBorrowed;
       public CD(String item,String borrower, boolean borrowed)
         this.item = item;
         this.borrower = borrower;
         this.borrowed = borrowed;
       public String getItem()
         return item;
       public String getBorrower()
         return borrower;
       public boolean getBorrowed()
         return borrowed;
       public String toString()
          return System.out.println( getItem() + getBorrower());

  • How do I print out the value returned by a method in main??

    I'm a total newbie at java, I want to know how I can print out the value returned by this function in the "Main" part of my class:
    public int getTotalPrice(int price)
    int totalprice=price+(price*0.08);
    return totalprice;
    I just want to know how to print out the value for total price under "public static void main(String[] args)". thanks in advance,
    Brad

    Few ways you could do it, one way would be to create an instance of the class and call the method:
    public class Test
        public double getTotalPrice(int price)
            double totalprice = price + (price * 0.08);
            return totalprice;
        public static void main(String[] args)
            Test t = new Test();
            System.out.println(t.getTotalPrice(52));
    }Or another would be to make getTotalPrice() static and you could call it directly from main.

  • If I put an item in clippings that I reduced from a larger article, how do I print just the clippings excerpt?

    If I put an item in clippings that I reduced from a larger article, how do I print just the seperate clippings excerpt?

    Hi Mark,
    I think one thing you may missing is an understanding of the purpose and operation of the mail merge process.
    Mail merge is used to 'personalize' a preset document using information from the records of a database. Any content that will vary from copy to copy of the document must be imported from the database. Every item that is specific to the copy being sent to a specific individual must be included in the row of the table containing the record for that individual.
    For invoices, unless you are sending an invoice for the same item(s) at the same price(s), you'll need to either include the items and prices in the database and merge them into the invoices, or use the merge document to create a document containing an empty invoice for each customer, containing only the customer identification information, and the company information (taken from the card marked "My Card" or "Me"), then fill in each invoice manually.
    The Pages '09 template named "Invoice" might word with the second approach, depending what type of document the merge to file option produces. If it's a Pages document, the table, containing the invoice data, will likely be useable; if it's a pdf document, the table may be editable (or not), but will lose its ability to calculate the tax amounts and totals.
    To produce an individual invoice from this template:
    Open the template.
    Drag the recipient's card from Contacts/Address Book and drop it on one of the fields in the first block of address text.
    Enter the project information in the second block of text.
    Check the Company block in the left margin for correctness.
    Enter the Invoice items and quantities in the table.
    Print (or Print to PDF) the document and mail it.
    Regards,
    Barry

  • How can i print on the both sides of the paper on printer 5520

    how can i print on the both sides of the paper on printer 5520 when printing too many papers?

    Hi hamad5520
    I have included a document for two sided printing.
    http://h10025.www1.hp.com/ewfrf/wc/document?cc=us&dlc=en&docname=c03476083&lc=en&product=5157536&tmp...
    Hope this helps.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • HT4356 I don't have wireless printer. How can I print out the document?

    I don't have a wireless printer. How can I print out the document from regular printer?

    iOS AirPrint Printers  http://support.apple.com/kb/HT4356
    How to Print from Your iPad: Summary of Printer and Printing Options
    http://ipadacademy.com/2012/03/how-to-print-from-your-ipad-summary-of-printer-an d-printing-options
    Print from iPad / iPhone without AirPrint
    http://ipadhelp.com/ipad-help/print-from-ipad-iphone-without-airprint/
    How to Enable AirPrint on a Mac and Use Any Printer
    http://ipadhelp.com/ipad-help/how-to-use-airprint-with-any-printer/
    iPad Power: How to Print
    http://www.macworld.com/article/1160312/ipad_printing.html
    Check out these print apps for the iPad.
    Print Utility for iPad  ($3.99) http://itunes.apple.com/us/app/print-utility-for-ipad/id422858586?mt=8
    Print Agent Pro for iPad ($5.99)  http://itunes.apple.com/us/app/print-agent-pro-for-ipad/id421782942?mt=8   Print Agent Pro can print to many non-AirPrint and non-wireless printers on your network, even if they are only connected to a Mac or PC via USB.
    FingerPrint turns any printer into an AirPrint printer
    http://reviews.cnet.com/8301-19512_7-57368414-233/fingerprint-turns-any-printer- into-an-airprint-printer/
     Cheers, Tom

  • How do I print all the open tabs in Photoshop, without clicking on each and printing manually?

    How do I print all the open tabs in Photoshop, without clicking on each and printing manually?

    If the song are part of an album, the album should have a cloud icon for downloading it in full. If they are separate tracks (not in the same album) you will have to download individually.

Maybe you are looking for

  • How to restore my iPhone data after mixed with my husband iTunes

    how to restore my iPhone data after mixed with my husband iTunes

  • My mac is trying to download security software, do I need it?

    I am a new mac user. My mac started downloading security saying it was necessary to remove whatever I had been infected with. I stopped the download. I bought a mac because I was told I did not  need to worry about security. Do I need security? Is th

  • Safari acting up after Lion update

    After I updated to Lion... Safari is acting very strange. On each startup... all windows from last launch open. Also, even after setting homepage in preferences, Safari opens to last page in history. All new windows open very small . Any fixes for th

  • Sending email by HTML

    Hi have been using the following script successfully which produces a plain text email in my drafts folder for Microsoft Entourage: set strRecipientAddr to "[email protected]" -- 'To:' recipient. set strRecipientName to "email" set tContent to "Dear

  • Parallel Insert statements (bulk) to the same table

    Hi, I am in need to insert set of insert statements 50000+ in to table and wanted to split them in to tow halves and run in two SQL worksheets. Note that both will try to insert on the same table. Please let me know whether it is advisable or tell me