Need help for printing/exporting in the right format

Hi,
i'm layouting a magazine for my graduation class.  And I almost finished it, but I've got a problem with printing it like I want it to be printed. I use the newest Trial Version of Adobe InDesign. The format of the magazine is A4, but when I export it as PDF (printing is the same) two pages (each A5) are exported on one horizontal A4 page. I want to have each page on one A4. Can somebody help me and say what I have to do, to get it work in my way?
I hope you can help me, and I'm sorry if this is a silly question, but InDesign is a very complicated Software
Thanks

Exporting to PDF shouldn't resize the page. Does the exported PDF look the way you want it to?
Here's all you need to know to export the file:
File > Adobe PDF Presets > (pick a format - if you're printing from a desktop printer High Quality Print is a good choice)
It might give you a warning about Transparency Blend Space which you can change under Edit > Transparency Blend Space
Make sure spreads is not checked.
If the problem is happening from Acrobat, check all of the settings in your print dialogue.
Good luck!

Similar Messages

  • OBIEE:Need formula for all characters to the right of the right-most space

    Hi:
    I need to extract the right-most word from a field that could have 2-3 spaces. Example: "Administration Main Boston" = "Boston"
    Thanks-
    Charlie Epes
    Buffalo, NY

    Okay, this took awhile, but it was a nice challenge. The following will work for CHAR fields that have up to 3 spaces. It will extract and display the last word that follows the last space. Again, this was designed to work for words with no spaces, one space, two spaces, and 3 spaces. Here is the code:
    RIGHT(RIGHT(RIGHT(TABLENAME.COLUMN_NAME,LENGTH(TABLENAME.COLUMN_NAME) - POSITION(' ' IN TABLENAME.COLUMN_NAME)),LENGTH(RIGHT(TABLENAME.COLUMN_NAME,LENGTH(TABLENAME.COLUMN_NAME) - POSITION(' ' IN TABLENAME.COLUMN_NAME)))-POSITION(' ' IN RIGHT(TABLENAME.COLUMN_NAME,LENGTH(TABLENAME.COLUMN_NAME) - POSITION(' ' IN TABLENAME.COLUMN_NAME)))),LENGTH(RIGHT(RIGHT(TABLENAME.COLUMN_NAME,LENGTH(TABLENAME.COLUMN_NAME) - POSITION(' ' IN TABLENAME.COLUMN_NAME)),LENGTH(RIGHT(TABLENAME.COLUMN_NAME,LENGTH(TABLENAME.COLUMN_NAME) - POSITION(' ' IN TABLENAME.COLUMN_NAME)))-POSITION(' ' IN RIGHT(TABLENAME.COLUMN_NAME,LENGTH(TABLENAME.COLUMN_NAME) - POSITION(' ' IN TABLENAME.COLUMN_NAME)))))-POSITION(' ' IN RIGHT(RIGHT(TABLENAME.COLUMN_NAME,LENGTH(TABLENAME.COLUMN_NAME) - POSITION(' ' IN TABLENAME.COLUMN_NAME)),LENGTH(RIGHT(TABLENAME.COLUMN_NAME,LENGTH(TABLENAME.COLUMN_NAME) - POSITION(' ' IN TABLENAME.COLUMN_NAME)))-POSITION(' ' IN RIGHT(TABLENAME.COLUMN_NAME,LENGTH(TABLENAME.COLUMN_NAME) - POSITION(' ' IN TABLENAME.COLUMN_NAME))))))
    To use this, do this:
    1) Paste the code in Notepad.
    2) Do a "Replace All" and substitue TABLENAME.COLUMN_NAME for "- Employee"."CRM Employee Branch"
    3) Copy the transformed code and paste it in the fx of a dummy column in your report.

  • I need help for printing service in Java

    Hello :
    I need to print some file from java program .
    I did every thing , but when i run the program : it didn't return any printer as print service from the system, although I install 2 printers in my system.
    by the way : i use Windows XP

    I was in a rush this morning and forgot my crystal ball. Please post your code and remember to use the code tags.

  • I need help to convert photos in the .swf format to a format that will open on iOS

    I need help converting photos in the .swf format to a format that will work on my Mac.  Thanks

    SWF is a Flash file that should be able to be opened with your web browser on your Mac. Probably not on iOS though.
    You will likely need to find the source file for the application that created the SWF and the image will be in that. You could then export/extract the image and have it as a stand alone file.
    It does look like there are applications that can do what you are looking for though: https://www.google.com/search?q=SWF+to+JPG

  • Need help for printer application status

    Hi,
    I am using jdeveloper11.1.1.2.0.Actually standalone java application,I want to know status of the printer,If there is no paper inside printer then message should be display no paper in the printer,
    if i did printout but after 2 second i want to cancel the print then message should be also display ...
    my code is below..
    public void invokePrintJob(ActionEvent actionEvent) {
    // Add event code here...
    PrintService[] printers = PrintServiceLookup.lookupPrintServices(null, null);
    Boolean printerFound = false;
    for (int i = 0; i < printers.length && !printerFound; i++) {
    if (printers.getName().equalsIgnoreCase(getSelectedPrinter())) {
    printerFound = true;
    PrintService printer = printers[i];
    UploadedFile file = getTheFile();
    String fileName = getTheFile().getFilename();
    // String file = getTheFile();
    //PrintJobAdapter pr = new PrintJobAdapter();
    InputStream input;
    try {
    input = new BufferedInputStream((file.getInputStream()));
    Doc doc = new SimpleDoc(input, DocFlavor.INPUT_STREAM.PNG, null);
    PrintRequestAttributeSet attrs = new HashPrintRequestAttributeSet();
    attrs.add(new Copies(2));
    attrs.add(OrientationRequested.LANDSCAPE);
    JobName name = new JobName(fileName ,null);
    attrs.add(name);
    DocPrintJob job = printer.createPrintJob();
    PrintJobWatcher pjDone = new PrintJobWatcher(job);
    job.print(doc, attrs);
    pjDone.waitForDone();
    System.out.println("--------jobRunning-end----------");
    input.close();
    } catch (PrintException e) {
    System.out.println(e.getMessage());
    addFacesErrorMessage(e.getMessage());
    } catch (FileNotFoundException e) {
    System.out.println(e.getMessage());
    addFacesErrorMessage(e.getMessage());
    }catch (IOException ioe) {
    // TODO: Add catch code
    ioe.printStackTrace();
    public static class PrintJobWatcher {
    // true iff it is safe to close the print job's input stream
    boolean done = false;
    PrintJobWatcher(DocPrintJob job) {
    // Add a listener to the print job
    job.addPrintJobListener(new PrintJobAdapter() {
    public void printJobCanceled(PrintJobEvent pje) {
    System.out.println("-------printJobCanceled--------");
    allDone();
    public void printJobCompleted(PrintJobEvent pje) {
    System.out.println("------printJobCompleted---------");
    allDone();
    public void printJobFailed(PrintJobEvent pje) {
    System.out.println("----------printJobFailed-------");
    allDone();
    public void printJobNoMoreEvents(PrintJobEvent pje) {
    System.out.println("--------printJobNoMoreEvents---------");
    allDone();
    @Override
    public void printJobRequiresAttention(PrintJobEvent pje) {
    System.out.println("-----------printJobRequiresAttention----------");
    allDone();
    @Override
    public void printDataTransferCompleted(PrintJobEvent pje) {
    System.out.println("-------printDataTransferCompleted---------");
    allDone();
    void allDone() {
    // System.out.println("---------------");
    synchronized (PrintJobWatcher.this) {
    done = true;
    PrintJobWatcher.this.notify();
    public synchronized void waitForDone() {
    try {
    while (!done) {
    wait(1000);
    } catch (InterruptedException e) {
    e.printStackTrace();
    Please help me..

    Help with what? What's the actual problem?
    As far the code looks horrible. This kind of logic belongs in a fitler rather than a backing bean. You use empty strings instead of nulls. You stores passwords plain and unhashed in DB. You compares the password in Java instead of in DB. You stores password in a cookie. Your query is unsafe for SQL injections. You're reloading the driver class everytime when you acquire the connection. You're leaking DB connections. The application will crash sooner or later when the DB run out of connections.
    Is that all what you need to know?

  • Need Help for Blackberry8700g

    I need help for Blackberry8700g, It is the error message Java.lang.outofmemory Error. I can not make even phone calls. After reset it is same message pop up and does not off the power jum error523 

    You are in line to wipe and reload the OS on the BlackBerry.
    Follow the directions here and you will be fine.
    http://www.blackberryfaq.com/index.php/How_do_I_wipe_the_BlackBerry_using_Jl_Cmder%3F
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I need help for Blackberry8700g

    New User! I need help for Blackberry8700g; It is the error message Java.lang.outofmemory Error. I can not make even phone calls. After reset it is same message pop up and does not off the power jum error523  100408 .I tried How_do_I_wipe_the_BlackBerry_using_Jl_Cmder%3F but it does not allow me to log in.Thanks,Rehan

    check this instruction:
    http://crackberry.com/blackberry-101-lecture-12-how-reload-operating-system-nuked-blackberry

  • I Need Help for the popup message every time I go to safari: "Warning! Old version of Adobe Flash Player detected. Please download new version."???

    I Need Help for the popup message every time I go to safari: "Warning! Old version of Adobe Flash Player detected. Please download new version."???

    If you are talking about Safari on the iPad, there is no version of Adobe Flash for iOS and there never has been. Clear Safari, close the app and reset the iPad.
    Go to Settings>Safari>Clear History and Website Data
    In order to close apps, you have to drag the app up from the multitasking display. Double tap the home button and you will see apps lined up going left to right across the screen. Swipe to get to the app that you want to close and then swipe "up" on the app preview thumbnail to close it.
    Reset the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    If you are talking about Safari on your Mac, you are in the wrong forum. But I would still clear the cache, quit Safari and restart the Mac.

  • I have problem with buying in games , I got the massage that the purchased can not be completed , please contact iTunes support.. I need help for my case please

    I have problem with buying in games , I got the massage that the purchased can not be completed , please contact iTunes support.. I need help for my case please

    http://www.apple.com/support/itunes/contact/

  • Need help for the $200 promo rebate for trade-in of I Phone 4

    Need help for the $200 promo rebate for trade-in of I Phone 4.  Unable to preregister when I ordered the new 6  in September.  Now can not contact VZW recycle program regarding.

    When I ordered my phone on Sept. 13th in a Verizon store, I had to ask the salesman how I went about getting the $200 rebate. He said shipping materials would come with the new phones. When I received the confirmation e-mail of my order, it contained a link for the rebate. Fortunately I clicked on the link, filled out the form online, and received the packing materials to send my phone in shortly after. My phones came in on Oct. 14th and I sent 3 of them back. So far I have received a gift card for $200 for 2 of the phones; the other is showing not received. I don't know what your situation is, but I think the promotion ended Oct. 15th. If I had listened to the salesman I think I would be out of luck as well. I hope I am wrong for your sake.

  • Hello i need help for adobe creative cloud...when i launch application adobe  cc 2014  for photoshop or illustrator.....the apps launch and i can see the workspace and menu bar  for a while and  suddenly this application close automatic

    hello i need help for adobe creative cloud...when i launch application adobe  cc 2014  for photoshop or illustrator.....the apps launch and i can see the workspace and menu bar  for a while and  suddenly this application close automatic

    Sign in, activation, or connection errors | CS5.5 and later
    Mylenium

  • Hi, I need help for my notebook Macbook Pro - I turned on the notebook and the screen look like start but did not start nothing, the screen froze and continuing load, load and never stop.

    Hi, I need help for my notebook Macbook Pro - I turned on the notebook and the screen look like start but did not start nothing, the screen froze and continuing load, load and never stop

    screen look on

  • Need help , when we turn on the mac i can hear the fan and there is a picture of the world flashing for about a minute or 2 on start up . But the fan I can hear non stop ?

    need help , when we turn on the mac i can hear the fan and there is a picture of the world flashing for about a minute or 2 on start up . But the fan I can hear non stop ?

    A flashing question mark or globe appears when you start your Mac

  • I have no share tab to share videos and get them in the right format for posting on youtube, is this because i have got the trial version, someone please help.

    I cant export my movie, as there is no share tab and when i go file>share it isn't in the right format what should i do?

    The trial version of FCP X is the same as the paid version - it just stops working after 30 days, so that's not your problem.
    What version of FCP X is it, and what is the spec of the footage you're editing?
    (Open it in QuickTime and press Cmd+I to show the spec in the Inspector, then post back with the full details or a screen grab).
    Andy

  • I own an iPod Classic.  In iTunes, some podcast videos cant be played on teh iPod, so I set it to convert the video to the right format for the iPod.  It used to work perfectly, but now for some reason, it doesnt convert properly!  When I play the video,

    I own an iPod Classic.  In iTunes, some podcast videos cant be played on teh iPod, so I set it to convert the video to the right format for the iPod.  It used to work perfectly, but now for some reason, it doesnt convert properly!  When I play the video, it is just a white screen, but the sound can be heard.  Can anyone help??????

    Your source video file is probably muxed.
    Neither QT Pro or iTunes has the ability to successfully encode a muxed video file with audio. You'll end up with video and no audio.
    See: iPod plays video but not audio of some exported files.
    You'll need to use some other third-party software to do the conversion. There's a handful of software available. Just search the forums and you'll find many titles mentioned.
    Try MPEG Streamclip.

Maybe you are looking for

  • Poor Quality Videos in RH10

    I need to publish some software simulations in RH10 Webhelp, and am having a great deal of difficulty. The only ones that seem to work are the videos I create from scratch in Captivate - these publish as .SWF files. I began with an MP4 file, created

  • AND OPERATION  AT PROCESS CHAIN

    Hi bw experts,          I am facing a problem  frequently. Daily a process chain failed frequently at the AND operation.  What is the exactly the situation is before the AND operation there are three  local chains are there and after the  AND operati

  • Regarding LT and multiple LTS

    Hi Experts, What is the difference between logical table and logical table source in BMM layer in which scenarios we have to add multiple LTS to the logical table in BMM layer can any one make me clear regarding this. Thanks in Advance Edited by: Raf

  • Do I need to run anti-viral program after trying to open a spam attachment?

    I was tricked by a spam email and clicked on a link, which did not open.  I've been advised to delete the email (done), change my password (done), and run anti-viral program (not done, and never have).  What, if anything, should I do? 

  • MRP - MD06 - messages 06 & 07 dont show up for certain materials

    Hello guys! i have detected an issue at my system in transaction MD06 for certain materials. For MRP list a message 06 or 07 in many cases are not shown. Messages meanings: 06     Start date in the past 07     Finish date in the past This happens if