Switch screen button in keynote 6.0

I had my first presentation today with Keynote 6.0. Everything was fine except at the conclusion I wanted to find out how to get to the other slides. I was checking the buttons at the top right and pushed what I now realize is "switch screen." Now what I should see on my computer (presenter view with slides) is what they see on the screen. I've looked everwhere and I can't find a 'switch screen'so that I can reverse it and when I'm in presenter mode, there's no way to find that. Any help would be much appreciated!

Thank you so much. I didn't know that shortcut and it fixed it right away. I was surprised that when I went back to the section that all of those slide were only a small portion of the page. It's almost like the white part of the slide got bigger so the actual slide information shrunk. Obviously I hit something in my frustration that changed the slide size, but luckily it will be easy to replace. Great response to my question and much appreciated!

Similar Messages

  • Doing keynote presentation.  How do I switch screens so the audience does not see my notes and next slide?

    Doing keynote presentation.  How do I switch screens so the audience does not see my notes and next slide?

    Go to Keynote>Help>Show your Presentation>Use Presenter notes.
    Also if you are using separate screens see Present on seperate displays

  • IPad 2 side buttons no longer work after switching screen

    My screen got cracked 4 months ago, but I still used it perfectly fine. Last week i paid a guy to replace my screen, after which, the side buttons (top switch, screen lock/mute, and volume buttons) stopped workiing. The home button is the only button that works. What is causing this and are there any apps i can download that can lock my screen with (so i can tilt is sideways without the screen shifting)? BTW, the guy who did the job said it's not his fault so i cant do anything on that end.

    aThen a button will appear on your screen click that then it will give you a device option click on that and you can lock your screen turn the volume up and down and lock the screen rotation. Hope this helps!

  • My iphone will not switch screens when I push the button

    my iphone will not switch screens when I push the button

    -try restarting the device
    -reset the device
    -restore the device as new
    -replace the device

  • Switching Screens Speed?

    Hello everyone again,
    I'm pretty new to programming in Java and I'm getting an error in my program. The program runs fine but it's slower than I wanted. The Windows Consol does not give any errors. The program displays a title screen of a game I'm making with background music and a button. When the button is pressed, it changes screen to a 2nd screen which also has a button. The 2nd screen playes a different music and also has a button which exits when pressed. Pushing the Esc key exits out of the game, which is full screen. However, there seems to be a delay of 5 to 20 seconds every time I push the button to switch screens and whenever I start the program. Why is it doing this?
    I have some ideas, but I'm not sure if they are right. I'm guessing that it really slows down because I need to buffer the images. If it's not the image that slows down the program, is it the SoundManager? Maybe it's something I'm not seeing, so please take a look and give out any suggestions.
    Thanks
    Here's the code...
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.sound.sampled.AudioFormat;
    import com.brackeen.javagamebook.sound.*;
    import com.brackeen.javagamebook.input.*;
    import com.brackeen.javagamebook.graphics.*;
    import com.brackeen.javagamebook.test.*;
    class YGOGrandChampionship extends JFrame implements ActionListener
        private JButton startButton;
        private static ImagePanel ip = new ImagePanel("Title Screen.jpg", "Title.gif");
        private Image Title = loadImage("Title.gif");
        protected GameAction exit;
        protected InputManager inputManager;
        AudioFormat PLAYBACK_FORMAT = new AudioFormat(44100, 16, 2, true, false);
            SoundManager soundManagerS = new SoundManager(PLAYBACK_FORMAT);
         public YGOGrandChampionship()
              //Makes it Full Screen.
              setUndecorated(true);
              BorderLayout x = new BorderLayout(0, 500);
              ip.setLayout(x);
              JPanel buttonPanel = new JPanel();
              GridBagConstraints grid = new GridBagConstraints();
              //Creates the Start Button.
              startButton = createButton("Start.gif");
              grid.gridwidth = GridBagConstraints.SOUTH;
              //Sets the Location of the Title.
              ip.setLocation (342, 244);
              buttonPanel.setOpaque(false);
              startButton.setBounds(460, 500, 104, 43);
              buttonPanel.add(startButton);
              buttonPanel.setLayout(null);
              ip.add(buttonPanel);
              //Adds it to the Content Pane.
              getContentPane().add(ip);
              //Makes it pop up.
              setExtendedState(MAXIMIZED_BOTH);
              addKeyListener(new KeyListener()
                   public void keyPressed(KeyEvent event)
                        //Does nothing until released.
                   public void keyReleased(KeyEvent event)
                        if (event.getKeyChar() == KeyEvent.VK_ESCAPE)
                             //Exits the program.
                             System.exit(0);
                   public void keyTyped(KeyEvent event) {}
              startButton.addActionListener(new ActionListener()
                  public void actionPerformed(ActionEvent e)
                      // fire the "next screen" gameAction
                        soundManagerS.close();
                        new MenuScreen().setVisible(true);
                        SoundManager soundManager = new SoundManager(PLAYBACK_FORMAT);
                        Sound nextMusic = soundManager.getSound("movie36.wav");
                        soundManager.play(nextMusic);
         public Image loadImage(String fileName)
            return new ImageIcon(fileName).getImage();
         public JButton createButton(String name)
             String imagePath = name;
             ImageIcon iconRollover = new ImageIcon(imagePath);
             Cursor cursor = Cursor.getPredefinedCursor(Cursor.HAND_CURSOR);
             // create the button
             JButton button = new JButton();
             button.addActionListener(this);
             button.setIgnoreRepaint(true);
             button.setFocusable(false);
             button.setBorder(null);
             button.setContentAreaFilled(false);
             button.setCursor(cursor);
             button.setIcon(iconRollover);
             button.setRolloverIcon(iconRollover);
             button.setPressedIcon(iconRollover);
             return button;
           public void actionPerformed(ActionEvent e)
            Object src = e.getSource();
        public static void main(String[] args)
              AudioFormat PLAYBACK_FORMAT =
             new AudioFormat(44100, 16, 2, true, false);
             SoundManager soundManager = new SoundManager(PLAYBACK_FORMAT);
             Sound titleMusic = soundManager.getSound("movie02.wav");
              soundManager.play(titleMusic);
              new YGOGrandChampionship().setVisible(true);
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.sound.sampled.AudioFormat;
    import com.brackeen.javagamebook.sound.*;
    import com.brackeen.javagamebook.input.*;
    import com.brackeen.javagamebook.graphics.*;
    import com.brackeen.javagamebook.test.*;
    class MenuScreen extends JFrame implements ActionListener
        private JButton newGameButton;
        private static ImagePanel ip = new ImagePanel("kaiba_seto.jpg", "Title.gif");
        private Image Title = loadImage("Title.gif");
        protected GameAction exit;
        protected InputManager inputManager;
        AudioFormat PLAYBACK_FORMAT = new AudioFormat(44100, 16, 2, true, false);
            SoundManager soundManagerM = new SoundManager(PLAYBACK_FORMAT);
         public MenuScreen()
              //Makes it Full Screen.
              setUndecorated(true);
              BorderLayout x = new BorderLayout(0, 500);
              ip.setLayout(x);
              JPanel buttonPanel = new JPanel();
              GridBagConstraints grid = new GridBagConstraints();
              //Creates the Start Button.
              newGameButton = createButton("New Game.jpg");
              grid.gridwidth = GridBagConstraints.SOUTH;
              //Sets the Location of the Title.
              ip.setLocation (0, 500);
              buttonPanel.setOpaque(false);
              newGameButton.setBounds(300, 600, 256, 67);
              buttonPanel.add(newGameButton);
              buttonPanel.setLayout(null);
              ip.add(buttonPanel);
              //Adds it to the Content Pane.
              getContentPane().add(ip);
              //Makes it pop up.
              setExtendedState(MAXIMIZED_BOTH);
              addKeyListener(new KeyListener()
                   public void keyPressed(KeyEvent event)
                        //Does nothing until released.
                   public void keyReleased(KeyEvent event)
                        if (event.getKeyChar() == KeyEvent.VK_ESCAPE)
                             //Exits the program.
                             System.exit(0);
                   public void keyTyped(KeyEvent event) {}
              newGameButton.addActionListener(new ActionListener()
                  public void actionPerformed(ActionEvent e)
                      // fire the "exit" gameAction
                      System.exit(0);
         public Image loadImage(String fileName)
            return new ImageIcon(fileName).getImage();
         public JButton createButton(String name)
             String imagePath = name;
             ImageIcon iconRollover = new ImageIcon(imagePath);
             Cursor cursor = Cursor.getPredefinedCursor(Cursor.HAND_CURSOR);
             // create the button
             JButton button = new JButton();
             button.addActionListener(this);
             button.setIgnoreRepaint(true);
             button.setFocusable(false);
             button.setBorder(null);
             button.setContentAreaFilled(false);
             button.setCursor(cursor);
             button.setIcon(iconRollover);
             button.setRolloverIcon(iconRollover);
             button.setPressedIcon(iconRollover);
             return button;
           public void actionPerformed(ActionEvent e)
            Object src = e.getSource();
    import javax.swing.*;
    import java.awt.*;
    class ImagePanel extends JPanel
         Image img, sImg;
         int x = 0, y = 0;
         public ImagePanel (String fileName, String fileName2)
              try
                   img = javax.imageio.ImageIO.read(new java.net.URL(getClass().getResource(fileName), fileName));
                   sImg = javax.imageio.ImageIO.read(new java.net.URL(getClass().getResource(fileName2), fileName2));
              catch(Exception e){/*handled in paintComponent()*/}
         public void setLocation (int x1, int y1)
              x = x1;
              y = y1;
         public void switchBackground (String fileName)
              try
                   img = javax.imageio.ImageIO.read(new java.net.URL(getClass().getResource(fileName), fileName));
              catch(Exception e){/*handled in paintComponent()*/}
         public void paintComponent(Graphics g)
              super.paintComponent(g);
              if(img != null) g.drawImage(img, 0,0,this.getWidth(),this.getHeight(),this);
              else g.drawString("No image file found", 50, 50);
              if(sImg != null) g.drawImage(sImg, x, y ,this);
              else g.drawString("No image file found", 100, 100);
    }

    I do agree... it could be the sound manager, cause if i am not wrong once the song/sound is loaded.. it is not garbarge collected when the new sound is loaded. Maybe you might want to ensure to get rid of the previous sound before loading the next one???

  • Nokia 520 switch on button not working

    Ive had a Nokia 520 for only 4 months and its broken as the switch on button does not light up the phone all other aspects of the phone are working.....3 are not interested and are still taking monthly payments for a phone I cant use unless someone contacts me and the screen lights up. I would like some good advice please as of how to fix this or have this fault repaired? Thankyou

    If the button is broken, you need to get it repaired at a local Nokia Care Center. But as an alternative, you can use camera button to unlock your phone, just hold the camera button for a second.
    If this feature is not enabled on your phone, you can enable it in Settings->applications->Photos+camera

  • My Ipad (purchased 5/12) constantly switches screens without prompting.  This happens about every 3 seconds.

    I purchased my iPad 5/12.  Since a recent trip inwhich I used a verizon hotspot device to stay connected, it switches screens without prompting.  New screens pop up about every 3-5 seconds.  How can I reset?

    Hold the Sleep and Home button down (together) for about 10 seconds until you see the Apple logo. Ignore the red slider.

  • Screen capture with keynote presentations

    After switching from PP to Keynote a year ago, my only disappointment is that I can't do screen-capture of my presentations. With PP, I could use the screen capture program SnapzPro to make a movie of my presentation, with voice over. Typically, if a particular slide didn't go well in class, I would record myself talking through the animations (bringing on pieces of a diagram one at a time, for example), and then post the resulting video on my course website. Doesn't work with Keynote, however, and the SnapzPro people don't have any info about when this problem might be solved from their end. Is there some other program I should be using? Does Apple itself make anything that will do the trick? Is solving this problem something Apple is working on? Or, am I stuck redoing my slides in PP?

    Hi there
    I read your post. I use Snapz Pro X too, and I was surprised to learn it doesn't work with Keynote. Here's a possible work around.
    Record your voice-over on any recorder and export to itunes or if you have sound studio loaded on your mac, use it. From the inspector you can access you voice-over for use in your project.
    I've recorded a voice-over in sound studio for a keynote project. From sound studio I export to my desktop. From the desktop I drag and drop the audio onto the slide I need the voice-over on. This works well for me. try it.
    Once you've got it set the way you like, export the Keynote project to QT or whatever format you like. In QT, the project will play like a movie. You can save the file, burn to a disk, or post to a web page.
    I hope this helps
    Carl

  • HT4061 My IPad is slow when I type something....other times takes too long to switch screen or apps

    I have problems with my iPad.  It is slow to switch screens and apps, also the switch bottom to change screens is terrible...sometimes doesn't response.

    Try closing all apps completely and then do a soft-reset and see if that helps. To close all apps : from the home screen (i.e. not with any app 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of each app to close them, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    To do a soft-reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • Deploying Custom Windows 7 Logon page and switch user button

    I am trying to use ZCM 11 Group Policy management to do two things. 1). Turn off the Windows 7 switch user feature that exists in the start menu and at the initial logon screen, and 2). Add a policy statement graphic to the initial logon screen in Windows 7.
    Feature 1 above is done by changing 'Hide entry points for 'Fast User Switching' in Computer Configuration=>Administrative Templates=>System=>Logon. But in order to get rid of the 'Switch User' button on the initial logon screen you also have to enable 'Interactive logon: Do not display last user name' in Computer Configuration=>Windows Settings=>Security Settings=>Local Policies=>Security Options and we only want this enabled for students. There are only two options for this setting - 'enabled' and 'disabled'.
    Feature 2, adding a graphic to the initial logon screen, is turned on by enabling 'Always use custom logon background' in Computer Configuration=>Administrative Templates=>System=>Logon and creating a custom bmp file placed in C:\Windows\System32\oobe\info\.
    Because the 'Interactive logon: Do not display last user name' setting only has enable/disable options (the default is disable) and because user associated settings overwrite workstation associations Im using two policies, one workstation and one user as inidcated below:
    User GPO :
    Enable 'Interactive logon: Do not display last user name' in Computer Configuration=>Windows Settings=>Security Settings=>Local Policies=>Security Options
    NOTE: This allows me to differentiate between student and staff users.
    Workstation GPO:
    Enable 'Hide entry points for 'Fast User Switching' in Computer Configuration=>Administrative Templates=>System=>Logon
    Enable 'Always use custom logon background' in Computer Configuration=>Administrative Templates=>System=>Logon
    Bundle:
    Deploys the bmp file to C:\Windows\System32\oobe\info\.
    Unfortunately, this setup only works as intended when the user is set up with a volatile DLU policy. When the user associated DLU is non-volatile it doesnt display the graphic and it does not remove the switch user button on the main logon screen. If I logon/logoff as a non-volatile user I get the generic Windows 7 logon page with the switch user button visible, when I logon/logoff as a volatile user I get the custom graphic logon page without the switch user button. Whats even stranger is that when I go into gpedit.msc and look at the settings after I log in, theyre correct for each type of user.
    Does anyone have any insight on why I might be seeing this problem?
    Ive tried to be complete as possible describing the problem but if didnt describe something correctly or someone needs additional info, please let me know.
    Thanks for any assistance.
    Dan

    Hi Dan,
    are you using Novell CLient?
    The Tiles on the Login Screen also depend on the Client configuration. If there is only Novell CLient active Windows cannot display other tiles or switch user.
    regards
    MArkus
    Originally Posted by dlietz
    I am trying to use ZCM 11 Group Policy management to do two things. 1). Turn off the Windows 7 switch user feature that exists in the start menu and at the initial logon screen, and 2). Add a policy statement graphic to the initial logon screen in Windows 7.
    Feature 1 above is done by changing 'Hide entry points for 'Fast User Switching' in Computer Configuration=>Administrative Templates=>System=>Logon. But in order to get rid of the 'Switch User' button on the initial logon screen you also have to enable 'Interactive logon: Do not display last user name' in Computer Configuration=>Windows Settings=>Security Settings=>Local Policies=>Security Options and we only want this enabled for students. There are only two options for this setting - 'enabled' and 'disabled'.
    Feature 2, adding a graphic to the initial logon screen, is turned on by enabling 'Always use custom logon background' in Computer Configuration=>Administrative Templates=>System=>Logon and creating a custom bmp file placed in C:\Windows\System32\oobe\info\.
    Because the 'Interactive logon: Do not display last user name' setting only has enable/disable options (the default is disable) and because user associated settings overwrite workstation associations Im using two policies, one workstation and one user as inidcated below:
    User GPO :
    Enable 'Interactive logon: Do not display last user name' in Computer Configuration=>Windows Settings=>Security Settings=>Local Policies=>Security Options
    NOTE: This allows me to differentiate between student and staff users.
    Workstation GPO:
    Enable 'Hide entry points for 'Fast User Switching' in Computer Configuration=>Administrative Templates=>System=>Logon
    Enable 'Always use custom logon background' in Computer Configuration=>Administrative Templates=>System=>Logon
    Bundle:
    Deploys the bmp file to C:\Windows\System32\oobe\info\.
    Unfortunately, this setup only works as intended when the user is set up with a volatile DLU policy. When the user associated DLU is non-volatile it doesnt display the graphic and it does not remove the switch user button on the main logon screen. If I logon/logoff as a non-volatile user I get the generic Windows 7 logon page with the switch user button visible, when I logon/logoff as a volatile user I get the custom graphic logon page without the switch user button. Whats even stranger is that when I go into gpedit.msc and look at the settings after I log in, theyre correct for each type of user.
    Does anyone have any insight on why I might be seeing this problem?
    Ive tried to be complete as possible describing the problem but if didnt describe something correctly or someone needs additional info, please let me know.
    Thanks for any assistance.
    Dan

  • D/l 4. As soon as I hit the maximise screen button, have nothing but probelms. Aargh, now using M/s internet explorer. 4 is a piece of *

    No probs until d/l 4. Hit the fit screen button (top left hand drop down menu including) & then problems started. Could not restore screen so as to see usual menu bar. Therefore could not restore a normal view. Could not get back to the default screen. I am unable to access the drop down menu once I have hit the 'fit screen' option. I disabled styles and other options to no effect. Have had to uninstall firefox.
    '''Edited for language - TonyE''

    In general theory, one now has the Edit button for their posts, until someone/anyone Replies to it. I've had Edit available for weeks, as opposed to the old forum's ~ 30 mins.
    That, however, is in theory. I've posted, and immediately seen something that needed editing, only to find NO Replies, yet the Edit button is no longer available, only seconds later. Still, in that same thread, I'd have the Edit button from older posts, to which there had also been no Replies even after several days/weeks. Found one that had to be over a month old, and Edit was still there.
    Do not know the why/how of this behavior. At first, I thought that maybe there WAS a Reply, that "ate" my Edit button, but had not Refreshed on my screen. Refresh still showed no Replies, just no Edit either. In those cases, I just Reply and mention the [Edit].
    Also, it seems that the buttons get very scrambled at times, and Refresh does not always clear that up. I end up clicking where I "think" the right button should be and hope for the best. Seems that when the buttons do bunch up they can appear at random around the page, often three atop one another, and maybe one way the heck out in left-field.
    While I'm on a role, it would be nice to be able to switch between Flattened and Threaded Views on the fly. Each has a use, and having to go to Options and then come back down to the thread is a very slow process. Jive is probably incapable of this, but I can dream.
    Hunt

  • HT5012 I am having difficulty XMIT/REC text messages to family members using Android phones?  I have a 3GB data plan and all switches and buttons are set properly.  Any suggestions?

    I am having difficulty XMIT/REC text messages to family members using Android phones?  I have a 3GB data plan and all switches and buttons are set properly.  Any suggestions?

        Hello APVzW, we absolutely want the best path to resolution. My apologies for multiple attempts of replacing the device. We'd like to verify the order information and see if we can locate the tracking number. Please send a direct message with the order number so we can dive deeper. Here's steps to send a direct message: http://vz.to/1b8XnPy We look forward to hearing from you soon.
    WiltonA_VZW
    VZW Support
    Follow us on twitter @VZWSupport

  • I am trying to take a picture of a web page and paste on a one drive powerpoint. I tryed pressing the print screen button, and pasting. But it is giving me message saying that my browser can not fine the clipboard, and I need to use the keyboard shortcuts

    I need to take a picture of a web page, insert it onto a powerpoint online, and crop the picture. I am pressing the print screen button, and right cliking paste. But I am getting the warning message saying that my browser can not use the clipboard, and I am unsure of how to take a picture, then paste it, and crop it all on to a power point.

    http://portableapps.com/apps/internet/firefox_portable/localization#legacy36

  • HT201412 did a software update and now the only thing I get is the itunes logo and arrow pointing up and a lock symbol with a line going down toward the screen button.  Any suggestions to get this to open?

    Trying to get the ipad to open after doing a software update.  I only get the itunes logo with an arrow pointing toward it and a lock symbol with a line going down towards the screen button.  Any suggestions to get this to open?

    You are in Recovery Mode. Follow the instructions below to recover your iPad.
    http://support.apple.com/kb/ht4097

  • I tried to soft reset my ipod touch with the top button and the screen button.  it turned off and went to the blue screen with the apple.  now it won't do anything-it has stayed on that scren for 4 hours now.  does anyone know how i can fix this?

    i tried to soft reset my ipod touch with the top button and the screen button.  it turned off and then went to the blue screen with the apple like it should.  however, it now just stays on that screen.  it has a sort of clock looking thing at the bottom of the apple that does not move either.  it has stayed on this screen for over 4 hours.  i also can not hard reset it in itunes.  i am not really goood at this sort of thing.  does anyone have this problem or a possible solution?  thanks

    See Here for
    Frozen or unresponsive iPod touch
    The Basic Troubleshooting Steps are:
    Restart..  Reset..  Restore...
    Try this First... You will Not Lose Any Data...
    Turn the iPod Off... ( if it isn’t already )
    Press and Hold the Sleep/Wake Button and the Home Button at the Same Time...
    Wait for the Apple logo to Appear and then Disappear...
    Usually takes about 15 - 20 Seconds... (But can take Longer...)
    Release the Buttons...
    Turn the iPod On...
    If that does not help... See Here:
    Backing up, Updating and Restoring
    http://support.apple.com/kb/HT1414

Maybe you are looking for