Adding shortened or hyperlinks to word [closed] - ms-word

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I am writting some document with links to external websites, but some links are to large to simply be tossed in to the word file and i was thinking if there's a way to attach the hyperlink to any word/phrase in the document for example:
www.google.com/verylonglinkhereforexample
As if i would do in for a hyperlink tag:
check the site here, where clicking site, would take me to the desired link behind site word. Or is there any alternative at all to reduce links instead of tossing large links to the document?

This is an easy one.
Assuming you're using Office 2016/2019 (I'm not 100% sure about the others, but I'm sure it would be pretty similar), the easiest way to do this is:
First, highlight the text you want to go to the hyperlink.
Go to the insert tab
Press 'Link'
At the top of the dialog box, check that the text to display is the text you highlighted
At the bottom of the dialog box, enter the actual hyperlink
Press OK
Enjoy!

Related

Word: Automatically select text block on click [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
Is it possible to have Word (Office 365) automatically select a block of text when a user clicks into it?
For example we have instructions in a document that might be [insert updated fee here]
In general the whole block needs to be replaced with the new text.
These blocks are formatted in a specific way, so the method could be associated with a specific style, but as there are likely multiple instances of the style we would only want to update the one clicked on, not all instances.
I can't find a native method, so are we looking at a macro on each template that this occurs on?
You could insert your text blocks into Rich Text Content Controls as the placeholder texts for those content controls. No code required.

CSL Style Formatting Questions [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
I have two questions I was hoping the community could help me with. I'm specially using CSL in Mendeley with the Microsoft Word plugin.
Do you know how to control the spacing/tab between the number of the citation and the author names? I want this to be a space, but in the style I have it is a tab. I an unable to find this option! Please see screenshot #1.
example of the space between citation number and citation text in the bibliograpy
Is there a way I can control formatting of the bibliography using a word style? For example, I want it to remove the hanging indent and match the font/size of the rest of my document. See Screenshot #2.
example of the difference in formatting between the bibliography list and the remainder of the text of the paper
Many thanks for taking the time to answer these questions!
You can address by removing the second-field-align="flush" from the bibliography line of the style and instead just setting a suffix=" " on <text variable="citation-number"/>. However that will mean (by definition of what a space does) that subsequent lines will not start flush with the text, but will begin at the beginning of the line (though it sounds like that may be what you want anyway?). If you just want the tab to be shorter you can fix that in Word.
No, Mendely and CSL do not allow you to automatically address the Word style you're using. I believe the bibliography will get inserted with its own Word style, though, so you can modify that once and have the changes stick.

Word: Picture hidden behind text [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
Since this problem is reoccurring in my workflow and the solution is hard to find:
When pasting pictures into a MS Word document, sometimes it disappears behind the text, at least when working in the Print Layout. Sometimes also the text disappears and only part of the image is visible.
Select the image (if you cannot select it, change the view)
Go to Home > Paragraph > Line Spacing Options. A dialog box will appear.
Change the Line spacing from Exactly to anything else
Click OK

MS Word: Strange mode where typeover inserts instead [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I seem to have gotten Microsoft Word (from Office 2003) into a weird mode.
If I select some text with the mouse and "type over" it, the new text is inserted before the selected text instead of replacing it. Same thing happens if I use the Delete or Backspace key to eliminate it.
The following do work as expected:
1. backspace over the characters I want to delete, one character per keystroke
2. Same thing with the Delete key
3. control-X to "cut" the text.
Does anybody know how to return to "normal" behavior? And for that matter, how I managed to get into this mode?
You have activated the overwrite function!
https://support.office.com/en-us/article/Turn-on-or-off-overtype-mode-2fe125af-505f-4ce7-bbea-f0e64e381e75
The comment by MyDog led me to the right answer:
Tools menu ->Options, select the "Edit" pane and check "Typing Replaces Selection".
I have also found out what causes the problem -- at least the immediate cause. If I copy an image from another app (e.g., Irfanview or MS Paint) and paste it into the Word document, that turns off "typing replaces selection". I'm not sure why MS thought this would be a good idea, or if it's just a bug, but at least now I know what causes it, and that I have to turn typeover back on after pasting an image.

Change The Initials of Comments made in Microsoft Word [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
How to Change The Initials of Comments made in Microsoft Word?
I tried the following and it is only changing the new comments and existing comments are unable to be changed.
Options --> Initial Name --> Changed --> Saved --> Restart Docx
I referred this link https://superuser.com/questions/208153/renaming-the-initials-in-word-comments and used the macro option and code provided. It worked :)
Sub ChangeInitialsAndAuthor()
For Each MyComment In ActiveDocument.Comments
If MyComment.Initial = "old" Then MyComment.Initial = "new"
Next
End Sub
How to use the macro
Open your Word file and press ALT+F11 to open the VBA editor
Insert a new module and copy & paste the code above
Change old to your old initials and new to your new initials
Run the macro with F5 from the editor or ALT+F8 from word
There is no automatic way to do this. You have do it manually.
http://office.microsoft.com/en-in/word-help/change-the-author-name-for-review-comments-HA010036415.aspx