Handtool doesn't work by pressing spacebar

I've the CS6 suite and in Indesign, Photoshop and Illustrator the handtool doesn't work by pressing the spacebar.
Recently I updated to windows 8.1. Could this be the reason?
Thanks for your help.
Jan

Using FaceTime http://support.apple.com/kb/ht4319
Troubleshooting FaceTime http://support.apple.com/kb/TS3367
The Complete Guide to FaceTime: Set-up, Use, and Troubleshooting Problems
http://tinyurl.com/32drz3d
Troubleshooting FaceTime and iMessage activation
http://support.apple.com/kb/TS4268
 Cheers, Tom

Similar Messages

  • Standby button doesn´t work on iphone 5.

    since 2 days the standby button doesn´t work. after pressing several times, sometimes it will work.
    what can i do? my iphone is from 09/2012.

    This is a common problem, the on/off button and the mute, volume up and volume down are on the same flat, so you have to take it to an Apple store so they can fix it, or if you cant go right now you can activate the AssistiveTouch bi going to Settings=>General=>Accessibility=>AssistiveTouch. turn on it will help you.
    Good Luck

  • TS2289 I don't what's going on but everytime i press my spacebar to see my movie it doesn't work at all!!! What can i do?

    Can someone helpe me with this??? Everytime i press my spacebar to see how my movie is going it doesn't work at all!!!!!!!!

    Did it run OK under a new User-Account ?
    If so - then the need to clean out iMovie to re-install will not help at all but just be complicated.
    If it did run OK - Then
    • Delete iMovie pref. file
    iMovie pref. file resides.
    Mac Hard Disk (start-up HD)/Users/"Your account"/Library/Preferences
    not the Library at root level = first window when opening Your Macintosh HD (Mac OS) Start-Up HD
    and is named. (one or more of these)
    com.apple.iMovie.plist
    com.apple.iMovie3.plist
    com.apple.iMovie7.plist
    com.apple.iMovie8.plist
    com.apple.iMovie9.plist
    com.apple.iMovieApp.plist
    and find
    com.apple.iApps.plist
    While iMovie is NOT RUNNING - move this/these file/s out on to desk-top.
    Now restart iMovie.
    If You run Mac OS X.7 or more - then the Library in the User-account folder is invisibly and need to be set to be viewable. IT IS NOT in the Library on Root level (when opening MacintoshHD - first window = root level)
    ( It can be done like this: Open Terminal, then enter: chflags nohidden ~/Library
    Press return, then restart, and it will always be visible until the next major update, when you do the same thing again. )
    To find all parts of iMovie to trash to make a Clean Install - is not easy and there will be others that can guide You trough this process. - I never needed to do that - and I used iMovie since iMovie (1) > 10 Years
    Yours Bengt W

  • My spacebar doesn't work.

    Tech support thought my apps where corrupt because of the security settings in Window 8.
    All apps removed and reinstalled after security settings changed.
    The spacebar still doesn't work.
    Any suggestions?
    Tom

    Did it run OK under a new User-Account ?
    If so - then the need to clean out iMovie to re-install will not help at all but just be complicated.
    If it did run OK - Then
    • Delete iMovie pref. file
    iMovie pref. file resides.
    Mac Hard Disk (start-up HD)/Users/"Your account"/Library/Preferences
    not the Library at root level = first window when opening Your Macintosh HD (Mac OS) Start-Up HD
    and is named. (one or more of these)
    com.apple.iMovie.plist
    com.apple.iMovie3.plist
    com.apple.iMovie7.plist
    com.apple.iMovie8.plist
    com.apple.iMovie9.plist
    com.apple.iMovieApp.plist
    and find
    com.apple.iApps.plist
    While iMovie is NOT RUNNING - move this/these file/s out on to desk-top.
    Now restart iMovie.
    If You run Mac OS X.7 or more - then the Library in the User-account folder is invisibly and need to be set to be viewable. IT IS NOT in the Library on Root level (when opening MacintoshHD - first window = root level)
    ( It can be done like this: Open Terminal, then enter: chflags nohidden ~/Library
    Press return, then restart, and it will always be visible until the next major update, when you do the same thing again. )
    To find all parts of iMovie to trash to make a Clean Install - is not easy and there will be others that can guide You trough this process. - I never needed to do that - and I used iMovie since iMovie (1) > 10 Years
    Yours Bengt W

  • Spacebar in CS6 doesn't work and hotkeys are shifty

    I just recently downloaded CS6 from the creative cloud, the spacebar in CS6 doesn't work and switching cursor settings (brush, handtool, select all, move etc...) with the keyboard causes the program to pause for 1-2 seconds before the mouse will move again.
    This is really obnoxious and ruins any workflow you want to have...
    OH and I called Adobe support but that was a big FN' mistake.... most aggravating process and they are too damn skeptical about if you own the software or not!
    Has anyone had issues w/ this?

    You can try trashing your prefs (see Replace Your Preferences), but I don't think that's the problem, nor is there a general problem with book page numbering in CS6, so it's something that you've set incorrectly, or a step you've missed. Did you update the numbering after adding the files?

  • HELP! Uploading AS3 Game to server, no sound and Spacebar doesn´t work HELP!

    Hello, relatively new to AS3 and flash, this is the first time i am publishing anything. We are trying to upload our simple flashgame to our webserver, the game works perfectly fine locally save for one thing. We get an error regarding TLF which says it wont stream or something. So when it gets online, no sounds play and spacebar doesn't work, left and right arrow does work. We have three TLF text fields that are used to update score, lives and show you final score. If i turn these into classical text they stop working.
    Things we have tried: Changing default linkage from RLS to Merged into code, changing the text boxes to classical text(they then stop working), made sure the paths are correct(all files are in the same directory including the .swz file)
    This is the code from the soundclass:
    package 
        import flash.net.URLRequest;
        import flash.media.Sound;
        import flash.media.SoundChannel;
        import flash.events.*;
        public class MySound
            private var bgSound:Sound;
            private var fireSound:Sound;
            private var waterSound:Sound;
            private var earthSound:Sound;
            private var lightSound:Sound;
            private var soundChannel:SoundChannel;
            public function MySound()
                soundChannel = new SoundChannel();
                bgSound = new Sound();
                var req:URLRequest = new URLRequest("BackgroundSound.mp3");
                bgSound.load(req);
                //fire
                fireSound = new Sound();
                var req2:URLRequest = new URLRequest("soundFire.mp3");
                fireSound.load(req2);
                // water
                waterSound = new Sound();
                var req3:URLRequest = new URLRequest("soundWater.mp3");
                waterSound.load(req3);
                // earth
                earthSound = new Sound();
                var req4:URLRequest = new URLRequest("soundEarth.mp3");
                earthSound.load(req4);
                // light
                lightSound = new Sound();
                var req5:URLRequest = new URLRequest("soundLight.mp3");
                lightSound.load(req5);
            public function playBgSound()
                soundChannel = bgSound.play(0, 999999);
            public function stopBgSound()
                soundChannel.stop();
            public function playFireSound()
                fireSound.play();
            public function playWaterSound()
                waterSound.play();
            public function playEarthSound()
                earthSound.play();
            public function playLightSound()
                lightSound.play();
    I can somewhat get that sound can bugg out, but why does spacebar stop functioning? ANy help is greatly appreciated as this has to be delivered in twelve hours(published online) for a school assignment.

    Also might add publishing it locally in my own browser everything works, as does ofcourse playing it in flash itself. Changing from RLS to merged into code stops the error from coming, but doesn´t fix the problem on the server.
    Code from main class related to sound and spacebar:
    import flash.display.*;
        import flash.events.*;
        import flash.ui.Keyboard;
        import flash.text.TextField;
        import flash.media.Sound;
        import flash.net.URLRequest;
        import flash.events.MouseEvent;
        import flash.utils.Timer;
        import flash.events.TimerEvent;
        public class main extends MovieClip
            private var fireTimer:Timer; //delay between shots
            private var canFire:Boolean = true;
            private var mySound:MySound;
            private var bulletSpeed:Number = -450;
              public function main()
                //load sounds
                mySound = new MySound();
            private function playGame(event:MouseEvent)
                gotoAndStop(2);
                // initialize
                myLives = 5;
                myHitsNo = 0;
                weaponType = 1;
                mybullets = new Array();
                enemys = new Array();       
                myScoreTxt.text = "Score: " + myHitsNo;
                myLivesTxt.text = "Lives: " + myLives;   
                fireTimer = new Timer(400, 1);
                fireTimer.addEventListener(TimerEvent.TIMER, shootTimerHandler, false, 0, true);
                stage.addEventListener(KeyboardEvent.KEY_DOWN, listenKeyDown);
                stage.addEventListener(Event.ENTER_FRAME, addEnemy);
                stage.addEventListener(Event.ENTER_FRAME, checkCollision);   
                player = new thePlayer(stage.stageWidth-40, spawnPoint2);// stage.stageHeight/2);
                stage.focus = player;
                addChild(player);
                mySound.playBgSound();
    public function listenKeyDown(event:KeyboardEvent)  // Controls and weapontype selector
                if (event.keyCode == 37) //left
                    player.movethePlayerDown();
                if (event.keyCode == 39) //right
                    player.movethePlayerUp();
    if (event.keyCode == Keyboard.SPACE) //space
                    shootBullet();
                    //soundFX.attachSound("Pistol Fire.wav");
                    //soundFX.start();

  • My iPod touch 4th gen white's home button doesn't work the first time I press it, but the second time.

    My home button doesn't work the first time I press it, but the second time.  This is very annoying.  Why is it doing this?

    - Try a reset. It cures many ills and nothing is lost
    Reset iPod touch: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    -If a hardware problem see:
    fix for Home button

  • Pressing D on boot to get into Diagnostic mode doesn't work. Macbook Pro with OSX 10.6.8

    My charger has stopped working all of a sudden for my MacBook Pro. I tried my friends charger and it works. I've seen a few people mentioning that their charger started working again after running a Diagnostic test at boot up by pressing "D" after powering up the computer.
    I see this instruction all over the web, but it doesn't work for me! I have the OSX DVD in the drive. Holding down "C" while booting makes it boot on the DVD, and holding the Option key will give me a boot menu. But it just boots normally while holding down "D".
    Am I missing something?

    Press D during startup
    Start up in Apple Hardware Test (AHT).
    Apple Hardware Test is included on the DVDs that are shipped with some Macintosh computers. If the copy on your hard drive becomes unavailable, use the DVDs to run Apple Hardware Test.
    For Intel-based Apple computers that shipped with Mac OS X v10.5.4 or earlier, Apple Hardware Test is located on the Mac OS X Install Disc 1 and should be included with your computer.
    For Apple computers that shipped with Mac OS X v10.5.5 to 10.6.7, Apple Hardware Test is located on the Applications Install Disc 2 and should be included with your computer.
    For some Apple computers that shipped with OS X Lion, if Apple Hardware Test cannot be found on the hard drive, an Internet-based version starts up instead.

  • I upload my iPhone 4s and it went to recovery mode i have tried to exit recovery mode by pressing the home  and the power bottom but it doesn't work what more can i do please help me

    i upload my iPhone 4s and it went to recovery mode i have tried to exit recovery mode by pressing the home  and the power bottom but it doesn't work what more can i do please help me

    http://support.apple.com/kb/ht1808

  • Every time I download a new app or update an old one it doesn't work. It gives an error message saying it is unable to download the application. I have 2 choices. Retry or done. Retry doesn't work so I press done. What can I do to fix this?

    Every time I download a new app or update an old one it doesn't work. It gives an error message saying it is unable to download the application. I have 2 choices. Retry or done. Retry doesn't work so I press done. What can I do to fix this? Someone please help!

    Try using Google's DNS instead of the one your IPS is providing.
    - To change on the iPod go to Settings>wifi and change the DNS to 8.8.8.8
    - For the computer see:
    Public DNS — Google Developers
    - Did anything happen to your router right before this started? Maybe the router is blocking the port used.

  • HT201365 I just updated to ios 7 on my iPhone 4 how do you turn the apps off when your not using them? The old way of double clicking and then pressing the app until a red minus button comes doesn't work it opens it back up!?

    I just updated to ios 7 on my iPhone 4 how do you turn the apps off when your not using them? The old way of double clicking and then pressing the app until a red minus button comes doesn't work it opens it back up!?

    Double click home button, then swipe up on app picture (not the icon itself)

  • It doesn't work when I press "transfer purchased items from ipod" and I don't know specidicly whitch item I need to transfer

    It doesn't work when I press "transfer purchased items from ipod" and I don't know specidicly whitch item I need to transfer.
    Whenever i press "transfer purchased items from ipod", itunes sync's for about 3 seconds, but I still can't install updates on the ipod without itues warning me about purchased items on the ipod, that aren't in the itunes library. I've tried folowing the steps in itunes help, but I can only find a step guide for when you know the specific item that needs transferring, and I donøt know that specific item.

    This Apple Tech Note explains the process:
    http://support.apple.com/kb/ht1848
    It will transfer all purchased items that the computer you are transferring to is authorised to play: you don't have to select the items.

  • First key pressed doesn't work?

    Strange, but lately, I would say about 85% of the time, the first key I hit on my keyboard doesn't work. It doesn't matter what key, letter or number, it doesn't work. I'll look up at what I've typed and the first letter is always missing. It's turning into a huge nuisance and I don't think it's me not pressing hard enough or something silly like that, because it happens so very often and I certainly am not changing the way I type for the last 30 years or so.
    Any ideas what could be causing it? It's as if it takes a second for the keyboard to realize it's being used and by then, I've typed on by.
    I'm using the standard Apple keyboard that came with the G5, but it's not the original. This one I've had for about a year and a half.
    tia.

    I had your issue on two Macs for over a year. A combination of the following cleared it up for me;
    Try using Disk Utility to do a Disk Repair, as shown in this link, while booted up on your install disk.
    You could have some directory corruption. Let us know what errors Disk Utility reports and if DU was able to repair them.
    Then I Repaired Permissions in DU using the version on your hard drive.
    Then I downloaded the
    Combo Update, yours would be the 10.5.4 Combo
    You can apply it right over the one you have now with no trouble--use the link, not Software Updates version.
    Repaired Permissions and made sure all the other updates for my Mac's were up to date.
    Then I went further with it, and used a utility you may not have.
    I used and would recommend DiskWarrior.
    After all these actions the issue I had (yours) disappeared. Some here have said one of the recent updates dealt with this agravating condition, and if so, thank you Apple!
    I feel my tips are what fixed it for me. I was a big contributor to two enormous threads on this problem, and have read every post on the subject.
    Hope this helps.
    DALE

  • When I am on a call and I come to hang up, the phone which when to my ear has a black screen, starts to light up then blacks out intermittently and in the brief moments it is lit up, the hang up button doesn't work unless I press home or lock buttons firs

    When I am on a call and I come to hang up, the phone which when to my ear has a black screen, starts to light up so I can see and click the hang up button, but it then blacks out intermittently and in the brief moments it is lit up, the hang up button doesn't work unless I press the home or lock buttons first

    Wow- thanks Jim! I removed the case and voila... it worked. Knock on wood that you solved my problem with such an incredibly simple solution. I'll find out where this proximity sensor is and make sure my case does not interfere with it.
    Thanks so much.
    Annick

  • Help. My home button doesn't work. I've to press it several times to get it to function. The phone has 4 months. I've already update software, restarted and calibrated it. I was thinking to go to the service. Has 1 year hardware warranty. Suggestions?

    Help. My home button doesn't work. I've to press it several times to get it to function. The phone has 4 months. I've already update software, restarted and calibrated it. I was thinking to go to the service. Has 1 year hardware warranty. Suggestions?

    There's another thread with similar problems.
    https://discussions.apple.com/thread/2595841?start=510&tstart=0
    I wouldn't suggest it though, since it may void your warrantee. Apple will replace it if you bring it in. The genius bar guys aren't too bright, well most of them. But they'll go through the usual diagnosis steps then issue you a replacement if they have them in stock.
    I have to admit, Apple has one of the best replacement services that I've ever experience. If you're familiar with costco, the return/exchange process is very quick and painless.

