#1   Report Post  
Posted to microsoft.public.word.docmanagement
MoJR MoJR is offline
external usenet poster
 
Posts: 25
Default shortcuts

Hello,
I would like to assign a keyboard shortcut to open a folder from My Documents.
Is this possible? If so, how can I accomplish it?
Thank you,
MoJR
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default shortcuts

You can create a macro, in Normal.dot or a global add-in template,
like this:

Public Sub MyDocuments()
Shell "explorer.exe /e," & Chr(34) & _
"C:\Documents and Settings\your name\My Documents" & Chr(34)
End Sub

Replace the your name with your login name to make the valid path to
the folder. Then assign a keyboard shortcut to the macro
(http://www.word.mvps.org/FAQs/Custom...oToHotkey.htm).

When I tested this, the Explorer window opened behind Word and I had
to Alt+Tab to it. I don't have a way to fix that -- it might require
some finagling with Windows API calls.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.

On Fri, 1 Dec 2006 13:54:00 -0800, MoJR
wrote:

Hello,
I would like to assign a keyboard shortcut to open a folder from My Documents.
Is this possible? If so, how can I accomplish it?
Thank you,
MoJR

  #3   Report Post  
Posted to microsoft.public.word.docmanagement
CyberTaz CyberTaz is offline
external usenet poster
 
Posts: 1,348
Default shortcuts

Why not just add the folder as a shortcut on the Quick Launch tools of the
Task Bar, in the Start menu or in the My Places panel of the Open dialog?

HTH |:)
Bob Jones
[MVP] Office:Mac


On 12/1/06 4:54 PM, in article
, "MoJR"
wrote:

Hello,
I would like to assign a keyboard shortcut to open a folder from My Documents.
Is this possible? If so, how can I accomplish it?
Thank you,
MoJR


  #4   Report Post  
Posted to microsoft.public.word.docmanagement
MoJR MoJR is offline
external usenet poster
 
Posts: 25
Default shortcuts

Thanks Jay. I'll give it a whirl!
MoJR
"Jay Freedman" wrote:

You can create a macro, in Normal.dot or a global add-in template,
like this:

Public Sub MyDocuments()
Shell "explorer.exe /e," & Chr(34) & _
"C:\Documents and Settings\your name\My Documents" & Chr(34)
End Sub

Replace the your name with your login name to make the valid path to
the folder. Then assign a keyboard shortcut to the macro
(http://www.word.mvps.org/FAQs/Custom...oToHotkey.htm).

When I tested this, the Explorer window opened behind Word and I had
to Alt+Tab to it. I don't have a way to fix that -- it might require
some finagling with Windows API calls.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.

On Fri, 1 Dec 2006 13:54:00 -0800, MoJR
wrote:

Hello,
I would like to assign a keyboard shortcut to open a folder from My Documents.
Is this possible? If so, how can I accomplish it?
Thank you,
MoJR


  #5   Report Post  
Posted to microsoft.public.word.docmanagement
MoJR MoJR is offline
external usenet poster
 
Posts: 25
Default shortcuts

Cyber,
I want to be able to use the keyboard so I don't have to make extra mouse
clicks. I'll give Jay's suggestion a shot. If I don't like it, I'll do what
you suggested.
MoJR

"CyberTaz" wrote:

Why not just add the folder as a shortcut on the Quick Launch tools of the
Task Bar, in the Start menu or in the My Places panel of the Open dialog?

HTH |:)
Bob Jones
[MVP] Office:Mac


On 12/1/06 4:54 PM, in article
, "MoJR"
wrote:

Hello,
I would like to assign a keyboard shortcut to open a folder from My Documents.
Is this possible? If so, how can I accomplish it?
Thank you,
MoJR





  #6   Report Post  
Posted to microsoft.public.word.docmanagement
CyberTaz CyberTaz is offline
external usenet poster
 
Posts: 1,348
Default shortcuts

