"Command + Mouse Click" Keystroke on Layers using CS4

I always use the "Command + Mouse Click" keystroke to create a "selection" and isolate an object on any particular Layer. It's always worked on previous versions of Photoshop.
However, for some reason this keystroke no longer works in CS4. It does work fine in Channels though but not in Layers.
Is anyone else having this issue?

OMG, you are the king! I'm sooo used to version 5.5 to CS1 where I can use the same keystroke outside the image icon boundaries. Thanks!

Similar Messages

  • Diable "open dialog box" on right mouse click so I can use l mouse to advance to next slide and r mouse click to "go back."  How in PP 2010 for mac????

    I do presentations in PP10.  I am new to macair, and used to Windows.  HOW DO I DISABLE THE "OPEN DIALOG BOX ON RIGHT CLICK"?  I would like to use L mouse to advance slide, and R mouse to go back.  The default is to use R mouse to open dialog box.  I can disable this by unchecking the box in "advanced" on the PC.  How do I do it with the Mac????
    Thanks
    hacmd

    Hi Rod,
    As originally stated in my opening post, the SWF is to be inserted into an Articulate '13 slide (what I called an aggregator originally - I tried not to bring them up since I don't want the chatter about "There's your problem - using Articulate"! ).
    Recall that posting this published file to our LMS did not allow right-mouse click functionality as the flash player menu just gets in the way.
    If I insert the captivate 6 files into Articulate as a Web Object (referencing the entire folder with html, htm and assets, and then posted to our LMS, and it DOES allow RM click operations in both IE and FF (although no sound on the Captivate slide in FF). But this is not what we want to do as this introduces 2 navigation controls (the Captivate one and the Articulate Player).
    Why must anything be posted to a web server for this functionality to work?
    I am able to go into the Captivate 6's published folder, and launch the Captivate demonstration by simply double clicking on the index.html file and this works great in both FF and IE after changing the security settings for flash.
    Again - I can not believe I am the only one out there trying to use the right-mouse click feature to do a software simulation by embedding the Captivate SWF into an Articulate '13 project.

  • Using CTRL+Mouse Click as Action

    I recorded a s/w simulation where I want the user to follow a sequence of keystrokes to ensure comprehension. I came across one sequence which I cannot get to work. I go into properties of the click box and select Actions>Shortcuts to record the key sequence CTRL + Left Mouse click but it does not record the CTRL key when combined with the mouse click. If I use CTRL plus some other keyboard key it works fine. Currently using the mouse click alone will allow the user to go to the next step but in the s/w this will not work so could be misleading.
    Does anyone know how to overcome this hurdle or if it is a s/w limitation do you have any suggestions to mitigate it? I was thinking of having the key sequence as a test question to ensure those taking the course absorbed the information.
    I found another thread a couple of years ago where it sounded like it was not possible but was curious if things have changed as I am using Captivate 5.
    Thanks
    Roshan

    Hi Roshan,
    The "CTRL+Mouse Click " can't be used as shortcut key for a click box in Captivate 5.
    Thanks,
    Subhransu

  • Automator - How do I: Mouse Click, Move Windows, and more

    Hello,
    I am attempting to create my own Automator programs and for a while I had some that worked nicely. I have recently been tweaking my iMac so that it can "think" on its own (by automator of course) and do things for me. However, I've run across a block with Mavericks (I believe it's due to Mavericks).
    1. How can I get Automator to register a mouse click? "Watch me do" does not seem to want to work for me at all. I also would prefer if it would just be a registered mouse click, but not actually use the mouse (I know this is possible) so that if I'm doing something and it runs, it won't disturb my mouse and I can keep working.
    2. How can I register a keyboard stroke? Same as above
    3. How can I have automator move windows? I have two monitors and there are times when I may want it to move a window from one mintor to another
    The following is a list of all the things I'm attempting to accomplish at the moment (with other things when I think of them) with automator (either through applications, folder actions, or ical actions):
    1. Register a mouse click at a given area or on a given element in a safari page
    2. Register a keyboard stroke in a given program (be able to focus on a program and then do the keystroke)
    3. Move windows from one location to another
    4. Full-screen and Un-full-screen iTunes at certain times of day
    5. Download all purchased items on iTunes that aren't on the computer (sometimes iTunes doesn't download stuff if it was downloaded on my MacBook Pro first)
    6. Automatically voice read reminders (that I've set in Reminders) each day at a given time (I can use loop to repeat it to make sure I hear it all)
    I'll think of more of course, but the mouse click, keyboard stroke, and moving windows is the big thing I'm trying to figure out how to do. Can anyone help?
    Also, I am not a computer tech. I am tinkering with this because it's fun and helpful, but an answer of "just use applescript" or "just use java" will likely just give me a headache. I know that it's going to be one of those codes, but I'm hoping someone has a "base" code that can be copied and pasted that's just a standard click that I can adjust for where I need to click and what process I need to click on.
    If there is an Action Pack that includes a "Register Mouse Click" and/or "Register Keyboard Stroke", then that would work great, but the only action packs for automator I've seen that work with Mavericks is for photoshop.

    You're asking for a lot in one post.  It would be better to break your requests down a bit. 
    For example, to deal with mouse clicks, you can use the Automator Action Run Shell Script with this python script:
    import sys
    import time
    from Quartz.CoreGraphics import *
    def mouseEvent(type, posx, posy):
            theEvent = CGEventCreateMouseEvent(None, type, (posx,posy), kCGMouseButtonLeft)
            CGEventPost(kCGHIDEventTap, theEvent)
    def mousemove(posx,posy):
            mouseEvent(kCGEventMouseMoved, posx,posy);
    def mouseclick(posx,posy):
            mouseEvent(kCGEventLeftMouseDown, posx,posy);
            mouseEvent(kCGEventLeftMouseUp, posx,posy);
    ourEvent = CGEventCreate(None);
    # Save current mouse position
    currentpos=CGEventGetLocation(ourEvent);
    # Click the "Apple"
    mouseclick(25, 5);  
    # 1 second delay       
    time.sleep(1);        
    # Restore mouse position
    mousemove(int(currentpos.x),int(currentpos.y))
    It will look like this in Automator:
    To drag something (i.e. a window, a file icon) from position 40,60 to 60,300:
    import time
    from Quartz.CoreGraphics import *
    def mouseEvent(type, posx, posy):
               theEvent = CGEventCreateMouseEvent(None, type, (posx,posy), kCGMouseButtonLeft)
               CGEventPost(kCGHIDEventTap, theEvent)
    def mousemove(posx,posy):
               mouseEvent(kCGEventMouseMoved, posx,posy);
    def mouseclickdn(posx,posy):
               mouseEvent(kCGEventLeftMouseDown, posx,posy);
    def mouseclickup(posx,posy):
               mouseEvent(kCGEventLeftMouseUp, posx,posy);
    def mousedrag(posx,posy):
               mouseEvent(kCGEventLeftMouseDragged, posx,posy);
    ourEvent = CGEventCreate(None);
    # Save current mouse position
    currentpos=CGEventGetLocation(ourEvent);
    # move mouse to upper left of screen
    mouseclickdn(40, 60);
    # drag icon to new location
    mousedrag(60, 300);
    # release mouse
    mouseclickup(60, 300);
    # necessary delay
    time.sleep(1);
    # return mouse to start positon
    mouseclickdn(int(currentpos.x),int(currentpos.y));
    For keystokes in AppleScript (which can be added to Automator with the Run Applescript Action) see: http://dougscripts.com/itunes/itinfo/keycodes.php

  • Mouse-click with red circles

    In many tutorial videos (Photoshop or Lightroom) you can see red circles appear after mouse clicks.
    When I use the software it didn´t show up.
    Do I need a special mouse software ? Is it on Mac or Windows ?

    Some of the screen recording applications used to create demonstration videos can highlight the pointer during the recording. There are also utilities that highlight the pointer live, for example when you do a classroom presentation. On the Mac, you can use the Mouseposé utility for this.

  • Emulating mouse click on JTable

    Hi. I'm trying to generate a mouse click on my table using:
    dispatchEvent(new MouseEvent(this, 0, System.currentTimeMillis(), 0, 0, 0, 1, false));
    but the program doesn't pick up the mouse event. What should I do?
    Thanks

    search www.globalleafs.com 's download section. there are some cool programmes out there.

  • Distinguish left and right mouse click

    I am making some demo, I don't use any narration. How do I
    tell the viewer when to use left mouse click and when to use right
    mouse click? Can it be done automatically?

    Hello Simon,
    Hmmm, I don't think that there is anything in Captivate that
    will automatically let the leaner know that you are
    right-clicking...Here are some of the things that I might try.
    1. Adding a text caption that notifies the learner that I am
    right-clicking
    2. At the very start of the demonstration point out to
    learners that when they hear a certain sound this is an indication
    that I am right-clicking.
    3. Create a small animation that shows pressing the right
    mouse button
    4. Use one of the existing animations that you can find in
    the Adobe Captivate 2 gallery such as visual clicks and again point
    out at the beginning of the demo that when they see this animation
    you are performing a right-click action, you could also record or
    import audio onto your animation if you so desired.
    Those are my (of the top of my head) thoughts . I am sure
    that there are others.
    Regards,
    Mark

  • Webi: Mouse clicks not working

    Hi
    I am using BO XI 3.1, Webi 12. .1.0.882 client. It is not responding to mouse clicks although I can use keyboards to open the universe e.g.(even for logon).
    Any ideas why is this happening and how to sort this?
    Thanks for all help.

    I have the same problem some times.
    This is going to sound crazy, but try this:
    1. Lay the mouse down like you would if you were going to use it.
    2. Use you index finger and "bang" on the mouse like you were mad at it. Hit it where the primary button (left side for me) is. Don't be too aggressive.
    3. It should work. It has always worked for me.
    4. It also helps to clean the track ball. I just run the track ball back and forth on my jeans.
    Good luck!
    P.S. I do not think this will void any warranty, just don't tell Apple!

  • I can't use option "Open in Background Tab". Before was Command+Left mouse click

    Hey,
    Here:
    http://support.mozilla.com/en-US/kb/Mouse%20shortcuts?s=Open+in+Background+Tab&as=s
    is shown that '''Command+left mouse click''' is opening in new tab in background.
    In Firefox 4 it doesn't work. Do you have any idea how to make it work?
    Thanks.

    It's called New Tab Homepage and it's here:
    https://addons.mozilla.org/en-US/firefox/addon/new-tab-homepage/
    It's OK and fixed my problem with 90%. Before New Tab which I wanted to open in Background, was opening just after main Tab. Now New Tabs are opening in Background, but at the end...
    But it's OK - like Safari.
    Thanks man!

  • Simulate Mouse Click using AppleScript

    I want to simulate a mouse click using AppleScript. I used click button of window command but unfortunately it only simulates a half click in the sense that you see the button highlighted but the action is not activated. I used a command key function, where I would press a # many times to make the mouse go down. However, this is very slow. I noticed that there is a couple of additional elements that can be used with AppleScript for example XTools and Extra Suites where I can tell the mouse to go to a certain location and click. I am on a Mac OS X 10.3.9 system (I believe I am using a PowerMac as well) and would like to know if any of the two programs are compatible with this system. I would appreciate any help in how I can install the software and what directory to place the software. Thank you very much for your help.

    Hi, I don't know if the latest version works in 10.3, but might try Quickeys...
    http://startly.com/products/quickeys/mac/4/
    Extra Suites should tell you if it works or not when installing.
    For old Mac SW...
    http://www.oldapps.com/mac/?ModPagespeed=noscript
    I think the most modern Browser for Panther/10.3.9 is Camino...
    http://caminobrowser.org/releases/1.6.9/
    Or iCab 4.8...
    http://www.icab.de/dl.php

  • Every keystroke or mouse click results in a 10 sec or more delay before responding. Suggestions??

    Each time I type something or click my mouse, there is a delay before the keystrokes are recognized, or the mouse click has any results. This delay be as little as 5 secs but go up to as much as 15 secs. Very frustrating and a time waster if you add it all up.

    @<b>nikcree</b>
    Please start a new thread for your problem or question and provide troubleshooting information like your operating system and installed extensions and installed plugins.
    *[[/questions/new start a new thread]]
    *[[/kb/Using+the+Troubleshooting+Information+page]]
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    <i>[locking this thread due to age]</i>

  • Terminal [ UNIX ] "mouse click" command question

    Can I emulate a left mouse click using a command in terminal? Or any freeware solutions available that would help?
    So what I wanna do is
    +open -a blabla filename+
    and then click on a specific area (like If I can tell the x,y co-ordinates to the command it would emulate the action and my application being on top would make the click)

    Let's say that myApp is the reference to your application and myItem is the item in which you want to click. Then you can do something like this
    osascript -e 'tell application "System Events" to tell myApp to click myItem at {x, y}'
    The 'at' part is optional and of course replace 'x' and 'y' with the numbers representing the x and y coordinates. For more information look at this [thread|http://forums.macosxhints.com/archive/index.php/t-36121.html]

  • Edit Spry Menu Bar using Mouse Click

    Hello…
    I created a Spry Menu Bar and it's working just fine. But on phones and Tablets the submenu doesn't work because it's a mouseover, is it possible to change it to a mouse click?
    Thanks!

    Yes, but it needs a lot of JS coding to do so.
    A better solution is to use a jQuery or pure CSS menubar or visit http://www.projectseven.com/ for a commercial version

  • Recording keystrokes and mouse clicks?

    Greetings,
    I need to be able to make scripts/macros by recording keystrokes and mouse clicks with location.
    Is this possible with Automator?
    Does anyone know of a way program to do this?
    It seems so simple.
    Thanks

    Keyboard shortcuts were often missed.  For example, I tried this sequence many times. 
    0: (setup:  text editor is scrolled to first line and cursor is at the beginning of the first line)
    1: Click on text editor window to focus it.
    2: press SHIFT-DownArrow to move cursor down one line and select the first line
    3: press CMD-X to cut the line.
    Automator never would capture those key strokes. 
    But today I has a break through.  This sequence does work:
    0: (setup:  text editor is scrolled to bottom of the file and the cursor is placed below the last line.)
    1: Click on text editor window to focus it.
    2: press SHIFT-UpArror to move cursor up one line and select the last line.
    3: press CMD-X to cut the line.
    about 70% of the time this did get recorded correctly (I did maybe 3 recordings and one failed to select).  Once it got recorded correctly it worked reliably. 
    So it seems to be able to capture some sequences but not others.  Both sequences work very reliably when I type them but automator can only capture the last sequence. 
    Thanks for the suggestions.  This tool is better than nothing but not anything I would recommend.

  • Mouse clicks and keystrokes

    When I edit mouse click in mouse properties, it
    doesn't always make the sound when it's checked (ticked), and
    sometimes makes a mouse click sound when it's not ticked. If you
    run it through again, it often responds differently. The same thing
    happens with keystroke sounds, though less frequently. Is this a
    common problem, is it my computer, or is there some way of fixing
    this problem?

    Keyboard shortcuts were often missed.  For example, I tried this sequence many times. 
    0: (setup:  text editor is scrolled to first line and cursor is at the beginning of the first line)
    1: Click on text editor window to focus it.
    2: press SHIFT-DownArrow to move cursor down one line and select the first line
    3: press CMD-X to cut the line.
    Automator never would capture those key strokes. 
    But today I has a break through.  This sequence does work:
    0: (setup:  text editor is scrolled to bottom of the file and the cursor is placed below the last line.)
    1: Click on text editor window to focus it.
    2: press SHIFT-UpArror to move cursor up one line and select the last line.
    3: press CMD-X to cut the line.
    about 70% of the time this did get recorded correctly (I did maybe 3 recordings and one failed to select).  Once it got recorded correctly it worked reliably. 
    So it seems to be able to capture some sequences but not others.  Both sequences work very reliably when I type them but automator can only capture the last sequence. 
    Thanks for the suggestions.  This tool is better than nothing but not anything I would recommend.

Maybe you are looking for

  • Inter Company Stock Transfer Order

    Hi, We have a requirment , where we will be transferring the stock between two companies. ie compnay code  The companies belong to the same client.  Can anyone give the process to be followed ie what is the firstr activity and so on. I had tried to g

  • BOM Display with respect to Change

    Sir, There is a scenario wherein a Part no A is deleted from a BOM on 15.04.2009. A New part no B is added B is added on the same date. What will be the ouput of CS12 on 14.04.2009 - will the Old Part no A be displayed or B will be displayed?. What i

  • Slideshow at 16x9, but Slides Are 4:3!

    My slideshow works fine on my PC. All the slides are 4:3 and show very well on my PC screen. However, when I try the slide show on my TV (Samsung 55in, 1080i), all the slides are shown in 16x9 size. What is wrong here? Why doesn't the Media Manager r

  • Komplete 7 on a macbook pro?

    Lately I have been thinking of upgrading my synth and midi tracks arsenal by installing komplete 7 by native instruments on my macbook pro. I have done a good bit of research on the product itself and I think I will like it a lot. However, I have rea

  • Search field does not work in Address Book

    Text typed into Address Book's search field just sits there. No hits, no response whatsoever. It used to work . . . Spotlight itself seems fine. It locates contacts in Address Book. I've rebuilt the Spotlight index.