Flipped off

I have the biggest problem printing whenever I make pdfs and then flip them in Acrobat. No matter what the orientation I cant get them to print out right on the an 11 x 17 printet. I have two 8.5 x11 pages. Want to print as a spread. I distilled them as 2 portrait pgs as a spread to 17x11. When I open in acrobat they are as spreads but orientation is vertical. I want them horozontal. I flip them then try to print and can not get the spread to print on the 11 x17 no matter how I shrink and or  auto-rotate & center. Please tell me why. I need to know how to do this bc I get spreads in like this that I did not create and have to flip them bc that is the way the mags request the orientation. Thanks.

no, that's not what Im trying to do at all, Mike. Just want the whole spread to print on 11 x17 same as when Im printing spreads out of the page layout program-either Quark or InDesign. I am not trying to make printer spreads-just get the two 8.1/2 x 11 pages to print on the 11 x 17 page.

Similar Messages

  • My HP2311 will not keep the detect display settings, it flips off and I cannot see my screen and have to "detect" over

    My mac mini with 10.9.5 will not keep my monitor on the proper setting.  I have to go into display settings and "detect monitor"  again and again.  How do I lock it in place?  Does anyone know why the monitor detection keeps "slipping off".  thank you in advance  Deb Mc

    I forgot to mention my monitor is an HP2311 and it always kept its setting until the most recent operating system update. 

  • I have purchased app- Blackjack Pro by G3 Studios.  It will not work.  It comes up and then immediately quits.  I called Apple Support  They said to delete.  OK I deleted and took check mark off the computer I tunes screen.  I  tried to re-purchase, but i

    I have purchased Black Jack Pro - G 3 Studios.  It will not work.  It come up but immediately flips off.  I called apple Support and they said delete it and re-down load.  I have tried that many times.  When I go to App store and try to re-download - it comes up "Downloaded" - as in you alreadly have purchased it.  Always before on other Apps, I just delete and repurchase and when it comes up OK.  But this one comes up "Downloaded", so it will not let me repurchase it.
    It still does not work- How do I get it to work?

    Hi Ken,
    Wow, I've logged into adobe and never seen your response until now.
    I need to make the forums more of a daily stop I guess.
    Thank you for your response, When I go to the Archives, it states I have none. In addition, previously when I'd tried to move items to the archive, they just disappeared  
    Currently my desktop is not connecting at all, Everytime I connect, it's states "We have now logged you out" and requests I login again.
    I have of course rebooted,
    Gone into taskmanager, killed all the relevant threads,  tried again to login through the desktop, no luck, I'll have to uninstall it, make sure the threads are killed, then reboot it and then reinstall it, but I've not had the time to do that.
    On another note, and just as a point of reference, myself, personally, I hate these "cloud" file repositories (not to be confused with adobe cloud services which I love) but the file repositories themselves imho, are a blackhole of resource usage when one doesn't/isn't using them,
    Is there a way we can use it more of a "ftp" sort of thing, when I want to I can  put files there?  There is no way to "Download" the repository, no way to download the folders.. only individual files and then it takes I think three different steps before the download starts.. I find this very inhibiting.  Just an fyi. for what it's worth.
    Please, feel free to contact me,
    I'm on g+ chat [email protected]

  • Page flipping with Volatile Image.  Need help :)

    Hello all,
    Could someone point me to a nice tutorial which specifically addresses setting up page flipping with Volatile Images as the buffer? I haven't had any trouble with the generic BufferStrategy way of doing things, but it looks like the absolute fastest way to go is page flipping. Any info on this subject would be appreciated. I am a student who is making his first attempt at setting up a fullscreen video game...well if you want to call it that! :) I am shooting for Pong as a first project!
    Please feel free to send me the info at [email protected], and thanks much.
    Kmyers

    If you're using Windows, then your picture is already most likely
    being stored as volatile. You should look for an article on the
    web discussing Java rendering internals as of 1.4 do a search for
    "java automatic images" you'll probably find some useful info.
    But if you insist you can just fire up a debugger and
    play with it until you finally figure out what it's doing..
    You just need to do a createVolatileImage as opposed to createImage
    when creating your buffers.. make sure to use
    createBufferStrategy(2) (or if you want to be totally sure print out
    the capabilities of the buffers available and select one that you
    know for sure supports back and front buffers that are "truly"
    volatile..
    it turns out in my experience on win2k that using normal "automatic"
    images via Component.createImage() are faster than volatiles perhaps
    because I tend to do alot of scaling ops which are not as of yet
    accelerated..
    here's some stuff that might help you:
    good luck!
    static public void printBufferCapabilities(BufferCapabilities bc) {
    System.out.println("Printing Buffer Capabilities: ");
    if (bc.isFullScreenRequired())
    System.out.println("Full screen is required");
    else
    System.out.println("Full screen is required");
    if (bc.isMultiBufferAvailable())
    System.out.println("MultiBuffering is available");
    else
    System.out.println("MultiBuffering is not available");
    if (bc.isPageFlipping())
    System.out.println("PageFlipping is available");
    else
    System.out.println("PageFlipping is not available");
    ImageCapabilities ic = bc.getBackBufferCapabilities();
    if (ic.isAccelerated())
    System.out.println("BackBuffer is accelerated");
    else
    System.out.println("BackBuffer is not accelerated");
    if (ic.isTrueVolatile())
    System.out.println("BackBuffer is truly volatile");
    else
    System.out.println("BackBuffer is not truly volatile");
    ic = bc.getFrontBufferCapabilities();
    if (ic.isAccelerated())
    System.out.println("FrontBuffer is accelerated");
    else
    System.out.println("FrontBuffer is not accelerated");
    if (ic.isTrueVolatile())
    System.out.println("FrontBuffer is truly volatile");
    else
    System.out.println("FrontBuffer is not truly volatile");
    static public void printImageCapabilities(ImageCapabilities ic) {
    System.out.println("Printing Image Capabilities: ");
    if (ic.isAccelerated())
    System.out.println("Image is accelerated");
    else
    System.out.println("Image is not accelerated");
    if (ic.isTrueVolatile())
    System.out.println("Image is truly volatile");
    else
    System.out.println("Image is not truly volatile");
    static public void printFlipContents(BufferCapabilities.FlipContents flip) {
    if (flip == null) { System.out.println("Dude your flip is flipping NULL!"); return; }
    if (flip.equals(BufferCapabilities.FlipContents.BACKGROUND))
    System.out.println("Flip Contents are BACKGROUND");
    else if (flip.equals(BufferCapabilities.FlipContents.COPIED))
    System.out.println("Flip Contents are COPIED");
    else if (flip.equals(BufferCapabilities.FlipContents.PRIOR))
    System.out.println("Flip Contents are PRIOR");
    else if (flip.equals(BufferCapabilities.FlipContents.UNDEFINED))
    System.out.println("Flip Contents are UNDEFINED");
    else System.out.println("Where the hell did you find this flipping Flip Contents, now flip off!");
    static public void printElapsedTime(String desc, long start, long stop ) {
    long s = stop - start;
    double elapsed = (double) s/1000;
    System.out.println("The elapsed time for "+desc+" :"+elapsed);
    public static void chooseBestDisplayMode(GraphicsDevice device) {
    DisplayMode best = getBestDisplayMode(device);
    if (best != null) {
    device.setDisplayMode(best);

  • Thumbnail Images in FCS

    Hi all,
    I've been scratching my head (or more recently, beating it against my keyboard - fortunately they now make them in aluminium, good for the company's expenditure, bad for my head), trying to create some nice quality .jpg thumbnail stills through FCS. I just cannot seem to get them to come out the way I want them to, and I find the settings to be about as user-friendly as an alarm button, hidden behind bullet proof glass, with a sign saying "break glass to sound alarm".
    *What I want to achieve:*
    I need to create thumbnail images of about 50,000 video clips. These need to go on our website, and should be .jpgs sized at 200x113. Also, the source (dv clips) should be cropped a few pixels, to eliminate that nice fuzzy dv edge. These should then end up on our site via FTP (this last bit, I reckon I can do).
    *How I've been failing to do it*
    I think it's something to do with the parameters I'm using. Here's what I've been doing thus far in Administration>Transcode Settings>New preset>Parameters:
    Source Pixel Aspect Ration: Pal 16x9
    Source Offset: 3/2 (is this cropping?)
    Source Image Size: -blank-
    Destination Pixel Aspect Ratio: Square (HD)
    Image Size: 200/113
    Framce Size: -blank-
    Offset: -blank-
    Frame Number: 1
    Rotate/Flip: -off-
    The images that are produced are, well, quite nasty little things that are the wrong shape and sized and uncropped. I've looked in the documentation and can't seem to find what the above parameters mean.
    Any help and guidance would be very much appreciated.
    Ben
    Message was edited by: BenKellySkyworks

    Crystal does not have the bility to use thunbnails. But that would be a great enhancement. I'll add it to the Enhancement request database.

  • IPAD mini - emails going to outbox for 2 weeks - I need to send them

    I have just spent three hours trying to pinpoint problem I have had with my iPAD mini for about two weeks - - 15 messages sitting there in outbox - - I get that smtp.verizon.net - which I understand is correct.  It does seem to be affected by any other outgoing mail that is direct to vendor - This was bought while grandson is in hospital for a lengthy time - but except for GPS it is too much of a pain too use.  I start an email   to Apple on it - and it flips off - - I have both the wi-fi and cellular to assure I would have connection at all times.  I did not anticipate the ipad mini having nerve attacks - I do wonder if Verizon has started something new  in their system - well I started at 9:00 a.m. it is almost 1:00 p.m.

    I believe that your post could use a bit of clarification. But check your outgoing mail server setting and make sure that you password and username have been entered in there even if it says that it is optional for you.
    Settings>Mail, Contacts, Calendars>Your email account>Account>Outgoing mail server - tap the server name next to SMTP and check in the primary server and make sure your username and password are entered and correct.

  • Is Firewire Netboot possible?

    I've got several Netboot server systems (10.5 and 10.6), and would like to offer Netboot across fw0 (firewire port) for various unrelated reasons.
    The Firewire port is set to properly use a coherent IP #, it is on same subnet, it is enabled on Netboot (and I've got a good netboot image which is currently in use across other NICs), but I can't seem to target it for booting.
    I've tried this on both Intel and Motorola systems, but neither is able to target it for boot OR see it in the "Startup Disk" PrefPanel.
    In tracking it on logs, I have seen DHCP Discovery in action via a particular system's MAC address, but the system (server) never responded or never handed out an IP.
    Does the pixiboot sequence toss out a request that is flipped off in OSX Server? Is this simply NOT possible?
    I've found several threads questioning this, none actually answered, and all 'locked'. From other locked threads, it would seem that this may be a taboo topic, or is it just a great unknown??

    Hi
    PXE Boot is not used on the platform. NetBoot uses BSDP, DHCP & TFTP.
    http://manuals.info.apple.com/enUS/SystemImagev10.6.pdf
    Page 45 - "Ethernet Support on Client Computers"
    You may want to read these as well?
    http://en.wikipedia.org/wiki/BootService_DiscoveryProtocol
    http://www.afp548.com/netboot/mactips/bootpd.html
    http://support.apple.com/kb/HT4187?viewlocale=en_US
    Tony

  • I have AirPort Extreme connected for Wi-Fi.

    I have had great luck with my AirPort Extreme to run internet on my Mac-Book Pro until the power to the unit was accidentally flipped off. Now, the modem is connected and the unit has a green light, but I can't connect to the internet on any computer in the house. I have unplugged and checked with the cable company, but it still is not connecting. Any advice?

    I would recommend that you do the following as a minimum:
    Power-down the modem, AirPort base station, and computer(s).
    Power-up the modem; wait at least 10-15 minutes to allow it adequate time to initialize.
    Power-up the AirPort base station; wait at least 5-10 minutes. Note: The AirPort's status light may continue to flash amber after it has intialized. That is because, there may be some additional configuration items necessary, like setting up wireless security, before the overall setup is completed to get a green status.
    Power-up your computer(s).
    Network clients, connected to the base station either by wire or wireless, should now be able to access the Internet through the ISP's modem. Once Internet connectivity has been verified, you can use the AirPort Utility to configure the base station for wireless security and any other desired options. Please post back your results.

  • Finance Interactive Chart is blank in Firefox (for both Google and Yahoo Finance)

    I've tried updating Java, Flash, Silverlight (it would really be nice to know for sure what Google and Yahoo Finance use). But they all were updated. I cleared my cache, tried restarting in safe mode (which is ironic because if the plugin isn't loaded, how is the site going to display the chart), hit Ctrl+F5, flipped off the monitor, but nothing is allowing the charts to display. I had previously allowed Adobe to update Reader and restart my computer, which I think led to the blank financial charts. Now I have to use Chrome or IE.

    I've been using Firefox almost exclusively for years and didn't have problems with the Yahoo! Finance interactive charts until version 15. I just updated to 16.0.1 last evening and it didn't fix anything. I've updated Flash, tried <ctrl>f5 - nothing helps. Something was done in a recent update to create the problem. It would certainly be nice if this was undone and fixed.
    Actually, I wouldn't mind downgrading a couple versions. I didn't have any of the problems I'm having now. I'm getting to the point that if something doesn't look right, I'm bouncing over to Chrome.
    Please don't let FF slide into the same mess as IE!

  • Append a file

    Dear all
    i'd like to append the txt content of a file called file2.txt to the end of a file called file1.txt. I used an FileOutputStream with the boolean argument as "true". But in the end, the content of file1.txt is erased/overwritten, just the lines of file2.txt are in file1.txt. Please can you tell me why my code isn't working the way i want?
    public void doFile1 (String fileName) throws Exception {
              File file = new File(fileName );
              FileOutputStream fos = new FileOutputStream(file);
              PrintStream p = new PrintStream (fos);
              p.println ("Hi, i'm the first line");
              p.println ("and i'm, the second one, but still from file1.txt!");
              p.flush();
         public void doFile2 (String fileName) throws Exception {
              File file = new File(fileName);
              FileOutputStream fos = new FileOutputStream(file);
              PrintStream p = new PrintStream (fos);
              p.println ("And i'm a line from the second file. HA!");
              p.println ("fajfdsklfdl?sjdskjf?kl file2.txt");
              p.flush();
         //write Vector to file
         public void vectorToFile (String fileName, Vector v)  {
              try {
                   Enumeration e;
                   File file = new File(fileName);
                   FileOutputStream fos = new FileOutputStream(file, true);  //has to be written at the end of file
                   PrintStream p = new PrintStream (fos);
                   e = v.elements();
                   int size = v.size();
                   while (e.hasMoreElements()) {
                        String s = (String) e.nextElement();
                        p.println (s);
                        p.flush();
                        //this.headerPrintStream = p;
              catch (FileNotFoundException f) {
                   System.out.println ("!!!!!!error in writing temporary header file");
              //return this.headerPrintStream;
         public void appendFiles () throws Exception {
              doFile1 ("file1.txt");
              doFile2 ("file2.txt");
              Vector v = new Vector ();
              v = readFile ("file2.txt");
              vectorToFile ("file1.txt", v);

    1) you should call p.close() instead of p.flush()(to
    both flush and close the file).
    2) these lines:
    Vector v = new Vector (); // why allocate a Vector
    here...
    v = readFile ("file2.txt"); // just to let it be
    garbage collected by dropping the reference here
    should just simply be:
    Vector v = readFile("file2.txt");[bold]
    ___l
    ^^^^
    ______V
    [bold]
    does this ring a bell. Except that assume the l to be
    a little bigger in size.Shameful! I'm reporting this as abuse! That poor warnerja was being stalked and 'flipped off' by vincmac!

  • Outlook not saving default profile

    When I start outlook 2010, I click an option to save my default profile.  But when I start up, it doesn't remember my settings. Is there a way to fix this? What does "set as default profile" really mean?

    This is a solution as a means to an end. <o:p></o:p>
    The real problem is that Microsoft Outlook is supposed to override this setting. The idea behind "Set as Default Profile" is to make it to where
    this does not prompt the user again. This should be fixed.<o:p></o:p>
    What should happen, is Microsoft Outlook should be flipping HKEY_CURRENT_USER\Software\Microsoft\Windows NT\CurrentVersion\Windows Messaging
    Subsystem\Profiles, Value "DefaultProfile" to the selected profile. After this, the system should then flip off "Prompt for a profile to be used". This can be done at HKEY_CURRENT_USER\Software\Microsoft\Exchange\Client\Options\PickLogonProfile Reg_SZ
    Value set to 0. This will then make the process of having to go via control panel null.  <o:p></o:p>
    I'm specifically thinking about Domain environments. Lock downs require us moving users to change control panel options, we would benefit greatly from
    this. I suggest a hot fix for this if there is not one already and if there is, that would be my suggested fix in the future. <o:p></o:p>

  • Chapter Heading

    Hi Experts
    My client has 4 Item Groups.
    Named 1.ROPP CAPS
                2.FLIP OFFS
                3.LUG CAPS
                4.ALUMINIUM SHEETS.
    FOR THE ITEM GROUPS OF 1,2,3 THE CHAPTER ID IS SAME.
    AMD FOR THE 4TH ITEM GROUP THE CGHAPTER ID DIFFERENT.
    WHEN WE ADD THE CHAPTER ID IN THE DATABASE IN ITEM MASTER,IT WONT ALLO US TO DUPLICATE THE CHAPTER ID .
    SUPPOSE I HAVE ADDED 8309-90-20 AS THE CHAPTER ID OF ROPP CAPS GROUP.
    BUT WHEN I TRY TO ADD THE SAME CHAPTER ID FOR GROUP 2 & 3 THEN IT IS THROWING AN ERROR AS "THIS ENTRY ALREADY EXISTS".
    iS THERE ANY OTHER WAY TO MAINTAIN THE ABOVE SCENARIO IN SAP B1 .
    REGARDS
    KRISHNA VAMSI

    Hi Krishna Vamsi.......
    This is standard behavior of SAP which does not allow to duplicate Chapter ID if its already exists.
    You can save the same into UDF at Item Level.......
    Regards,
    Rahul

  • Premiere Elements Timecode.cpp-1014 error when adding media

    Software: Premiere elements 11
    Camera: Sony DCR TRV22E
    OS: Windows 7
    When selecting add media I get: [..\..\Src\Timecode.cpp-1014] error multiple times, when the capture window eventually comes up it says the capture device is offline.
    This happens not only when the camera is connected and powered but also when camera is not connected.
    I have tried the different IEEE1394 drivers available in windows 7 and none of them work.
              1394 OHCI Compliant Host Controller
              1394 OHCI Compliant Host Controller (Legacy)
              VIA 1394 OHCI Compliant Host Controller
    The connection to the camera through firewire is ok because I can download video from it using Nero Video Essentials, I just cannot do it through Premiere Elements 11.
    Message was edited by: foradobeuse
    Oops, I put the wrong error code in the title, it should be timecode.cpp-1014

    There is absolutely no reason you can't use this camcorder with Premiere Elements. It's a miniDV! There's clearly something going on with your computer that's unrelated to Premiere Elements.
    For instance, this appears to be a European camcorder. Is your program installed for PAL rather than NTSC? It's an obvious question but one that needs to be asked.
    Also, PLEASE try using the free program WinDV to capture your video over a FireWire connection. If it does,we know something is wrong with your Premiere Elements installation. If not, we know it's something more basic.
    Nero, by the way, it notorious for not sharing certain hardware resources. I've never known it to block access to the FireWire -- but I suppose it's possible.
    So, please, instead of just flipping off Premiere Elements, do a little basic troubleshooting. Problems with a FireWire/miniDV capture are virtually unheard of, and I'm really curious what's going on with your system!

  • Mac Pro startup problems

    I've been having intermittent startup/sleep problems. One of two things happens...I put it to sleep and then when I come back later and tap the keyboard or touch the mouse, I hear it starting up, but the screen doesn't come on. To resolve this, I could usually sleep it with the power button and then try waking it again. Or I just force a restart by holding the power button down...of course losing whatever I hadn't saved.
    The other thing that has been happening more frequently is that when I try to force a restart by holding the power button down, the cinema display doesn't turn on.
    Apple wants me to disconnect all my peripherals and add them one at a time. I have a bunch of peripherals, and since this is an intermittent problem, I think it'll be difficult to diagnose. As well, i'm a quadriplegic and have no use of my hands, making plugging and unplugging a difficult task. My keyboard is plugged in to my monitor, which is plugged in to a surge protector. As a possible solution, I flipped off the surge, pushed in the power button til right before hearing the chime, the flipped on the surge before the chime and the monitor turns on. Sometimes. And sometimes when it does turn on, my Mac boots with the Boot Camp partition...even though I have chosen it to start with Leopard.
    I've had on-site service and they changed out the logic board and video card.
    This is frustrating. I can't bring it in or send it in because I would think I would need to include all the peripherals to replicate the problem at home.
    Oh...it also seems if I just let it "sit there" for a long period of time, I can eventually boot it fine. Lately, this superstition hasn't worked.
    I've found a lot of the Discussions with similar boot/sleep problems with the Mac Pro, but none have helped me.
    Any help would be appreciated.

    This has been an ongoing issue since Panther. It is old as the hills and what it is isn't as easy to remedy as it sounds. There is an issue where, when the machine goes to sleep, the PCI bus shuts off and, upon awaking it doesn't power the video card bus up so, there's no display. There used to be mod to allow the PPC machines to keep the card active and one would go into Terminal and write it in and reset it in such a way to get it to work. However, in the Intel machines, I don't know what that is. IF there's other PCI cards running on that machine that does not support sleep, that same end result will happen. I got so fed up with patching it only to run a hi end audio card in there that did not support sleep and it went right back to a black screen. Best thing to do is to not to use sleep at all. I set it to never.
    Oh, one more thing; there was an issue with some power supplies for the monitors. By simply unplugging it and reconnecting it, the monitor would fire up. I had that happen too with my Apple monitor. The thing was, it just never worked consistent from Panther as I recall.

  • NetBootSP0 folder unsharing itself?

    The server system is a Mac Mini running OS X Mountain Lion Server(10.8.5). It was originally running 10.6.x. It has 8GB of RAM, and dual 1TB hard drives in a RAID-1 configuration. I know that the Mac I'm trying to boot can boot from the particular Netboot image, because it's done so in the past. The network is all 1Gbps over ethernet, and there are no known network issues.
    I use Netboot, and have for many years. I'm trying to use Netboot, but the NetBootSP0 keeps unsharing itself. It's bizarre.
    I'll make sure the NetBootSP0 folder is shared, then try to netboot a Mac, and it will fail to do so. Then I'll open /Applications/Server.app, check the File Sharing pane, and sure enough, the NetBootSP0 folder has become unshared.
    I just want to be able to continue netbooting as I've been doing for many years.
    Any ideas?

    Thanks for the suggestion. I disabled Netboot, renamed the NetBoot folder to NetBtOld, and flipped the switch to enable Netboot. It momentarily flipped on, then flipped off, but it did generate the folder structure.
    Then in the Terminal, I entered
    rsync -avuE /Library/NetBtOld/NetBootSP0 /Library/NetBoot/NetBootSP0/
    then enabled Netboot, shared the folder, and everything seems to be working as well as it used to.
    Thanks again.

Maybe you are looking for