No problem - but my thinking was that a macro will only work for you if
you're in Word, whereas the suggestions I made can be used any time - even
if you're in a different program or have no program running at all... And
most can be executed with the keyboard rather than requiring use of the
mouse. (Perhaps not a *single* keystroke, but still no mouse involved.)

Regards |:)
Bob Jones
[MVP] Office:Mac




  #7   Report Post  
Posted to microsoft.public.word.docmanagement
MoJR MoJR is offline
external usenet poster
 
Posts: 25
Default shortcuts

Cyber,
Thanks. That's a good idea. I assume I can do this with other folders as
well!?
MoJR

"CyberTaz" wrote:

No problem - but my thinking was that a macro will only work for you if
you're in Word, whereas the suggestions I made can be used any time - even
if you're in a different program or have no program running at all... And
most can be executed with the keyboard rather than requiring use of the
mouse. (Perhaps not a *single* keystroke, but still no mouse involved.)

Regards |:)
Bob Jones
[MVP] Office:Mac





  #8   Report Post  
Posted to microsoft.public.word.docmanagement
MoJR MoJR is offline
external usenet poster
 
Posts: 25
Default shortcuts

"CyberTaz" wrote:

No problem - but my thinking was that a macro will only work for you if
you're in Word, whereas the suggestions I made can be used any time - even
if you're in a different program or have no program running at all... And
most can be executed with the keyboard rather than requiring use of the
mouse. (Perhaps not a *single* keystroke, but still no mouse involved.)


How do I assign the keystrokes to these shortcuts?

MoJR
  #9   Report Post  
Posted to microsoft.public.word.docmanagement
Jay Freedman Jay Freedman is offline
external usenet poster
 
Posts: 9,854
Default shortcuts

On Sat, 2 Dec 2006 12:07:00 -0800, MoJR
wrote:

"CyberTaz" wrote:

No problem - but my thinking was that a macro will only work for you if
you're in Word, whereas the suggestions I made can be used any time - even
if you're in a different program or have no program running at all... And
most can be executed with the keyboard rather than requiring use of the
mouse. (Perhaps not a *single* keystroke, but still no mouse involved.)


How do I assign the keystrokes to these shortcuts?

MoJR


Right-click a desktop or Quick Launch icon and select Properties.
There's a Shortcut Key field in that dialog.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.
  #10   Report Post  
Posted to microsoft.public.word.docmanagement
MoJR MoJR is offline
external usenet poster
 
Posts: 25
Default shortcuts

Thank you Jay.
MoJR

"Jay Freedman" wrote:

On Sat, 2 Dec 2006 12:07:00 -0800, MoJR
wrote:

"CyberTaz" wrote:

No problem - but my thinking was that a macro will only work for you if
you're in Word, whereas the suggestions I made can be used any time - even
if you're in a different program or have no program running at all... And
most can be executed with the keyboard rather than requiring use of the
mouse. (Perhaps not a *single* keystroke, but still no mouse involved.)


How do I assign the keystrokes to these shortcuts?

MoJR


Right-click a desktop or Quick Launch icon and select Properties.
There's a Shortcut Key field in that dialog.

--
Regards,
Jay Freedman
Microsoft Word MVP FAQ: http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the
newsgroup so all may benefit.

Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Keyboard shortcuts for user-created macros? Phrank New Users 2 September 19th 06 10:31 AM
How to disable keyboard shortcuts in Word 2003 techni Microsoft Word Help 1 January 31st 06 11:47 AM
Imbedding shortcuts [email protected] Microsoft Word Help 1 January 24th 06 04:51 AM
How do I find all shortcuts to a document? ramon Microsoft Word Help 1 December 10th 05 01:02 AM
Word 2003 won't save symbol shortcuts WhiteMocha Microsoft Word Help 4 June 1st 05 04:10 AM


All times are GMT +1. The time now is 04:33 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"