Help! My space bar isnt activating the hand tool to grab the screen!

CS 5.5. Just restarted Photoshop and still the same problem. I should be able to hold down the space bar and grab the screen to drag it around. Not working anymore. Thoughts?
OS X
CS 5.5

You may need to reset your Photoshop prefs.
Try this:
http://forums.adobe.com/message/4209421

Similar Messages

  • Randomly a blue bar scans across the screen when apps are open, how can I stop that?

    After updating a blue bar scans across the screen. It does it in most of my apps and even when viewing my pix. This never happened before the latest update I installed. It's very annoying. Does anyone have an idea to stop this blue bar?

    I have a very strong feeling that this has something to do with the government requesting the data of 5,000 apple customers. This blue bar scans my screen too coincidentally. While Im on my facebook messages, text messages, recent calls, even on snapchat. On the other discussion, people have cleared their whole phone and it still happens. Your best shot would be calling Apple

  • HT2490 How do I make the top tab bar stay on the screen all the time

    How do I make the top bar stay on the screen all the time?

    "Top tab bar"?
    The top of the screen is where the applications menus appear on the left and system icons (time, volume. etc) appear on the right side.
    This entire area is "covered over" when you enter into "Full Screen" mode. You can expose it while still in full screen by moving your cursor over the area.

  • Help, need space bar parts

    Reposting this. I posted this in the 17" forum but I have a 12".....
    Took the space bar off to clean it (it was sticking) and have since lost the plastic modules that hold it in place. This part seems cheap but I can't find it anywhere!?! Does anyone know where I might find them?

    You did try eBay of course, right? There are a plethora of sellers who have these parts from the full keyboard itself, to just the keys. Go to eBay and punch this item no. into the search box for an exact hit (then you can look for people selling similar items).
    Item No.: 180129674587
    (No, I am not the seller)
    Make sure they also sell the plastic scissor mechanism with the key(s) and that it matches your PowerBook. Each generation of 12" PowerBook had their own style scissor mechanism and keys. Trying to pair a "new" key with an "old" board will not work.
    (Trust me. I found this out via research on the web, and personally at the Genius Bar when the employee tried to force a non-compatible key onto my keyboard).
    Also, you can buy them at places such as PowerBookMedic.com (direct link follows):
    http://www.powerbookmedic.com/Keyboards--Keys-p-1-c-440.html
    Better yet? This is the biggest secret of all. All I will say is, if you have an Apple Store nearby, just ask, and you might get lucky.

  • My space bar is sunk the one side

    Ive had my mac book pro a month and already the space bar has sunken down to the one side and i can no longer see the lights underneath the space bar still works but im worried if this will get worse with time. Has anyone else had this problem?

    A new Mac is in warranty for 1 year from the date of purchase.
    A new Mac comes with 90 days of free tech support from AppleCare.
    AppleCare: 1-800-275-2273
    Call AppleCare or take the computer to the Apple store to have it fixed.
    Best.

  • My retina display has the top task bar burnt into the screen?

    The top and bottom task bar looked to be burnt into the screen on my MacBook Pro Retina Display.  Is this possible or are my eyes playing tricks on me?

    Hello Cambycis,
    After reviewing your post, I have located an article that can help in this situation. It contains a number of troubleshooting steps and helpful advice concerning image persistence issues:
    Avoiding image persistence on Apple LCD displays
    http://support.apple.com/kb/HT2807
    Thank you for contributing to Apple Support Communities.
    Cheers,
    BobbyD

  • How do i get my tool bar  back on the screen

    How do I get my tool bar back on the bottom of my screen?

    Full Screen mode turned on?
    Press the  esc  key in the keyboard- left top most key.

  • HT1338 All of a sudden my apple mouse will not scroll down, it will scroll back up the screen but I have to use the slide bar to move the screen down. Can someone offer a solution?

    All of a sudden my apple mouse will not scroll down the screen, it will scroll back up but I have to use the slide bar to move down the screen. Has anyone had this problem and how to fix it?

    http://computer-hardware.wonderhowto.com/how-to/clean-apple-mighty-mouse-scroll- ball-217746/
    http://www.apartmenttherapy.com/how-to-clean-apples-mighty-mou-108357
     Cheers, Tom

  • App bar is off the screen

    I have a app open on my macBook Pro and the top bar is above the top menu bar and I cannot grab it to drag it down. How can I get to it? It looks like a windows app so it does not have the red, yellow or green buttons.

    Thanks, but I am not in full screen mode. It is a windows based app so the normal mac hints don't work. I think I need to get rid of the menu bar at the top of the screen to reach the top of the windows app bar. Here is a screen shot.

  • Need help on drawing multiple squares on the screen

    I am working on a project for aircraft seating and what i have to do is create square on the screen as seat. I got to draw 180 squares on the screen and it sounds easy but i have been stuck at it for about 10 days now my superviser doesn't know java so he can't help me on what i should do next and java superviser's told me they have no time to see me so if anyone here can help to guide me where i am goin wrong or how i should do it would be very helpful. Here is the code i have so far i think i am maybe close to gettin it working but then again i could be far off.
    import java.awt.BorderLayout;
    import java.awt.Graphics;
    import java.awt.Dimension;
    import java.awt.GridLayout;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    public class Seating extends JFrame {
        private JPanel boardPanel;
        private JPanel panel2;
        private Square board[][];
        public Seating() {
            boardPanel = new JPanel();
            boardPanel.setLayout(new GridLayout(6,30,0,0));
            //create board
            board = new Square[6][30];
            //rows in the board
           for(int row = 0; row < board.length; row++)
               //column on the board
                for(int column = 0; column < board[row].length; column++)
                    //create square
                    board[row][column] = new Square(' ', 3 * row + column);
                    //add square
                    boardPanel.add(board[row][column]);
                panel2 = new JPanel();
                panel2.add(boardPanel, BorderLayout.CENTER);
                add(panel2, BorderLayout.CENTER);
                setSize(2000,1500);
                setVisible(true);
                 private class Square extends JPanel
                    public Dimension getPreferedSize()
                      return new Dimension(20,20);
                    public Dimension getMinimumSize()
                        return getPreferedSize();
                    public void paintComponent(Graphics g)
                        super.paintComponents(g);
                        g.drawRect(0, 0, 19, 19);
    }

    Yeah I'd make a Seat class, subclassing JLabel, and then add some business logic to them to reflect that. For example, if they're already booked, given them a different color and disable clicks on them. If they're bookable, add a mouse click listener. Maybe I'd make different subclasses of Seat for those different roles. I'd add them all to the grid, but also add them to a Map indexed by seat name or something so I could find them and update them as needed.

  • Help with mobile site not filling the screen!

    I have published my mobile site and it appears in the top left corner of my iphone screen. How to I get it to fill the screen? www.creativetouchdesign.co.uk

    I'm having the same issue - can't figure out what's going on. Hoping this post gets responded to soon.

  • I start iChat, the iChat bar appears atop the screen BUT no iChat window??

    Greetings!
    Just started to occur... i am sure I am forgetting something. BUT, still no iChat opening window on the screen.
    Any quick. obvious remedy??
    Thanks!
    - Roger T

    Same attempt here, last night.
    I had not messed with iChat or with chatting in general to begin with.
    My MBP/iChat >>> Windows Visa machine/AIM (NOT the Pro version I assume). Seems that we were soon enough able to IM between the two machines, but video/no audio took a while longer: and even then rather uncertain. We briefly got video between the two machines ONCE (I have no idea if we did something different though), and the rest of the time had "buddy authentification" issues. Seems that the two machines were acknowledging one another easily enough in the meantine.
    i have checked around about iChat and learn somewhere that file sharing should be suspended while doing video/audio chatting.
    But, in the end, what caught my attention is the following link:
    http://robrohan.com/2007/11/30/trying-to-video-chat-between-mac-and-windows/
    Seems explanatory enough. I have and use skype. I'll hae to have by Windows/Vista buddy install it and then we;ll try again!
    - Roger T

  • Need help everytime i try to facetime the screen is black

    My boyfreind and i are having problems with our facetime the screen is black on both ends can hear each other but the only thing we see is ourselves in the corner

    Have you tried a Reset of both Devices...
    Press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears. Release the Buttons.
    http://support.apple.com/kb/ht1430
    Troubleshooting FaceTime
    http://support.apple.com/kb/TS3367

  • When you press space bar AE plays the wrong comp ?

    I seem to have an issue with the spacebar in AE CC.
    When I press the spacebar the current comp is not play, rather AE switches to another comp and plays that one instead.
    This is an intermittent problem and the only way to fix it is to shutdown AE and reboot the software.
    Any ideas ?

    In addition to what others have said which should answer your actual question, spacebar is not the normal way to preview things in AE. You should probably go through these resources: Getting started with After Effects If you're doing something as fundamental as previewing in an unusual (and mostly wrong) way, I can only imagine how the resources linked there will help you avoid a lot of frustration in the future.

  • How do I remove the now blank 'get started' bar to maximise the screen size?

    OK I've loaded Firefox 3.6.9 . I right clicked and removed the three buttons on the 'get started' bar. Now I have a blank bar wasting screen space. How do I remove it?

    View > Toolbars = un-check '''Bookmarks Toolbar'''

Maybe you are looking for

  • After Db upgrade to 11.1.0.6  invailds are not getting complied

    After Db upgrade to 11.1.0.6 from 10.2.0.4 the invailds are not getting complied Platfrom:-OEL4 Invalid:-100

  • Firebrand - a script to brand firefox without recompiling

    This is the initial thread for firebrand, a script for branding firefox without recompilation. Firebrand is a simple bash script, which replaces some text strings and the icons in an already installed instance of the firefox package. There are severa

  • HTTP trigger script using ECC variable/Call sub flow - not working

    Hello all, I am trying to http trigger script which will show the real time stats of the CSQs. The script is based on "Day of week" and Time of day" checking the queue time and will update the HTML doc to show as real time data. The scripts for vario

  • Ipod Nano Replacement Program

    I've been trying constantly to get the replacemente but everytime I submit the order I keep getting an error. I know that apple doesn't ship new merchandise to PR, but they did ship the bumpers through the bumper program. Any help will be appreciated

  • I need help centering my images.

    Hi, I am very new to DreamWeaver and have been teaching myself for the past week. I am building my own small website for my portoflio and can not figure out how to auto center my website. When I center one image the other images are in the wrong spot