Keyboard shortcuts and You Control

I've just transferred my data to a new iMac from my old dual G4. The first time I did it there was chaos. Suspecting You Control/You Control desktops might be implicated I did a clean reinstall without them and everything's working fine. But I hate not having those programmes to lean on. So I tried setting Apple's keyboard shortcuts to replace my You Control hot keys. They don't work. When I press the shortcut keys I've chosen nothing happens. I've searched the HELP menu and got no help at all. As far as I can tell I've done everything right. My shortcuts are listed below all the Apple ones. I've killed any that conflict with mine so there are no yellow triangles warning me of conflicts. Can somebody tell me where I've gone wrong? And while we're on the subject, is anybody else having problems with You software in 10.5.2 or 10.5.3?

Thank you for answering my question. One more question: Why is there a + and a - sign down the bottom, and why was I encouraged to go through the rigmarole I went through if it led nowhere? When I hit the + I was given a series of tasks to perform. Why was I doing that when it achieved nothing? Or did it achieve something that I still don't know about?
Anyway I've bitten the bullet and reinstalled You Control and it's working perfectly. Incidentally, some time ago I asked again and again if anybody could explain to me how I got an extra clock in my menu bar, a clock that had a pull-down menu showing me the time in several cities I'm not interested in, my iCal calendar for the next 3 months and the current date. Nobody could come up with an answer but now I know. It's You Control, which offers this useful clock. Now that I know where it's coming from I can set it up with cities I am interested in. Thanks to everyone who scratched their heads on my behalf. Scratch no more!

