Shell script and keyboard shortcut

I wrote a bash script, and I would like to start it with a keyboad shortcut, but I can't figure out how to do that. Does anyone know?

Hi Hugo,
   Keyboard shortcuts are meant for Carbon and Cocoa applications but it can be done; you just have to wrap the shell script in some sort of application. One way is Sveinbjorn Thordarson's Platypus but I just wrap mine with an AppleScript, invoking it with "do shell script". You have to save the AppleScript as an application. Then you open the "Keyboard & Mouse" pane of "System Preferences" and select the "Keyboard Shortcuts" tab. Click the plus sign, '+', pick a key combination and specify your AppleScript or Platypus app as the target.
Gary
~~~~
   Are there those in the land of the brave
   Who can tell me how I should behave
      When I am disgraced
      Because I erased
      A file I intended to save?

Similar Messages

  • Photoshop scripts and keyboard shortcuts synchronization

    I use Photoshop CC in multiple computers and would like to find out if there is way to synchronize keyboard shortcuts and photoshop scripts across different computers. Is it possible to synch the scripts folder and keyboard shortcuts through Dropbox for instance?

    Have you tried the syncing capabilities in CC? I have not tried to sync across multiple computeres -- having only one -- but the capabilities to sync preferences and actions seem to be possible. However, I believe 'scripts' and 'actions' are not the same thing so I cannot comment on how this sync process deals with scripts.

  • Need help with shell scripting and Patching

    Hello all,
    I am a very new Oracle DBA and I just have an interview where i have been ask two questions that i have no idea of what it is
    1/ What is shell scripting and how do you do shell scripting?
    2/ What is Patching and how do you do patching?
    Can some one help to have a very good understanding of these tow questions?
    Thanks a lot

    1/ What is shell scripting and how do you do shell scripting?shell accept command from you (via keyboard) and execute them. But if you use command one by one (sequence of 'n' number of commands) , the you can store this sequence of command to text file and tell the shell to execute this text file instead of entering the commands. This is know as shell script.
    Shell script defined as:
    "Shell Script is series of command written in plain text file. Shell script is just like batch file in MS-DOS
    for example:- for taking backup, health check and doing some task Operating system level or Oracle database level we can create shell script and schedule a cron job
    2/ What is Patching and how do you do patching?for example ,in windows while using sometimes you might face an issue/error and it gives pop up error message would like to send/report this error to microsoft? microsoft will send you a fix for that. lot of fixes for errors/bugs are released as patches.( n number of patches with newer features are releases as new version)
    likewise in oracle for resolving bugs we should have to apply patch.
    patch is basically a fix for a bug/bugs. we need to use opatch utility to apply the paches.
    hope, this helps you

  • SAP XI: How To Write Shell Script And use it in File Adapter On XI Server

    Hi,
    I want to split file at sender side in XI using Shell Script and then after i want to do
    Mapping.
    Can anyone tell me what exactly it means "write a script in UNIX shell on XI SERVER"?
    Regards,
    Akshay.

    Hi,
    You can execute a Unix script running in the XI server from the File communication channel. Ie. if you want to do something which was not part of XI adapter configuation , then you can make use of external unix script and you can execute those from the XI.
    For this, write a unix script and place in the XI OS level provided that path is accessible from PI Channel.
    E.g
    So u can use this in either Sender Channel to modify the data before it reaches into the Integration Server or in Receiver channel it is generally used to transfer the files into different location via Secure FTP
    SAP help: http://help.sap.com/saphelp_nw2004s/helpdata/en/bc/bb79d6061007419a081e58cbeaaf28/content.htm
    Blog:/people/sameer.shadab/blog/2005/09/21/executing-unix-shell-script-using-operating-system-command-in-xi
    XI  can be in any OS.
    Hope this helps,
    Rgds,
    Moorthy

  • Passing params from SQL file to Shell Script and then from Shell to SQL Fil

    Afternoon guys,
    Have a fun question for all you gurus in shell scripting out there. I have a shell script that is calling 2
    different SQL programs. My objective is to pass a variable called request_number from one sql program
    to the shell script and then from the shell script back to another SQL program. I will explain why I
    need this to happen.
    Here is what the shell script looks like which calls sql programs student_load_a.sql and
    student_load_b.sql. Student_load_a.sql basically creates the control file (.ctl) which is needed for the
    SQL*Loader and then student_load_b.sql reads the table that was just loaded and does the main
    processing. My main objective here is to be passing the request_number which is being generated
    using an Oracle Sequence in student_load_a.sql and using this generated number in my main
    processing in student_load_b.sql to select records from the table based on request_number.
    Any ideas ?Any help or recommendations is welcome and appreciated.
    *1. Shell Script*
    # Accept system input parameters
    p_user_id=$1
    p_job_id=$2
    # Create control files for sqlload
    sqlplus.exe -s $p_user_id @$STUDENT_PATH/student_load_a.sql $p_job_id
    exit_status=$?
    # Do sqlloads
    sdesqlldr.exe userid=$p_user_id control=student_load-$p_job_id.ctl \
                                                 log=student_load-$p_job_id.log \
                                                 bad=student_load-$p_job_id.bad
    exit_status=$?
    # Main processing
    # sqlplus.exe -s $p_user_id @$STUDENT_PATH/student_load_b.sql $p_user_id $p_job_id $p_request_number
    sqlplus.exe -s $p_user_id @$STUDENT_PATH/student_load_b.sql $p_user_id $p_job_id
    exit_status=$?
    exit 0*2. student_load_a.sql (Would like to pass back the Sequence Number back to shell script and then use in student_load_b.sql*
    -- Accept system input parameters
    define p_job_id = &1
    spool student_load-$p_job_id.ctl
    select
    'append into table TMP_STUDENT_LOAD
    FIELDS TERMINATED BY '','' optionally enclosed by ''"''
    trailing nullcols
    (request_number CONSTANT ' || '''' || request_number_seq.nextval || ''',
    student_id)'
    from   dual
    spool off;
    exit 0;
    {code}
    *3. student_load_b.sql (This is a big file so I am only adding code that is relevant for the SQL)*
    {code}
    declare
      v_request_number    number(6);
      v_student_id                  number(7);
      cursor cur_student_load is
        select  student_id
        from   TMP_STUDENT_LOAD
        where  request_number = v_request_number
        order by 1;
    begin
        v_user_id := '&1';
        v_job_id := &2;
        -- This is the variable I would like to be be passing from shell script to student_load_b.sql
        -- v_request_number = '&3';
         open  cur_student_load;
         fetch cur_student_load into v_student_id;
          exit when cur_student_load%notfound;
          .... more logic of if then else in here
         close cur_student_load;
    end;
    {code}
    Edited by: RDonASnowyDay on Jan 29, 2010 4:03 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    How come you are mixing WinDoze script (*.exe) with Unix?
    You are aware that you will be passing the password along with the user id to the second sql script?
    I will assume Unix ksh:
    # Accept system input parameters
    p_user_id=$1
    p_job_id=$2
    # Create control files for sqlload
    p_seqno=`sqlplus -s $p_user_id @$STUDENT_PATH/student_load_a.sql $p_job_id`
    exit_status=$?
    # Do sqlloads
    sqlldr userid=$p_user_id control=student_load-$p_job_id.ctl \
           log=student_load-$p_job_id.log \
           bad=student_load-$p_job_id.bad
    exit_status=$?
    # Main processing
    # sqlplus -s $p_user_id @$STUDENT_PATH/student_load_b.sql $p_user_id $p_job_id $p_request_number
    sqlplus -s $p_user_id @$STUDENT_PATH/student_load_b.sql \
               $p_user_id $p_job_id $p_seqno
    exit_status=$?
    exit 0And the first sql script would look like this:
    -- student_load_a.sql
    -- Accept system input parameters
    set echo off pages 0 feed off lin 80 trims on ver off
    def p_job_id = &1
    col seqno NEW_VALUE seqno
    select request_number_seq.nextval seqno from dual;
    set term off
    spool student_load-$p_job_id.ctl
    select
    'append into table TMP_STUDENT_LOAD
    FIELDS TERMINATED BY '','' optionally enclosed by ''"''
    trailing nullcols
    (request_number CONSTANT ''&&seqno'',
    student_id)'
    from   dual
    spool off;
    exit 0;
    {code}
    :p                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How to run 3 job(a,b,c) parallel in unix shells script and after will complete d will start  and we have to handle the error also

    how to run 3 job(a,b,c) parallel in unix shells script and after will complete d will start  and we have to handle the error also

    032ee1bf-8007-4d76-930e-f77ec0dc7e54 wrote:
    how to run 3 job(a,b,c) parallel in unix shells script and after will complete d will start  and we have to handle the error also
    Please don't overwhelm us with so many details!  
    Just off the top of my head ... as a general approach ... something like
    nohup proca
    nohup procb
    nohup procc
    while (some condition checking that all three procs are still running ... maybe a ps -ef |grep  )
    do
    sleep 2
    done
    procd
    But, we'd really need to know what it is you are really trying to accomplish, instead of your pre-conceived solution.

  • How to disable right-click and keyboard shortcuts in adobe reader?

    Hello All,
    We are currently working on an issue. We want to display a pdf to users but not allow them to save it. Though we are able to hide the menubar and toolbars, the Shortcuts F8, F9 and Ctrl+Shift+S is the undoing of all. The user can still use these shortcuts to enable toolbar and menubar. Can anyone suggest how to disable the right-click and keyboard shortcuts in adobe reader?
    Thanks in Advance

    Impossible, and illogical. PDF files are not streamed or RAM-cached so if someone is viewing a file they must have already saved it.

  • HT5140 I did put another language in input source, and keyboard shortcut, but when I close this window, after opening the mail window, where do I see different language to click on?

    I did put another language in input source, and keyboard shortcut, but when I close this window, after opening the mail window, where do I see different language to click on?

    You switch keyboards by going to the " flag" menu at the top right of the screen.

  • Hot Corners and Keyboard Shortcuts Stop Working

    When disconnecting from my 27" (that I use as a docking station with keyboard and mouse), in some cases my hot corners and keyboard shortcuts stop working.
    F11 does not show the desktop, Ctl-UpArrow does not show mission control. Ctr-left-right arrow does work, as i can still toggle between desktops.
    I know, lots of randomness here...
    A reboot fixes everything.

    I've go a Windows 7 system running CS5 and when I start Photoshop all my shortcuts are working but eventually really important ones like the brush tool sizing stop working. At the moment the only non-adobe/windows app running is iTunes and that have been running the whole time, turning iTunes off does not enable the stortcuts again.
    Has the only conclusion to this problem been to turn off other apps? This has been a problem for me since I upgraded to CS5 and its driving me a little mental !

  • Custom Commands and Keyboard shortcuts

    Hi,
    I have recently added a custom command to Vivado 2015.1 to set the current working directory to the top level folder where the project is stored using this TCL:
    cd [string trimright [get_property DIRECTORY [get_projects]] proj]
    This allows me run TCL scripts using a simple relative path to a folder in the project containing TCL scripts instead of having to type a long absolute path because Vivado insists on using C:/Users/<username>/AppData/Roaming/Xilinx/Vivado as it's default working directory (e.g source ./tcl/script.tcl rather than source C:/<long path to folder>/tcl/script.tcl)
    I added a keyboard shortcut to this command (in this case Ctrl+Shift+P) to allow to me change the PWD quickly when I need to.
    However, every time I open Vivado the keyboard shortcut initially does not work. I press Ctr+Shift+P and nothing happens. In order to get this to work I have to press Alt+T to get the tools menu, then u to get the Customize commands option and then withough clicking anything in this menu, just by opening the menu, the shortcut works.
    In short every time I start Vivado afresh, I have to press, Alt+T, u, then Esc, Esc to back out of the menu to get the shortcut to work ( or I can click Tools->Customise Commands and then back out of the menus by using Esc, Esc and it has the same effect).
    Can anyone else confirm this?
    It feels like it is not recognizing the shortcut until the Customise commands menu has been opened. Is it not loading the shortcut until this menu opens? The whole idea of the shortcut is to avoid having to open the menu every time.
    Regards
    Simon
     

     I have reported this to Factory. Change request number 868640

  • Scripting Styles keyboard shortcuts

    Hi.
    I'm creating an Applescript for Indd 5.5 that will create a number of documents and add them to a book file. I'm trying to flesh out all the book's documents with as many text and object styles as I can, and ensure each document has only the swatches etc. needed for the book.
    I've managed to create text styles and groups (folders) quite easily, but I can't find a way of assigning a keyboard shortcut to a style. Typically, I will be using shortcuts on the numeric keypad, and using the command key (Mac) – Command+Num 8, for example. I've searched the web, but can't find anything that shows how to do it – only how to assign global shortcut sets for InDesign.
    Can anyone point me in the right direction?
    Thanks,
    K@

    Well, I was proposing a slightly different strategy.
    Export one style from the INDD to IDMS, and then delete
    all the extra crap that is not the style definition. That
    leaves you with about 20 lines of XML.
    Then, write your AppleScript to create a 20-line XML file
    containing those literal 20 lines, while adjusting the name
    and shortcut of the style.
    Then your Applescript can place the IDMS snippet file after it
    writes it, and then delete the temporary file. You can then
    modify the attributes of that imported paragraph style
    in our script.
    That's a little bit clunky but it shouldn't keep you from putting the
    shortcuts in your applescript code. You are just dynamically
    generating IDMS/IDML/XML from your applescript.
    You mention maybe you would prefer not to format the style within
    the script? Well, then I guess you have even more options
    available!

  • Mail and Keyboard Shortcut Preferences

    Ever since the last system update, I haven't been able to set keyboard shortcuts for Mail in the Keyboard preferences. I'm not sure if it was the firmware update or the system one, but it just boinks at me.
    I was able to set one default in the terminal, but it erased all my other preferences, which I can't get back.
    So, if I do it from Terminal, so I have to do a whole list at once? Or will you guys get the application keyboard shortcut preferences fixed some time soon?

    Now  Keyboard Preferences is accepting changes for no apparent reason - I haven't restarted the computer or anything. Anyway, I need to figure out what's the magic word for "junk this message." I have Junk, Junk Mail, and Mark As Junk Mail all as command - J, but it's still not working. Maybe there is no keyboard shortcut? Do I have to script it or something? I have having to switch between the keyboard and clicking all the time.

  • Secret dragging tricks and keyboard shortcuts - are these published anywhere?

    I have searched for some and stumbled upon others. But I have not seen any of these published or posted anywhere. If so, can you tell me? Either way, you may find some useful ones here. Enjoy! (I think most of these work in Lion. Any keyboard shortcuts you know for Time Machine would be most welcome.)
    *** THE DOCK ***
    Press ^F3 to move to the dock. Use the arrow keys to select an icon. You can also use autocomplete (type the first few letters of the icon's name). Then press Opt-arrow_key to move the *icon* among the other icons on the Dock. Thus you can change the order of the icons on the Dock using only the keyboard.
    *** DRAGGING TRICKS ***
    o SAVE-AS SHEET TRICK
    Open an app's Save As sheet. Drag a folder or its proxy icon to anywhere in the Save As sheet except the sidebar and that updates the directory (folder) field with that folder. Drag a file or its proxy icon to the Save As sheet (anywhere except the sidebar) and that updates both the directory (folder) and file fields accordingly.
    Why do I do this? I find it easier to use the actual Finder, or I may already have a Finder window in the right directory.
    You can also click on a directory or file in the Save As sheet to populate the directory or file fields, respectively. Then edit the filename to a slightly different name.
    o COPY A FOLDER TREE TO A TEXT DOCUMENT
    Open a true text-only editor session using an app like TextWrangler (not TextEdit!). Drag a folder (or its proxy icon) from the Finder into the editor window. Viola`! The names of the folder and all its subfolders and files are pasted into the text buffer in a properly indented form.
    o COPY A FILE TO A TEXT DOCUMENT
    Drag a file from the Finder into a text-only editor like TextWrangler or similar (not TextEdit!) and the _contents_ of the file (not its icon) are inserted into the document.
    o MAKE A NEW FILE THAT CONTAINS SELECTED TEXT
    Select some text. Drag it to a folder. This creates a "textClipping" file which contains the selected text. Opens as a "Finder document".
    o COPY A PHOTO FROM IPHOTO TO A FOLDER
    Open iPhoto. Drag (to copy) a photo to a folder. Makes a jpeg file of the photo in that folder.
    *** KEYBOARD TRICKS ***
    o MENUS AND LISTS
    Opt-U/D: Move highlight bar to top or bottom of most menus and lists. Does not work in Spotlight drop-down menu. Works in Snow Leopard Mac Mail (v 4.5, anyway) if you hold it down for a second: you get an error signal, but it works anyway.
    PgUp/PgDn | Home/End: Moves highlight bar to top or bottom of menus. Moves only the view for lists.
    Opt-Spacebar: Move highlight to the alphabetically first item in a menu (except in the Spotlight drop-down menu).
    o SPOTLIGHT DROP-DOWN MENU
    After selecting an item on the drop-down menu via the arrow keys:
    Cmd-Return: Open enclosing folder.
    o SPOTLIGHT WINDOW
    If ^F7 is set to "all controls", press ^F7 four times if it's the first search in a particular Spotlight window; two, otherwise. This moves you to the list of results.
    If ^F7 is set to "text boxes and lists only", just Tab.
    o CALENDAR WIDGET
    Home: go to the current year and month.
    Up, down, left, right arrows: go one year back, one year forward, one month back, one month forward. Hold a L or R arrow down to autorepeat through the years. (You can't do _that_ with the mouse!) Also works with U and D for the months.
    o SPELL CHECK
    Cmd-Shift-; - Open spelling pane. But you knew that one. Press ^F6 to get to the pane. Tab around to everything except Define and Guess. With the focus on the replacements list, use the arrow keys to select a replacement word from the list. (Press the spacebar to run the control with the highlight perimiter and press Return to run the control with the solid highlighting.)   
    o MAIL
    Cmd-I - Open Account Info window
    o NAVIGATING HELP PANES
    - Old-style help panes :
    Open the menu pane in the usual way. The Highlight perimeter will be on the search window.
    Tab: Move among the Search field, the page, and the controls on top. Add Shift to reverse.
    When on the page:
    Use the usual navigation keys -- Up, Down, Home, End, Page up, and Page Down, Spacebar, Shift-Spacebar -- to scroll through the page.
    Opt-Tab: move among the links on the page or items in a "Help Topics" list. The highlight perimeter will be rectangular. Press Return or Enter to click the selected link or item. Add Shift to reverse direction.
    Cmd-F: Open the Find bar. Move about with Tab. Move among the arrows with L or R arrow keys. To find a string: Type your search string in the Find field. Press Return or Enter. Press again to find the next occurrence, etc.
    To go to the page from the Find bar: Shift-Tab to the left or right arrow. Then press Shift-Tab two more times.
    To close the Find bar: Tab to Done and press the spacebar or just press Escape.
    You can return to the app via ^F6, but the help pane stays open.
    When the highlight perimeter is on one of the arrow controls, press Spacebar to click it. If the left arrow control is selected press the down arrow to see places going backward. If the right arrow control is selected press the Down arrow to see a list of places going forward. Either way, use the usual menu navigational shortcuts.
    When the highlight perimeter is on the Home control, press the down arrow to get a menu of apps. (The mouse way for this is to click and hold and "drag" and release as above.) The usual menu navigational shortcuts are valid. Also, you can press the spacebar to go Home.
    When the highlight perimeter is on the Gear button, press the spacebar or down arrow to get the drop-down menu. The usual menu navigational shortcuts are in effect. 
    (To do any of the above three with the mouse, click on the control and hold the mouse button down, then without releasing the mouse button, move the pointer to highlight the desired item on the menu and release the mouse button.)
    - New-style help panes:
    Open the menu pane in the usual way. The Highlight perimeter will be on the search window.
    Tab to move around to most things. The table of contents becomes keyboard-active one Tab-press past the Search field, at which point use the L and R arrow keys to navigate the Contents panel, and the U and D arrow keys to move the down and up the page.
    To be able to use PageUp and PageDn, Tab to the back/forward button, then press Shift-Opt-Tab.
    Cmd-F: Opens the Find bar. Navigate with Tab and L/R arrow keys. When you are on this bar, press Shift-Tab repeatedly until the highlight perimeter moves out. Then press Shift-Tab once more to go back to the page, where the L and R arrow keys move you around the TOC sidebar and the U and D arrow keys scroll the page.
    AFAIK, you can choose Get Started or Browse Help only with the mouse.
    You can return to the app via ^F6, but the help pane stays open.
    AEF

    fane_j wrote:
    Pardon me if I screwed up the quoting.
    betaneptune wrote:
    I guess you meant that unfortunately these don't have them.
    (1) I meant that, unfortunately for your impressive work, there's nothing in it that hasn't already been documented elsewhere. The two items I mentioned contain your shortcuts, and many more besides.
    I don't see any of them in either. I have Pogue's book and they're not there. In fact, I emailed these tricks to him and he was impressed with some of them. And of course there are more. I never claimed to have an exhaustive list. In fact, I doubt anyone has such a list.
    (2) Mac OS X v10.6 has been out for, what is it, 3 years? If you think that there are any 'secret' shortcuts left, then you seriously underestimate the average Mac user. Some of that stuff is even older. For instance, the "Save-As Sheet Trick" dates back to Jaguar, or even before that. "Make a New File That Contains Selected Text" is older than Mac OS X itself!
    Well, first of all there's no need to get hostile.
    I don't underestimate the average Mac user. But I would venture to guess that most are heavily mouse oriented and would not even be interested in the keyboard tricks I posted. And I only said that I haven't seen them on any website, not that no one else in the world knows about them.
    Additionally, there have been things missed by the smartest of people. Stereo vision was missed even by Issac Newton, one of the biggest geniuses to grace the planet! It was Wheatstone who first picked up on it. And it used to be thought that a cube flying by at relatvisitic speed would appear foreshortened in the direction of motion. In fact, as was noted decades after relativity was published, it in fact appears rotated. If super smart people could miss this, then perhaps those few who publish these tricks may not know about them.
    Re the save-as trick and the new-file-contains-your-text tricks: fine, they're old, but so are many of the tricks that are posted on websites. So why some old ones but not others? How about cut and paste? I bet they're pretty old but that doesn't prevent people from posting them, as in your first reference!
    (3) Also unfortunately, your listing mixes up shortcuts and 'tricks' of different categories. For instance, "Copy a File to a Text Document" is not secret, it is not a trick, and it is not relevant. What an app does with a file dropped onto an open document of its own does not depend on the system, but on the app and how it was programmed. TextEdit inserts a text file's path while TextWrangler inserts the text file's contents not because the former is not a text editor, but because that's how each was designed to work. And TextWrangler's behaviour is documented in the accompanying manual.
    So one of my tricks is lame. I don't see that as that big a deal.
    Bottom line: I don't see any of them in the docs you referenced.
    AEF

  • CS4 application focus and keyboard shortcuts

    Quick preface: I couldn't find anything on this issue, searching Google and the Adobe forums specifically, so I don't know if it's a general bug in CS4 or if it's specific to the installations we have here at work.  Also, this isn't specific to Indesign, but it seems to happen the most with Indesign, and I wasn't sure where else to post.
    Basically, Indesign in particular (though this also happens with Photoshop and Illustrator to an extent), seems to lose focus if I've clicked on a palette or if I have an object selected, such that I have to click on a blank area of the document in order to use any keyboard shortcut.  For example, if I've just applied a new swatch to an object, and that object is still selected, and I hit CTRL-S to save, nothing happens and I have to click a blank area of the document, and then hit CTRL-S. This may not seem like a big deal, but if I'm going to do that, I might as well click "File" and then "Save."  And this seems to happen with every keyboard shortcut I use.
    Is there anything in the preferences of the application that may be causing this, or is it just an annoying bug, or am I the only one? Any help is greatly appreciated.
    [edit] And I'm using WinXP Pro, SP3 on an Intel Core2Duo.

    Have you tried refreshing the preferences?
    Adobe InDesign CS4 * Setting preferences

  • LCD color profile and Keyboard shortcuts gets screwed up

    My macbook pro is connected to a Dell flat panel to extend the desktop. Recently, and inconsistently, the color profile of my MBP's LCD will get screwed up when I exit from the Screensaver - the external display looks right. Just clicking on display in system preferences immediately corrects the color. But I would like to fix it from not happening every now and then.
    Another problem I notice pretty much in the same sporadic way is that my keyboard shortcuts (F9 to F12) for dashboard and expose gets reset to none - I am not sure if they are even related as of now (can't reproduce it at will)
    Has anyone experienced something like this? Any potential solutions?
    Thanks!

    My macbook pro is connected to a Dell flat panel to extend the desktop. Recently, and inconsistently, the color profile of my MBP's LCD will get screwed up when I exit from the Screensaver - the external display looks right. Just clicking on display in system preferences immediately corrects the color. But I would like to fix it from not happening every now and then.
    Another problem I notice pretty much in the same sporadic way is that my keyboard shortcuts (F9 to F12) for dashboard and expose gets reset to none - I am not sure if they are even related as of now (can't reproduce it at will)
    Has anyone experienced something like this? Any potential solutions?
    Thanks!

Maybe you are looking for

  • Dual Booting Windows and Solaris

    Hi how do i dual boot windows and solaris Do i install windows first and then solaris or do it the other way around..? how do i make sure that Windows and Solaris appear in my boot options..? Is their a guide on doing this...? Thanks Liam

  • Does calling class methods from bean and JSP cause collision?

    Hi, Please look at the class below: public class X // no member variable public X() {} // pay attention to static keyword public static int getY() Think a bean (say BeanZ) that make calls to getY() method without initializing the class X (like this:

  • Why do my photos come out too dark when I print them?

    Bonjour from France, I am trying to print photos but they come out too dark. We have just bought a new mac mini, and are trying to learn how to use it. We are using a Canon printer. Any help would be appreciated. thank you, maorisun

  • My GTX 580 OC will not drop the core clock frequency when idle

    The model is N580GTX-M2D15D5/OC . I have read some reviews said that the GTX580 drops the core clock down to about 50MHz when idle. But my card will always stay at 823MHz. Is this a issue or it's just working as intended? Can i have the clock auto-tu

  • Golden gate supports directory??

    Hello , I am new to golden gate. i have made 1 oracle directory in oracle 11 g. when i am replicating data using golden gate, then i am getting the error-->directory doesnot exists -->Fatal Error executing ddl replication Do golden gate supports dire