Opening or Saving As using keyboard alone (without mouse)

For users who need to limit mouse use (for speed and avoiding wrist strain), OS 10.5.4 initially creates a roadblock to using the Open or Save As command in Microsoft applications (and probably others). There are no obvious keyboard combinations for navigating among folders, volumes, drives, etc. to get to the one you need to open or into which you need to save. But I've found that the following keyboard combinations work for this purpose. (In each case, you do these AFTER activating the "Open" or "Save As" command.)
(1) To get to a higher level in your computer or network, hold down the Apple-command key and press the up arrow key several times. (After you reach the highest level, further presses have no effect, so it doesn't hurt to do this several times.) After you have done this enough times, the "Open" or "Save As" dialog box will display the folders, volumes, drives, etc. at the highest level in you computer and/or network. But you can't yet select any of them without using the mouse.
(2) Now press the tab key three times. This normally results in selecting one of those folders, volumes, drives, etc. (Which one it selects isn't important, because you can now navigate among them by either of the methods described in step (3)). If your network or system is different from mine, you may need to press the tab key a different number of times.
(3) Then simply type the first character in the name of the item at that level that you need to open (or press the up or down arrow keys until you get to it). When you have thus selected it, press shift-return to open it.
If the place you need to get to is within what you just opened, repeat step (3), typing the first character of the item at that level that you need to open, then pressing shift-return to open it. This will take you down the hierarchy one step at a time, and will soon get you to the item you need to open or the folder into which you need to save.
I hope the above is understandable. These keyboard combinations are especially useful if you use a utility like QuicKeys to create macros (QuicKey's creator calls them "shortcuts") to automate your work and reduce strain on the wrist of your mouse hand.
QuickEdit

This does not seem to be Acrobat issue. It happens with other products too. Tried with Notepad and WordPad and it does not retain the File View settings. File>Open or File>Save dialogs are Windows dialog and settings that affect the file view is totally Microsoft's settings. I was browsing through the same issue and people have complaint about the same etc. However, I could not find the registry key which changes this setting.
Message was edited by: Subrato Namata

Similar Messages

  • When I send an e-mail to a group address, from my address book, I get an error messageI get an error message that one of them is not a valid e-mail address, although I have used it alone without any problem.

    When I send an e-mail to a group address, from my address book, I get an error messageI get an error message that one of them is not a valid e-mail address, although I have used it alone without any problem.

    See https://support.mozilla.org/en-US/questions/1018363

  • How to use spell checker without mouse?

    Hi,
    how to use spell checker without mouse?
    And how to quickly change between languages related to documents, and be able to quickly get back to the main language setting that should be the default for the system?

    And how to quickly change between languages related to documents
    If you are talking about input keyboards, this is controlled by shortcuts that are explained at the top right of system prefs/language & text/input sources.

  • Any option to invoke OCR tool from a keyboard only without mouse

    As surprising as it may sound, I could not find any option to run from keyboard a command to start OCR (Optical character recognition) operation for the current document.
    Many (actually the most) in operations commands Adobe Acrobat Professional XI can be run with a keyboard hotkey (shortcut) and/or via main menu accelerator keys, say, as a command "Create PDF from file" with a hotkey Ctrl+N or keyboard accelerators Alt+F -> R -> F.
    So if you your mouse fails to work or you can not use a mouse due to some accessibility issues, you can however run the most commands using the keyboard only.
    But I could not find any way to start OCR recogniizing operation using keyboard only, neverthless how long serie of key pressing you are ready to fulfill. Well, you can use accelerators Alt+V(iew) -> T(ools) -> T(ext Recognition) in order to open Tools sidebar at the left edge of the window - and than?.. Seems, that there is no option to get a focus to this vertical toolbar without mouse.
    As I can not use my mouse just now, it is a real headache for me Is there any solution?
    Thanks in advance!

    @ CtDave
    I'm afraid, that you have missed the most important part of my clarification. Your advice will not help, if somebody (not necessarily you, but rather the previous owner of the document) has already recognized it - but only in some part. Say, the command/hotkey Ctrl+A will not help, if the document has only 1 recognized page from 100 pages, what is a quite probable situation.
    Ctrl+A will not help too, if the document is already recognized, but with wrong charset and/or output style and/or resolution - and you need to re-OCR it with correct settings.
    I do not see, how your additional explanations of which OCR settings are correct, could help in such situation.
    So Ctrl+A (Select all) command is a workaround for some very restricted situations.
    To have a consistent OCR workflow simply set the PDF Output Style to Searchable Image (Exact).
    Usually I prefer the option [Searchable Image]. Do you think, that [Exact] is generally better?
    There is no user configuration/choice of 'charset' consequently this is not a viable concern.
    Hm... Have you ever put attention to the dialog Recognize Text, including the very 1st line in the [Settings] field, that is [Primary OCR Language]. And the the button [Edit...] with the proper language settings as well (please look at my screenshot here: http://img691.imageshack.us/img691/9172/k56.gif
    As one can suggest, when you select the primary OCR language, it also involves the charset too, because, say, English, French and China languages charsets are quite different.

  • Can Orbit use Keyboard instead of mouse

    I've created a custome behavior to cotroll the camera through the arrow keys. I want it to rotate about the orgin while always looking at the orgin. What i've gotten is whatever is at the orgin is rotating. I want the object to stay at the orgin and the camera float around it always facing it. I've noticed there is an Orbit behavior that uses the mouse. Is there a way for it to use the keyboard instead. if not any ideas on how to get my custom behavior to do it? I can email my code if needed.
    Thanks,
    James

    Hi,
    To rotate at the origin (around teh object).
    First you have to get the TransformGroup of the Viewplatform.
    - TransformGroup cameraTG = su.getViewingPlatform
    ).getViewPlatformTransform();
    -The transfomrGroup 'cameraTg' is a 4x4 matrix. If you want to rotate around the object you must get the 3x3 matrix (orietation)of camerTG.
    [x x x .]
    [x x x .]
    [x x x .]
    - and the get this portion (position of the camera]
    [ . . . x]
    [ . . . x]
    [ . . . x]
    of the matrix
    Check out some code:
    public void rotY(float angle) (ORIETATION OF THE CAMERA)
    targetTG.getTransform(transform3D);
    Matrix3f rotationMatrix = new Matrix3f();
    transform3D.getRotationScale(rotationMatrix);
    //Rotate y-as with a specified angle
    rotationMatrix.rotY(angle);
    transform3D.set(rotationMatrix);
    public void positionCamera(Vector3f position)(POSITION OF THE CAMERA)
    targetTG.getTransform(transform3D);
    Transform3D toMove = new Transform3D();
    toMove.setTranslation(position);
    transform3D.mul(toMove);
    targetTG.setTransform(transform3D);

  • I AM USING KEYBOARD WITHOUT MOUSE AND LETTER "H" NOT WORKING

    I AM USING KEYBOARD WITH NO MOUSE AND LETTER "H" NOT WORKING
    DOES SOMEONE KNOWS WHAT CAN BE DONE.
    THANK YOU
    MARIA

    I saw this issue before where cause was a bad preference for another application.
    When I had the "can't type Shift H" problem in Entourage, it was a corrupt preference for FlightCheck, a preflighting program I use in conjuction with QuarkXPress that was the culprit.
    First determine if the problem is in your User’s folder by creating a new User in System Preferences and test for the problem there. If it goes away then you know the problem is in your User’s folder.
    Use new User to test for problems
    Let us know the results

  • Navigate in Word's "Save As" dialog box without mouse

    I want to create macros (using QuicKeys) that will Save As documents created in Word using keystrokes alone (no mouse action).  In OS 10.5x this could be done by going to the top level of folders that could be selected (this part still works in Snow Leopard); pressing the "tab" key three times (until the first item in the list of folders where I could save was selected); then typing the first letter or two of another folder in the list to select it.  In Snow Leopard there seems to be no way to do the second action (for which pressing "tab" three times formerly worked)—although pressing "tab" does navigate to several other places in Word's "Save As" dialog box.  Am I wrong?

    For the benefit of everyone who has been anxiously awaiting a solution to the problem I posed above on May 9 (both of you), I've found the following workarounds for most navigation needs in Word when doing an Open or Save As... command (these work at least in Mac OS 10.6.8):
    (1) To go UP the hierarchy of volumes and folders, press Command -Ÿ [up arrow key].
    (2) To go DOWN the hierarchy of volumes and folders (that is, to open a volume or folder that you have selected), press Shift - Return.
    Examples of how to use those moves:
    After you trigger Word's “Open” or “Save As...” command, press Command - [up arrow key]Ÿ a few times to get to the root level of the  network, drive, or whatever you are working in.  (How many times you need to press that combination will depend on how many levels it contains.  But if you are making a macro to do this, have it do that key pressing several times—because once you get to the root level of the network, drive, or whatever, pressing that combination more times does nothing.)
    Press Tab three times. This normally results in selecting some volume (or folder) at the root level.
    To select another volume (or folder) at the root level, type the first character(s) of its name, or press the [up arrow key]Ÿ or [down arrow key] as appropriate.
    To open a particular folder within that volume (or folder), type the first character(s) of its name to select it, and press Shift - Return; repeat as needed until you get where you wanted to go.
    If anyone else likes to use macros to reduce effort in this way, and discovers any better ways to do such things, please add to this thread. 

  • I have been noticing that when using the computer the mouse keeps going in places where I really do not want and just now select the sentence without I have done anything. Sometimes goes to places like bookmark or open tabs in website when I am reading a

    I have been noticing that when using the computer the mouse keeps going in places where I really do not want and just now select the sentence without I have done anything. Sometimes goes to places like bookmark or open tabs in website when I am reading a page.
    Also I have noticed opened windows that I have not opened.
    I have verified the sharing folder and also the remote access but it not let me turn it off.
    Also I have add a password to my computer and even using the same one it looks like is not working.
    The I photo stopped working, Mac Mail does not let me add rules (this is from one day to the other)
    The computer is mine, the internet I use is payed by me with a password. I did not give permission to anyone to use my computer or share my files.
    In system preferences in the sharing folder is showing everyone and staff.
    My computer is private I do not own a company and I do not have a network set up in my house.
    I had my photos removed from my computer and even after trying to reinstall I photo and fix the Mac Mail is not working.
    I am receiving emails saying that I have sent emails to people that I do not know and including in a time where I am working and not using the computer.
    Any suggestions in how to fix this issue?
    I really appreciate.

    With the multitude of issues you have I would take it to an Apple store or AASP and have them sort it out. Then I would sign up for Apple camp or one on one.

  • How to open saved files using 'read from text file' function

    Hi everyone, I am having a hard time trying to solve the this particular problem ( probably because I am a newb to lanbview ). Anyway , I am able to save the acquired waveforms by using the 'Write to text file' icon. I did manually modify the block diagram of the 'Write to text file' icon and create the correct number of connector so as to make my program work. But now I have no idea on how to modify the block diagram of the 'Read from text file' block diagram to make my program 'open' my saved waveforms. Or i do not have to modify anything from the block diagram of the 'Read from text file'? Can anyone teach/help me connect up? Do i need the build array on the "open" page?
    Here are some screenshots on part of my program  
    let me know if you guys would need more information / screenshots thank you!
    Attachments:
    ss_save.jpg ‏94 KB
    ss_open.jpg ‏94 KB
    modified_writetotextfile.jpg ‏99 KB

    Ohmy, thanks altenbach. oh yeah i forgot about those sub VIs. will upload them now. Was rather demoralized after reading the comments and really struck me on how weak i'm at on labview really hope to get this done. But of course i have to study through and see how it works. Actually i am going to replace those 'signal generators sub vi' with ThoughtTechonology's sample code so i can obtain data waveforms real-time using Electrocardiography (ECG) ,Electromyography (EMG ) and Electroencephalography (EEG) hopefully i can find out how to connect the sample code.
    ( ps . cant connect it now unless my program is working otherwise labview will crash ) 
    ( p.s.s the encoder of my biofeedback trainer already acts as an DAQ so i wont need to place an DAQ assistant in my block diagram i suppose )
    The sample code of ThoughtTechnology is named as attachment.ashx.vi. too bad i cant use it and present it as my project
    Attachments:
    frequency detactor.vi ‏53 KB
    signal generator.vi ‏13 KB
    attachment.ashx.vi ‏40 KB

  • I have been using Elements 12 without a problem for 9 months.  Now when I try to open the program, I get an error message  "Adobe Photoshop Elements 12 quit unexpectedly" and it will not open at all.  What can I do to open the program?

    I have been using Elements 12 without a problem for 9 months.  Now when I try to open the program, I get an error message  "Adobe Photoshop Elements 12 quit unexpectedly" and it will not open at all.  What can I do to open the program?

    Thank you for responding.  Nothing actually worked!  After reading the posts online, I called Apple.  They indicated they have seen problems with some software after their upgrades.  The technician was able to fix the problem on my computer remotely, but I have no clue what he did!  But, it was definitely related to their recent upgrade to my computer.

  • All of a sudden I can no longer open a new tab using either the icon on the tab bar, the keyboard short cut or the File menu option. I can open a new tab ONLY by clicking on a bookmark or link.

    All of a sudden I can no longer open a new tab using either the icon on the tab bar, the keyboard short cut or the File menu option. I can open a new tab ONLY by clicking on a bookmark or link

    This issue can be caused by the Ask<i></i>.com toolbar (Tools > Add-ons > Extensions)
    Your system details show that toolbar in the user agent as AskTbAD2/3.12.2.16749
    * https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes

  • How do you open the DVD tray on a K430 without using Windows Explorer?

    How do you open the DVD tray on a K430 without using Windows Explorer? I can't find a button on or below the door.  Am I missing something?  Additionally, will the K430 boot from a DVD/CD if it finds one in the DVD tray instead of the hard disk?  Please help. Thanks. 
    Solved!
    Go to Solution.

    hi penguin247,
    Regarding your questions:
    1. Can you try to press the eject symbol on the DVD bay and observe if the DVD tray comes out.
    Link to picture
    2. By default, the HDD is set as the first boot device and the ODD second on the K430. You will need to change the boot order or continuously tap F12 during POST to boot from the ODD (assuming you have a bootable media inserted).
    Regards
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • Page up and down without using keyboard

    can any body tell me, how can I write the code for page up and page down in alv grid report without using keyboard.I have make a report(showing in alv grid formate) and I am using menu printer(se41) and gave P,P+,P-,P-- in function key.
    and call this function in report using pf-status. but i didnot get the result without keyboard.while using keyboard page up and page down it is working fine.

    Hi Rakesh,
                    This is the code for ur problem check it once.We have to use this code according to ur requirement ok..The compulsory condition is data is present in the internal table not in database table.If it is in database table move it to internal table first.And follow the below logic that will work fine 4 ur problem check it once.
    *Local Variables
      DATA: lv_temp  LIKE sy-tabix.
    CASE sy-ucomm.
    *Fetch the FIRST Line from the Internal Table.
        WHEN 'FIRS'.
          READ TABLE gt_data INTO wa INDEX 1.
          lv_temp = sy-tabix.
    *Fetch the NEXT Line from the Internal Table.
        WHEN 'NEXT'.
          lv_temp = lv_temp + 1.
          READ TABLE gt_data INTO wa INDEX lv_temp.
    *Fetch the PREVIOUS Line from the Internal Table.
        WHEN 'PREV'.
          lv_temp = lv_temp - 1.
          READ TABLE gt_data INTO wa INDEX lv_temp.
    *Fetch the LAST Line from the Internal Table.
        WHEN 'LAST'.
          READ TABLE gt_data INTO wa INDEX sy-tfill.
          lv_temp = sy-tfill.
    Award points if helpful.
    Kiran Kumar.G.A
                     Have a Nice Day..

  • Using applescript to open a folder with a keyboard shortcut

    hello -
    i have a rather simple question (probably). is there a way using applescript to create a keyboard command to open a folder? i.e. command shift a opens the applications folder and command shift u opens utilities. can i use applescript to designate a keyboard command to open a folder i have created? also, the script editor does not have to be open for me to utilize scripts, correct?
    thanks for your patience with a newbie.

    You can't make a keyboard shortcut to run a specific application from OSX, although there are third party applications such as Quicksilver that can do things like that. You can use an AppleScript to activate an existing menu item, for example:
    <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: #FFDDFF;
    overflow: auto;"
    title="this text can be pasted into the Script Editor">
    tell application "Finder" to activate
    tell application "System Events" to tell application process "Finder"
    keystroke "A" using {shift down, command down}
    end tell</pre>
    Other alternatives to keyboard shortcuts are to use the Scripts Menu or add an application to the Finder's toolbar. The Script Editor does not need to be active to use scripts.

  • How to open PSD file recieved via email on iPad using Photoshop Touch without Creative Cloud?

    Hi, how to open PSD file recieved via email on iPad using Photoshop Touch without the need of using Creative Cloud? Thanks.

    Hi Super Nemo
    Currently the only way to open psd files on Photoshop touch is via the creative cloud. Also, the layers you created from Photoshop on your desktop machine will be flattened when opened with Photoshop touch on your iPad. But you can retain the layers from the touch app when opening the psdx file on your desktop photoshop.
    This link might help you: http://forums.adobe.com/docs/DOC-1336
    -Sharon

Maybe you are looking for

  • Price Diff & Quantity both are not shown in  MRBR at a one time.

    Dear Friends, We've a issue related to invoice blocking scenario Their is one invoice . both quantity & price differance is their but in MRBR only quantity diff is shown. PO 100 * 10=1000 Migo  quantity 8 Miro  quantity 8 & price 9000. ( in invoice)

  • Are These Two Event Handler Examples Equivalent?

    I have found 2 examples of adding an event handler in C#.  The even handler is (obviously) the method named b2_FlashProgressChanged.  Are both of these two forms valid and equivalent? BackgroundWorker bw = new BackgroundWorker(); bw.ProgressChanged +

  • Blurry iDVD slideshow DVD's????

    Has anyone seen this and have a remedy? Specifically, when I watch a Slideshow in iPhoto, the pictures are perfect. Hi resolution. When I pull the jpegs in iDVD, add an opening Theme, and background music, and then Burn a DVD ---- the resolution of t

  • Adobe Reader XI - Aufruf Hilfe funktioniert nicht

    Hallo wir haben Adobe Reader XI (11.0.2) im Einsatz wenn ein Anwender in der Menüleiste auf +Hilfe - Adobe Reader XI-Hilfe klickt dann dauert es eine Zeit bis folgende Meldung kommt:</p><p>Online-Hilfeinhalt kann nicht angezeigt werden. Vergewissern

  • Help with creating a complex view

    Greetings SQL Guru's We are improving one of our tables for a future release, but we must support the legacy look and feel of the table because we have 100's of legacy apps that access the data in the table. The new system is being deployed with Orac