Maybe you are looking for

  • Creation of sales order with reference to inquiry no.

    Hi gurus! Im having trouble in creation of sales order with reference to inquiry no. The scenario is like this one. In va11(creation of inquiry no.), in the field of <b>SERVICE LEVEL</b>, i indicated a value. after the creation of inquiry no, i want

  • IWeb Site Appears Wonky in Other Browsers

    Good Morning! I've built a site with iWeb '08 that looks great when viewed in Safari and Firefox on my Mac (www.stevemaxwell.ca), but looks wonky when viewed in IE in Windows Vista. It shows a different kind of wonkiness when viewed in IE in Windows

  • Intermittent bounce backs and non receiving of emails

    Lately I has discovered that some people in various parts of the world have been sending me emails and I never get the emails. So other friends have been get bounce back emails when they send to my .mac. I have been having so many problems with .mac

  • Processor idle / usage

    Hi I have so much power in this MP with 2.8GHz 8 core etc etc... but activity monitor always tells me there's loads of idle processor power. Today i was running Aperture (it wasn't doing much, but it was running), i was rendering some video in Final

  • IPod Meltdown

    Hello all, I plugged my iPod into the wall charger and when I went to retrieve it, the iPod was extremely warm. I turned it on and all of my songs were gone, and it was lethargic and unresponsive. I plugged it into the computer to sync and restore it