Projector, spanning, top image cut to bottom - HELP!

First of all, I'm no rookie. I have a Ph.D., I'm teaching at UofMichigan, and have been using projectors and computers for years. Before I bother my AV lab (always a pain) I thought I'd ask this keen group.
ISSUE DESCRIPTION:
1. when in spanning mode (secondary screen to bottom), the top of the projected image is cut off and put at the bottom of the projected image with a horizontal black bar separating the two images.
1A. i.e., if you take a window in the MBP display and drag it downwards towards the spanned desktop, it will first appear at the bottom of the projected image and then come out of the top if you keep dragging down.
2. manipulating spanning position, resolution, mirroring, etc. doesn't usually clear it up immediately.
3. Eventually at some unpredictable point after making changes it starts behaving fine. Normal behavior doesn't appear to consistently be associated with any particular change or setting as I usually end up right back where I started in terms of configuration...just sometimes it takes a long time to get there and it really MAKES ME MAD!
HISTORY:
1. I used this same projector for three weeks without any trouble with my old Ghz Ti Book using the exact same set up.
2. My old Ghz TiBook behaved identically with a different projector, making me suspect it is a setting on the projector??? But then, why would it start working properly at all after tweaking randomly only to tweak back to where you started?
HELP!!
MBP 1.83   Mac OS X (10.4.5)   1.5 Gig RAM, KEYNOTE

First of all, I'm no rookie. I have a Ph.D., I'm
teaching at UofMichigan, and have been using
projectors and computers for years. Before I bother
my AV lab (always a pain) I thought I'd ask this keen
group.
As someone who worked in tech in education as a sysadmin, let me make a suggestion. Tell no one that you have a PhD . Every prof. that I ever had to help that was annoying to work with felt the need to tell me he had a PhD in <insert discipline unrelated to AVor Systems here>.
This all DEFINITLY sounds like a projector issue. Have you triued playing with the output resolution from the mac to the projector?
Is the projector attached via DVI or VGA?