Similar Messages

  • Is there a way to move my keyboard shortcuts and preferences from CS3 to CS5?

    I just loaded CS5 and I'm starting to work with it. Big difference from CS3 and I'm finding things don't work the same at all. Anything i can do to make this seem more familiar, like using the same keyboard shortcuts and workspaces?

    Workspaces are stored as XML files in your user profile on Windows or the user library on Mac, in a subfolder called, strangely enough, workspaces.
    You may have run afoul of the new "content grabber" in the center of a frame that allows you to move the content without changing tools. Looks sort of like a dounut, or the center spot on some SLR camera focus viewfinders. You'll either love it or hate it, and it can be switched on or off in the View menu.

  • CS3 standardizing keyboard shortcuts and other prefs ??

    Hello. I have 30+ computers that are running Indesign CS3. Instead of going around to each one and setting all keyboard shortcuts and things like default stroke weight and also prefs. like, Edit > Preferences > Advanced Type and the Small cap setting as well as others. I would like them all to start with my sites default prefs.
    Where are these prefs stored. I know the keyboard shortcuts are in the Indesign Shortcut Sets folder, where are all the Edit > Preferences things stored?
    If I set one to the way I want it and than copy these files to all computers will this fix my problem?
    What are the files, how should I accomplish this?
    thanks

    Preferences for CS3 are saved in two files in the user profile. The first is InDesign Defaults, under \Documents and Settings\[username]\Application Data\Adobe\InDesign\Version 5.0 and the second is InDesign Saved Data under \Documents and Settings\[username]\Local Settings\Application Data\Adobe\InDesign\Version 5.0\Caches (these are the XP locations. paths are slightly different for Vista) These are hidden files.
    The documentation says that it is not recommended to copy these files from one machine to another, and that it is recommended that you script it instead, but I've only found one user who's been able to do that, and since the script was written for a major client he hasn't been willing or able to share it with the world. I've been copying and pasting these files onto multiple machines at my school for years without any trouble, but, if there are differences in configuration from machine to machine you could cause some instabilities. Set a restore point and try it.
    Unless you have a system freeze program in place, however, this is largely an exercise in futility. Preferences, as noted, are user-specific and changeable, and get written each time the application closes. The best you'll get is a common starting point.
    Peter

  • XFCE sometimes forgets keyboard shortcut and layouts

    Hello,
    I have been using XFCE since gnome3. However, I have the problem with keyboard applet on my desktop (x86-64). I am using us and cz keyboards and switching with keyboard shortcut "alt+shift". Unfortunatelly, the applet once or twice a week forgets this keyboard shortcut and sometimes, it forgets alternative keyboard layout (cz) too.
    Everytime it forgets it, I have to set it up again.
    I did not realized, when this problem appears. There is no relationship with restart, running some programs, etc.. It seems, it appears randomly, with no corelation to any operation I make.
    There is no problem on the second PC (laptop) with archlinux and xfce (but i686).
    I think, this problem appeared when I installed xfce for the first time (6 months ago).
    Any suggestions to solve this problem? Thanks a lot.

    ConnorBehan wrote:Unfortunately, most goodies (my own included) are not as well written as the core of Xfce and tend to lose or corrupt their config files from time to time. I have config files for some panel plugins saved in a directory I made called "/home/backups" and I have a line in my rc.local that force copies them back to ~/.config/xfce4/panel/
    unfortunately, changing owner or read only mode did not help. I will have to do it by your way, but in cron, because it happens during normal work suddenly and I restart the PC once a week.

  • How can I set up a custom keyboard shortcut for volume control?

    Hi all,
    I use my black MacBook at work, connected to an external monitor and external keyboard. I'm looking for a way to set up the F buttons on my external keyboard as volume control, just as they do on my laptop keyboard. Looking for F3 to F5 to be volume mute, down, and up, respectively.
    I tried going into Keyboard Shortcuts in System Preferences but since there is no menu item for volume control I can't seem to add it. Anyone know how I can go about doing this or what I'm missing?
    Thanks
    Mike

    paste the following into Applescrpt Editor (it's in /Applications/Utilities)
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #ADD8E6;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    set curVolume to output volume of (get volume settings)
    -- work out the new setting
    if curVolume < 96 then
    set newVolume to curVolume + 5
    else
    -- can't go over 100
    set newVolume to 100
    end if
    -- and apply it
    set volume output volume newVolume</pre>
    this script will increase volume by 5 (out of 100) any time you run it. you can adjust this of course. save the script somewhere.
    You can use a 3rd part app launcher to bind a keyboard shortcut to it. I use Butler. there are many others: Quicksilver, ikeys, quickeys, Spark, Launchbar.
    this will work the fastest.
    If you don't want to use 3rd party tools for this you can make a service using automator but that might be a bit slower than the first option. open automator. it will give you a pulldown screen wiuth the choice of what you want to make. choose "service". set it to receive no input and be available in all applications. add the following "run apple script" action to the service
    <pre style="
    font-family: Monaco, 'Courier New', Courier, monospace;
    font-size: 10px;
    margin: 0px;
    padding: 5px;
    border: 1px solid #000000;
    width: 720px;
    color: #000000;
    background-color: #ADD8E6;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    on run {input, parameters}
    set curVolume to output volume of (get volume settings)
    -- work out the new setting
    if curVolume < 96 then
    set newVolume to curVolume + 5
    else
    -- can't go over 100
    set newVolume to 100
    end if
    -- and apply it
    set volume output volume newVolume
    end run</pre>
    save the service, go to keyboard system preferences->keyboard shortcuts->services and make a shortcut for the service you just created.

  • Keyboard Shortcut for Volume Control

    Dear all,
    Is there a way to increase or decrease the volume using a keyboard shortcut?? Any help here will be much appreciated.

    Use the side edge volume controls.
    There's no keyboard controls that I know of, other than the # key might place your device on the Silent profile (or the top edge MUTE key )
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • New problem keyboard shortcuts for mission control in Mavericks

    I have a MacBook Pro Retina and make heavy use of multiple desktops in Mission Control and use control keys (^1, ^2, etc.) to switch desktops.
    Sometimes I use the built-in laptop keyboard and sometimes I have an external keyboard attached, which has a numeric keypad.
    Previously, pressing "control" and the "1"  on the numeric keypad worked the same as presing "control" and the "1" in the row of number keys across the top of the keyboard. Now, in Mavericks, it seems like the system does not treat these as the same keystrokes. I cannot find a way to configure the keyboard shortcuts so that I can use the numeric keypad to switch Mission Control desktops when the keyboard is attached and still be able to use the regular number keys when I'm working on the laptop's built-in keyboard.
    Any ideas how to fix this?
    Thanks,
    John

    I figured it out.  ^1 typed from the number keys is not equivalent to ^1 typed from the numeric keypad.  So, when you go into system prefs / keyboard / shortcuts / mission control, it may LOOK the same, but it is not.  You simply have to select each of your spaces and change them to ^1, ^2, ^3, etc., using the NUMERIC keypad.  It will look the same to you, but it will work properly after that.

  • Custom keyboard shortcuts and editing multiple layers in Flash CS4

    Hi, all -
    CS3 -> CS4 transition newb here who's getting increasingly frustrated with the new motion tweens; however, for this project, I'm working in a 3D space and require using them, so I'm dealing with this bit by painful bit. I found the tip about Split Motion, but first question: how do you apply Split Motion across several layers at the same time? I have six different tweens, and in CS3, I used to be able to shift-click or click-drag across frames and apply a command to all of them (for example, hit F5 to add frames), but Split Motion is requiring me to right-click on each and every layer. This is really laborious, and I worry about future animations that might be more complex.
    Similarly, I tend to add custom keyboard shortcuts to each of my Flash versions for commands I use frequently and don't want to right-click a menu for (such as "add motion tween") - however, I can't seem to find where to create a custom shortcut for either that, or Split Motion.
    Any and all help would be appreciated as I muddle through this. Honestly, guys, I WANT to like the new version and there's so many added features, but it's hampering my workflow so bad I want to pummel it with sticks.

    Hey there,
    I definitely hear you about Split Motion. There is an enhancement request for supporting multiple layers, and adding it as a keyboard shortcut. The first one is tricky, but the second one is not. I think there was hope that splitting motions wouldn't be necessary much (especially since you have to be careful when doing so when eases are involved), which is why the eventual need for more functionality related to split motion was realized a bit late in the schedule.
    Now regarding other operations, such as you mentioned F5 to insert frames - that and other operations (inserting certain types of property keyframes, F6, and so on) work just fine.
    You can apply a shortcut to Create Motion Tween in the custom keyboard shortcut dialog.  Not all operations in the program are available though (most context menu items aren't), which is why unfortunately why we don't see Split Motion yet.
    It might be possible to avoid Split Motion though with another workflow. What are you using the feature for?  Just curious in case I can help.
    Jen.

  • [BUG] Adobe Bridge does not support OSX 10.10's "Go Back" keyboard shortcut and does not have a custom one.

    Adobe Bridge does not support OSX 10.10's "Go Back" keyboard shortcut which is `command + shift + [` and does not have a custom one.
    I tried "delete" key which is backspace for Windows. It will do delete identical to "delete X" key (which is delete key for Windows).
    Sidenote: `command + shift + \` is to go back in views (switch views), not folder structure.

    Exactly where do you want to use a GO BACK "shortcut" in Bridge?  Maybe I don't even understand what you mean by Go Back.  Bridge is only a file browser, nothing more. It doesn't open, edit, manipulate or save files at all.
    Are you simply referring to going back to view a folder that you viewed before?
    Please don't take this a criticism.  As someone who will gladly pay money not to have to learn any shortcuts at all, I'm just puzzled and curious, that's all.

  • Assigning keyboard shortcuts to volume controls

    Hi, I have a new MacBook, with the default that F4 brings up Dashboard. I don't like Dashboard, and would rather have F4 show the desktop, next to F3, which shows all windows as the default. Moreover, I'd like to reclaim F7, F8, and F9, which are taken over by audio/video play controls. So I thought I'd tick the box under Keyboard preferences to use F1 etc. keys as standard function keys. Under the Keyboard shortcuts preference pane, I can assign F1 and F2 to brightness controls, F3 to show all windows, and F4 to show desktop. So far so good.
    BUT, I can't figure out how to assign my volume controls to F keys. Any thoughts?
    Thanks in advance,
    Ken

    http://www.macosxhints.com/article.php?story=20010508131542947
    http://forums.macosxhints.com/showthread.php?t=1215

  • Keyboard shortcuts and Word

    I am not sure if it is OK to ask this question here, please indulge me if it isn't and tell me where to post.
    I use Word 2004 on our G4; Mr H uses it on our MBP. (we have three liscence keys with our edition so all is legal)
    Is there a keyboard shortcut to get to the beginning and the end of a document in Work using a keyboard shortcut on the MBP?
    On the G4 if we want to move from anyplace in a document to the beginning, I hit command + home and get there; to get to the end hit command + end and get there.
    On the MBP this doesn't work - the home and end keys are incorporated into the arrow keys, and the command doesn't work.
    Is there another shortcut to make this happen?
    Mrs H

    The functions printed in small letters on those keys are accessed by the fn key.
    The following work on my MBP (albeit using Word 2008, but IIRC the same shortcuts worked in Word 2004):
    Jump to start of document = Command-Fn-LeftArrow (aka Command-Home)
    Jump to end of document = Command-Fn-RightArrow (aka Command-End)
    Likewise,
    Jump to start of line = Fn-LeftArrow
    Jump to end of line = Fn-RightArrow
    Page Up = Fn-UpArrow
    Page Down = Fn-DownArrow
    In this one (exceedingly rare) instance, Niel is incorrect.

  • I've used a terminal command to change default send keyboard shortcut and now it doesn't work at all!

    My friend provided me with a Terminal command allow me to use Cmd+Enter to send an email (muscle memory from Outlook, hard to forget!)
    Command was:
    defaults write com.apple.mail NSUserKeyEquivalents -dict-add "Send" "@\\U21a9"
    Did that, and it didn't add the Cmd+Enter instruction but removed the Cmd+Shift+D instruction, so I had NO keyboard shortcut. Then Cmd+Enter started working. For a while. Now I'm back to getting the irritating error bleep sound, and having no functional keyboard shortcut for sending mail.
    Does anybody have any advice?

    Try
    defaults delete com.apple.mail NSUserKeyEquivalents
    Then, relaunch Mail.

  • Keyboard shortcuts and tabs with get info box

    I'm having several problems with the new get info box - and regret that I can no longer bring up the old version with the shift/right-click/get-info command.
    1) No keyboard shortcut to advance from one track to the next, from inside the Get Info box. This used to be handled with Alt-N or Alt-P for Next and Previous. Now it seems to require mouse click on the error.
    2) When tabbing through fields, it skips fields toward the bottom (album artist)
    3) For works with the same title (most of my library is classical), I've tended to organize them by adding an extra space at the end of the Album line for the 2nd work with that title, or an extra two spaces for the 3rd work with that same title. This way they sort as distinct albums, since most works have multiple tracks. With the new Get Info, if I enter that extra space on the field in the box, it cuts it off when clicking ok. But if I just F2 the field on itunes list view, I can add it with no problem. This is a pain because I have to do it one track at a time, can't do it for multiple tracks at once. 

    The functions printed in small letters on those keys are accessed by the fn key.
    The following work on my MBP (albeit using Word 2008, but IIRC the same shortcuts worked in Word 2004):
    Jump to start of document = Command-Fn-LeftArrow (aka Command-Home)
    Jump to end of document = Command-Fn-RightArrow (aka Command-End)
    Likewise,
    Jump to start of line = Fn-LeftArrow
    Jump to end of line = Fn-RightArrow
    Page Up = Fn-UpArrow
    Page Down = Fn-DownArrow
    In this one (exceedingly rare) instance, Niel is incorrect.

  • Keyboard Shortcuts and Delocalizing

    Hi all; grabbed a refurb MBP and loving it. Quite the difference from my venerable Pismo...
    Three questions - i searched for answers, with no luck. Thoughts? Thanks in advance!
    1. in Sys.Prefs>Keyboard&Mouse>Keyboard Shortcuts>(scroll down) Application Keyboard Shortcuts: i'm llooking to asign Apps to certain Function keys while holding the fn key. I assigned apps and, no joy. Are we able to do this via this menu or am i missing what this is for?
    2. So in Tiger Cache Cleaner one can delocalize their drive of languages that the system loaded that may not be used. When selected i was shown a very long menu that had names of languages, then short two letter abbreviations of the same i assume, (eg: de, en_GB, es, fr). I deleted the named languages then quit the program. Noticed i had gained 1g or so of disk space yet when i went back to TCC i noticed those languages were still there. Is this normal?
    2a. Is it OK to delete the abbreviated languages?
    Happy Daylight Savings!
    15" MacBook Pro C2D 2.33/120/2g;   Mac OS X (10.4.8)   Pismo G4/550;SuperDrive;DLink BT;1GB RAM

    Any Help or pointers? Thanks!

  • Keyboard Shortcuts and Hot Corners Fail Randomly!

    So I have upgraded to 10.5.1, and now, out of seemingly nowhere, ALL keyboard shortcuts fail. Quicksilver, Spotlight, Dashboard, thay all fail. Also, ALL hotcorners fail to work (they make the "funk" noise when I try to use them).
    They work for a while after rebooting, but then inexplicably stop working.
    It happens on my Macbook Pro (Oct 06, 2.16 15 inch) with my Aluminum Keyboard plugged in (not sure if it happens without it). I have posted my Activity Monitor Printout, and the Console messages. Any ideas?
    http://www.ownerofearth.com/all_messages.log
    http://www.ownerofearth.com/afterhotkeydeath.pdf

    I have found the issue! It was the screensaver called "PolarClock3" that was killing the shortcuts. Choosing a new screensaver (and for good measure deleting as well) and logging out and then back in did the trick.

Maybe you are looking for

  • I have a prepaid card how do i get it to connect to the internet

    I have a prepaid cell card in the ipad but it does not want to connect to the internet.  Please some one help

  • Regarding Bank payment or received through Post dated cheque.

    Hi, Kindly suggest how shall i configure in case post dated cheque is received & client want that customer balance as well as effect of the same in bank book shall be reflected on value date of cheque & not the date on which cheque is recevied. Simil

  • Block field in program

    Hello sap guys, I need to block a field in a standard program, so it couldn't be modified, so when the user saves the transaction,  the program stores always the same value that is shown at first in the program. How can I do this, what concept should

  • 802.1X Inaccessible Authentication Bypass

    On a 4506-E switch with supervisor engine 6L-E running IOS version 12.2(54)SG1, the command to enable Inaccessible Authentication Bypass is not available.  The interface configuration mode command is supposed to be "dot1x critical".  Has it changed t

  • Idoc No field is Refreshing in bd87

    Hi I have developed a report in which after displaying in  alv format, the user will select certain idoc record and click on process button, it should call 'BD87' transaction with idoc number in docnum field of the 'BD87' selection-screen.For this I