Similar Messages

  • Bottom image showing thru top image, help

    hi,
    i received a pdf, looking at it thru preview looks fine. placed pdf in indesign file (cs3) and can see bottom image coming thru top image. Want bottom image (globe) behind top image, but showing thru. If I check off Overprint Previes it looks fine but still looks bad in indesign file and still prints (from printer) that way. How do I fix this?
    thanks

    A bit confused by the question without seeing an example but I'll try and help. If you want the image top image to overprint (making the bottom one show through) you could select the image in InDesign and set the Effect (effects panel) to multiply.
    Paul

  • I lecture for a living. My old G4 connected to LCD projector worked great.  My new MacBookPro connected to LCD projector - the displayed images look as if I used "pastel colors" instead of bright colors.  Help !

    I lecture for a living. My old G4 connected to LCD projector worked great; image displayed on computer monitor is same as that projected by LCD. However my new MacBookPro connected to the LCD projector displays washed out images, as if I designed my Keynote lecture using pastel colors. Also my black & white x-ray images are blue & white. Help !

    slfl wrote:
    Thank you for your quick response to my question.  The Apple Genius Bar tried adjusting the color settings in my MacBookPro, as stated in the document you attached.  It did not help ... my Keynote lectures are still pastel, and my x-rays are blue & white. I should have stated this in my original query for help.
    Again, many thanks for responding.
    Did the Apple Genius explain to you why it did not work or even if it's possible?

  • Buttons become the same size as my image?? PLEASE HELP

    Hi guys,
    this is the second posting of this topic, as in the first one i didn't post my code properly (sorry!!!)
    My problem is that the buttons i have in the code come up as the same size as the 'Goldsmiths' Image. How can i alter the provided code to make the image stay the same size and the buttons to have the default button size?
    Thanks
    //SSPanesar
    //copyright 2005 all rights reserved
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.net.URL;
    public class SwingApplication implements ActionListener {
    private static String labelPrefix = "Number of button clicks: ";
    private int numClicks = 0;
    final JLabel label = new JLabel(labelPrefix + "0 ");
    //Specify the look and feel to use. Valid values:
    //null (use the default), "Metal", "System", "Motif", "GTK+"
    final static String LOOKANDFEEL = "System";
    public Component createComponents() {
    JButton button = new JButton("I'm a Swing button!");
    button.setMnemonic(KeyEvent.VK_I);
    button.addActionListener(this);
    label.setLabelFor(button);
    JButton button1 = new JButton("I'm a Swing button!");
         button1.setMnemonic(KeyEvent.VK_I);
         button1.addActionListener(this);
    label.setLabelFor(button1);
    JButton button2 = new JButton("I'm a Swing button!");
         button2.setMnemonic(KeyEvent.VK_I);
         button2.addActionListener(this);
    label.setLabelFor(button2);
    JButton button3 = new JButton("I'm a Swing button!");
         button3.setMnemonic(KeyEvent.VK_I);
         button3.addActionListener(this);
    label.setLabelFor(button3);
    JButton button4 = new JButton("I'm a Swing button!");
         button4.setMnemonic(KeyEvent.VK_I);
         button4.addActionListener(this);
    label.setLabelFor(button4);
    JLabel label = new JLabel();
         URL loc = getClass().getResource("smalllogo2.gif");
         Icon icon = new ImageIcon(loc);
         label.setSize(icon.getIconWidth(), icon.getIconHeight());
    label.setIcon(icon);
    JLabel label2 = new JLabel();
         URL loc2 = getClass().getResource("SheeraAutoRepair2.jpg");
         Icon icon2 = new ImageIcon(loc2);
         label2.setSize(icon.getIconWidth(), icon.getIconHeight());
    label2.setIcon(icon2);
    * An easy way to put space between a top-level container
    * and its contents is to put the contents in a JPanel
    * that has an "empty" border.
    JPanel pane = new JPanel(new GridLayout(0, 1));
    //pane.setLayout(new FlowLayout(FlowLayout.RIGHT));
    pane.add(label);
    pane.add(button);
    pane.add(button1);
    pane.add(button2);
    pane.add(button3);
    pane.add(button4);
    pane.setBorder(BorderFactory.createEmptyBorder(
    30, //top
    30, //left
    10, //bottom
    30) //right
    pane.setBackground(Color.white);
    return pane;
    public void actionPerformed(ActionEvent e) {
    numClicks++;
    label.setText(labelPrefix + numClicks);
    private static void initLookAndFeel() {
    String lookAndFeel = null;
    if (LOOKANDFEEL != null) {
    if (LOOKANDFEEL.equals("Metal")) {
    lookAndFeel = UIManager.getCrossPlatformLookAndFeelClassName();
    } else if (LOOKANDFEEL.equals("System")) {
    lookAndFeel = UIManager.getSystemLookAndFeelClassName();
    } else if (LOOKANDFEEL.equals("Motif")) {
    lookAndFeel = "com.sun.java.swing.plaf.motif.MotifLookAndFeel";
    } else if (LOOKANDFEEL.equals("GTK+")) { //new in 1.4.2
    lookAndFeel = "com.sun.java.swing.plaf.gtk.GTKLookAndFeel";
    } else {
    System.err.println("Unexpected value of LOOKANDFEEL specified: "
    + LOOKANDFEEL);
    lookAndFeel = UIManager.getCrossPlatformLookAndFeelClassName();
    try {
    UIManager.setLookAndFeel(lookAndFeel);
    } catch (ClassNotFoundException e) {
    System.err.println("Couldn't find class for specified look and feel:"
    + lookAndFeel);
    System.err.println("Did you include the L&F library in the class path?");
    System.err.println("Using the default look and feel.");
    } catch (UnsupportedLookAndFeelException e) {
    System.err.println("Can't use the specified look and feel ("
    + lookAndFeel
    + ") on this platform.");
    System.err.println("Using the default look and feel.");
    } catch (Exception e) {
    System.err.println("Couldn't get specified look and feel ("
    + lookAndFeel
    + "), for some reason.");
    System.err.println("Using the default look and feel.");
    e.printStackTrace();
    * Create the GUI and show it. For thread safety,
    * this method should be invoked from the
    * event-dispatching thread.
    private static void createAndShowGUI() {
    //Set the look and feel.
    initLookAndFeel();
    //Make sure we have nice window decorations.
    // JFrame.setDefaultLookAndFeelDecorated(true);
    //Create and set up the window.
    JFrame frame = new JFrame("SwingApplication");
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    //final int width=300;
    //final int height=400;
    frame.setSize(600,900);
    SwingApplication app = new SwingApplication();
    Component contents = app.createComponents();
    frame.getContentPane().add(contents, BorderLayout.CENTER);
    //Display the window.
    frame.pack();
    frame.setVisible(true);
    public static void main(String[] args) {
    //Schedule a job for the event-dispatching thread:
    //creating and showing this application's GUI.
    javax.swing.SwingUtilities.invokeLater(new Runnable() {
    public void run() {
    createAndShowGUI();
    }

    You still aren't using the "code" formatting tags as was suggested in your first posting in the forum.
    when i add the picture and the buttons go vertically down from the image,Well, this doesn't make sense since you are using a FlowLayout which means components will be displayed horizontally on a line, not vertically.
    If you need further help then you need to create a [url http://www.physci.org/codes/sscce.jsp]Short, Self Contained, Compilable and Executable, Example Program that demonstrates the incorrect behaviour, because I can't guess exactly what you are doing based on the information provided. (ie. the code doesn't compile so we can't test it).

  • Spanning one image across two monitors?

    If this has been asked before, I applogize. It is probably a simple solution, but, not sure if it is possible.
    I am using an Imac 17" Display, 160 Gig HDD, 1 Gig RAM and an external 19" monitor (as an extended desktop)
    I have downloaded some of the split screen backgrounds, and, they look fantastic, but, they can be hard to find.
    I am wondering, if I get a widescreen background (Single. Not Dual Monitor), can it be set to Span the image across both monitors?
    My resoloution for my 17" Imca is 1400 X 940 (Or, whatever the native resolution is for it)
    My external monitor is set to 1280 by 1024
    Any help would be appreciated.
    Gary

    I had the same problem.  U need to install ITAP RPD, it supports spanning very well.  U can test with their trial version.
    I have a new IMac 27" with 27" Thunderbolt second display.  Working on remote desktop with 5120 x 1440 pixels is awesome, and ITap supports it very well
    Cheers

  • My ipad mini was connected to VGA projector but no image was seen

    my ipad mini was connected to VGA projector but no image was seen

    Hi theflyingduke,
    Welcome to the Support Communities!
    Your post doesn't indicate what model projector you are using, but the link below will provide information and troubleshooting steps for your issue:
    iOS: About Apple Digital AV Adapters
    I hope this information helps ....
    Have a great day!
    - Judy

  • Options screen opens so big the top is cut off and cannot use

    This recurs and cannot fix.
    The options screen(box) opens so big the top is cut off and cannot access anything but the general screen?
    I have my resolution set to native 1600x900 100%. Decreasing page (home page) size does not help.
    I am running Windows7 on NEW COMPUTER.

    It does it in safe mode as well. It does it intermittently so I can't trace it to an extension.
    TY

  • How i can fix the top image per user res?

    Hi guys, i have re developed phpbb site mercedes dubai  in Dreamweaver and cant able to splash top image to resize as per the user screen resolution. Please help.
    Thanks.

    Wrong forum. This is the app dev forum. You need to post to the Dreamweaver forum.

  • My Deskjet 1000 J110 series is cutting off bottom parts of sentences?

    My Deskjet 1000 J110 series is cutting off bottom parts of sentences. I have not had this problem in the past. It only does it to a few sentences & my headers. 
    What could be causing this and what can I do about it?

    Hi IlianaGrace96,
    There are several things that can cause your problem.  I would start by reviewing the following HP Consumer Support document:
    Fixing Ink Streaks, Faded Prints, and Other Common Print Quality Problems
    1. Perform a hard reset on the printer. Unplug the power cord from the back.  Leave it out for 30 seconds and then plug it back in.
    2. Use the automated tool to align the cartridges.
    3. Use the automated tool to clean the cartridges.
    4. Manually clean the cartridges with a lint free cloth and water.
    5. Try soaking your printheads in semi warm water for about 5 minutes.
    I hope this helps.
    Regards,
    BethenyF
    Click the Thumbs up to say thanks. Mark Accepted Solution if the solution solves your issue.

  • "Top navigation" or "knowledge-based" Help?

    Has anyone come up with a way to modify a Webhelp SSL that lets you output into what is sometimes called "frameless," "top navigation" or "knowledge-based" Help?
    I'm looking at what they're doing over at MadCap Flare (see the two images below), with their "Knowledge Base" project template. Can that be replicated in RoboHelp, and if so, how?

    Do you mean what is also known as Chromeless, no browser icons and suchlike? (Nothing to do with Google Chrome)
    If you do, I believe it is possible and down to how your developers call the help. There is some information on my site about calling help and more on http://wvanweelden.eu.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Can I put only the top image of a stack in a Mobile Album?

    I have an album that contains stacks and I would like to put only the top images of these stacks in a Mobile Album.  Is this possible? 
    I have tried to make a new album and only put the top images in this new album without sucess.  Is it possible to have a stack of images in one album and only the top image in another ablum?
    I hope someone knows about this
    Hans Brodin

    Hi Surendra,
    My target is to find a convenient way to transfer my best photos only to my iPad
    By using stacks for similar photo and putting my best shot on top I reduce the number of images displayed in the organizer.  A typical stack contains of 8 shots.  
    Then I put my best stacks in an album.  By using the Slide Show in PE I have a convenient way to display only my best shot and tha's OK for my computer were I have a lot of disc space.
    But on my iPad the size of memory is limited and it also takes some time to transfer a huge number of images so now I want to find a convenient way of tranfering only the top image of each stack. If I could have a separate album containing only the top images from each stack the task would have been easy.
    Now this is not possible so now I hope there is another solution than acually making a separate copy (a new file) of each top image and put these copies in a separate album.   This will of course work but it will end up in having two identical images showing up in the organizer and so I do not really like this idea.
    I hope I have managed to describe my intention and do you have an idea for a workaround or do I need to make separate copies?
    Thanks a lot
    Hans

  • I used to have an icon on my menu bar at the top of my screen to help me detect displays (monitors)  It has disappeared and I don't know how to get it back.  Does anyone know?

    I used to have an icon on my menu bar at the top of my screen to help me detect displays (monitors)  It has disappeared and I don't know how to get it back.  Does anyone know?

    Your's may look more like this...
    ...if you're running Mountain Lion. I'm in clamshell mode right now, so I don't have any mirroring options. AFAIK, there's no more "Show displays in menu bar" in Mountain Lion.
    Clinton

  • I am on a MAC PPC G5 with OSX 10.5.8 and can't get the Leopard disk to stay in the drive, although " Woodstock - The Director's Cut plays fine " HELP !!

    I am on a MAC PPC G5 with OSX 10.5.8 and can't get the Leopard disk to stay in the drive, although " Woodstock - The Director's Cut " plays fine, HELP !!

    Yes it is the right Disc...
    2Z691-6040-A  (OEM) Drop-in DVD...
    System Requirements 
Mac computer with an Intel, PowerPC G5, or PowerPC G4 (867MHz or faster) processor. User must already have 10.4 or above to install this 10.5 upgrade.
    Compatibility 
eMac (2005), iBook G4 (Mid 2005), iMac G5 17-inch (ALS), iMac G5 20-inch (ALS), iMac G5 (17-inch iSight), iMac G5 (20-inch iSight), iMac (Early 2006 17-inch), iMac (Early 2006 20-inch), iMac (Mid 2006 17-inch), iMac (17-inch Late 2006 CD), iMac (17-inch Late 2006), iMac (20-inch Late 2006), iMac (24-inch Late 2006), iMac (20-inch Mid 2007), iMac (24-inch Mid 2007), Mac mini, Mac mini (Late 2005), Mac mini (Early 2006), Mac mini (Late 2006), Mac mini (Mid 2007), Mac Pro, Mac Pro (8-core), MacBook (13-inch), MacBook (13-inch Late 2006), MacBook (13-inch Mid 2007), MacBook (13-inch Late 2007), MacBook (13-inch Early 2008), MacBook Air, MacBook Pro, MacBook Pro (17-inch), MacBook Pro (15-inch Glossy), MacBook Pro (15-inch Core 2 Duo), MacBook Pro (17-inch Core 2 Duo), MacBook Pro (15-inch 2.4/2.2GHz), MacBook Pro (17-inch 2.4GHz), MacBook Pro (Early 2008), Power Mac G5 (Early 2005), Power Mac G5 (Late 2005), PowerBook G4 (15-inch Double-Layer SD), PowerBook G4 (17-inch Double-Layer SD), Xserve (Late 2006)
    http://www.welovemacs.com/2z6916040a.html
    I'd try to find another Mac to make a DMG of it & burn a copy to see if that works better.

  • How to put an image in the popup help of a page item?

    I am using APEX 2.2. I want to put an image in the help text of a page input item.
    This is the help text:
    Some help text....
    <p><img src="&APP_IMAGES.auto_lov.jpg" /></p>This is rendered as:
    <p><img src="wwv_flow_file_mgr.get_file?p_security_group_id=0&p_flow_id=103&p_fname=auto_lov.jpg" /></p>As you can see, the application id is not returned.
    If I put exactly the same text in a html region, the image is correctly displayed:
    <p><img src="wwv_flow_file_mgr.get_file?p_security_group_id=844129086577364&p_flow_id=103&p_fname=auto_lov.jpg" />So, is it possible at all to put in image in the popup help text of a page item?

    I solved it by putting the jpg file in an images directory on the web server instead of in the database. Not really what I want, but it works.
    <p><img src="&IMAGE_PREFIX./apps/auto_lov.jpg" /></p>

  • Images cut from Microsoft Word document being picked up in the file size by Acrobat distiller

    Hello All;
    I have a large MS Word document (book manuscript) with almost 400 images (all grayscale) and found that the tiff images needed to be replaced with jpegs to reduce the file size. I created the jpegs, cut the tiff images from the document, and inserted the replacement jpeg image for each tiff image cut. It reduce the file size in Word from 595 Mb to 210Mb. However, when I ran the distiller, it is somehow picking up the file sizes of the tiff files as it still gives roughly the same output (595 Mb) for the Acrobat document. Is there a way I strip out the tiff image overhead from the pdf or a way I can cleanse it from the MS Word document? Thanks in advance.

    Acrobat automatically compresses images when a PDF is made, usually doing something equivalent to JPEG (it's your choice, check the creation options).
    So, changing from TIFF to JPEG in the original file will usually make not a bit of difference to the original file size. 
    There is no simple 1 to 1 connection between the size of a Word document and a PDF. Some things are bigger, some are smaller.
    You can experiment with Save as ... optimized PDF settings. Also, use Audit Space Usage in that dialog to see what is using the space.

Maybe you are looking for

  • Error in bsp (web client)opening.

    hai , i am narayana, i am getting an error while working with ides 5.0 crm, after enter with t-code: crm_ic. i am getting an error like "calling the BSP page was terminated due to an error" and sap note : the following error test was processed in the

  • Maps disappeared from settings in my lumia 820

    Please help me to recover maps in my settings on Lumia 820. I can't use here maps or here drive anymore. Thanks for any help.

  • Currency in Rebate Agreement is different to Curr. required for Credit Memo

    Hello! I have a question regarding Rebate Agreements. We have clients with whom we have Rebate Agreements in USD, but clients are chilean so the Credit Memo is meant to be in Chilean Pesos. But there is apparently no possiblity to change the currency

  • FBCJ print preview

    Hi All, According to the client requirement for cash Journal print..at FBCJ...we have modified the standard program RFCASH20 and given the program name as ZRFCASH20 and from ..form name F140_CASH_DOC to ZFI40_CASH_DOC...I have assigned the changed fo

  • Keyboard-only navigation drives to random slides - Help!

    Hi all, This was an issue I experienced in previous Mac versions that I was able to mitigate by recreating the project in the PC version.  I've since abandoned the Mac version.  However, we recently upgraded to Captivate 8 and it now looks like the i