PC Review


Reply
Thread Tools Rate Thread

Alternative way of highlighting to the end of a paragraph?

 
 
Michael
Guest
Posts: n/a
 
      27th Jun 2009
Hello,

I wanted to automatically (for an AutoHotkey program) highlight text from
the cursor position to the end of the paragraph (cell) and then in the next
step delete the text.

The problem is that the Windows hotkey for highlighting text from the cursor
position to the end of the paragraph (CTRL-SHIFT-DOWNARROW) is already
assigned in the program I want to do this in.

Is there an alternative way of automatically highlighting text from the
cursor position to the end of the paragraph? Is there a way of changing the
Windows hotkey that does that?

Thanks in advance for any insight or information!
 
Reply With Quote
 
 
 
 
Pegasus [MVP]
Guest
Posts: n/a
 
      27th Jun 2009

"Michael" <(E-Mail Removed)> wrote in message
news:806A9673-B303-4A05-AF30-(E-Mail Removed)...
> Hello,
>
> I wanted to automatically (for an AutoHotkey program) highlight text from
> the cursor position to the end of the paragraph (cell) and then in the
> next
> step delete the text.
>
> The problem is that the Windows hotkey for highlighting text from the
> cursor
> position to the end of the paragraph (CTRL-SHIFT-DOWNARROW) is already
> assigned in the program I want to do this in.
>
> Is there an alternative way of automatically highlighting text from the
> cursor position to the end of the paragraph? Is there a way of changing
> the
> Windows hotkey that does that?
>
> Thanks in advance for any insight or information!


Hard to say - you're not telling us what application you're using. MS Word?
Acrobat? Some EMail client? Whichever it is, your best bet is to repost your
question in the appropriate newsgroup. There is one for each of these
applications!


 
Reply With Quote
 
Michael
Guest
Posts: n/a
 
      27th Jun 2009
It's a non-Microsoft application, and I didn't think it was relevant. If it
is, the application is Deja Vu X by Atril. The application has already laid
claim to that key combination, and I would prefer not to change it in that
program.

I'm just curious if there is ANY other way of getting Windows to highlight
text from the cursor to the end of the paragraph (cell).

"Pegasus [MVP]" wrote:

>
> "Michael" <(E-Mail Removed)> wrote in message
> news:806A9673-B303-4A05-AF30-(E-Mail Removed)...
> > Hello,
> >
> > I wanted to automatically (for an AutoHotkey program) highlight text from
> > the cursor position to the end of the paragraph (cell) and then in the
> > next
> > step delete the text.
> >
> > The problem is that the Windows hotkey for highlighting text from the
> > cursor
> > position to the end of the paragraph (CTRL-SHIFT-DOWNARROW) is already
> > assigned in the program I want to do this in.
> >
> > Is there an alternative way of automatically highlighting text from the
> > cursor position to the end of the paragraph? Is there a way of changing
> > the
> > Windows hotkey that does that?
> >
> > Thanks in advance for any insight or information!

>
> Hard to say - you're not telling us what application you're using. MS Word?
> Acrobat? Some EMail client? Whichever it is, your best bet is to repost your
> question in the appropriate newsgroup. There is one for each of these
> applications!
>
>
>

 
Reply With Quote
 
Pegasus [MVP]
Guest
Posts: n/a
 
      27th Jun 2009
The name of the application is highly relevant, and even more relevant is
the method you use to reach the end of the paragraph or cell. If it is some
keystroke combination then perhaps AutoIt is your answer:
http://www.autoitscript.com/autoit3/downloads.shtml. But perhaps something
as simple as Shift+End would do the trick . . .


"Michael" <(E-Mail Removed)> wrote in message
news:203738AC-248C-400B-8381-(E-Mail Removed)...
> It's a non-Microsoft application, and I didn't think it was relevant. If
> it
> is, the application is Deja Vu X by Atril. The application has already
> laid
> claim to that key combination, and I would prefer not to change it in that
> program.
>
> I'm just curious if there is ANY other way of getting Windows to highlight
> text from the cursor to the end of the paragraph (cell).
>
> "Pegasus [MVP]" wrote:
>
>>
>> "Michael" <(E-Mail Removed)> wrote in message
>> news:806A9673-B303-4A05-AF30-(E-Mail Removed)...
>> > Hello,
>> >
>> > I wanted to automatically (for an AutoHotkey program) highlight text
>> > from
>> > the cursor position to the end of the paragraph (cell) and then in the
>> > next
>> > step delete the text.
>> >
>> > The problem is that the Windows hotkey for highlighting text from the
>> > cursor
>> > position to the end of the paragraph (CTRL-SHIFT-DOWNARROW) is already
>> > assigned in the program I want to do this in.
>> >
>> > Is there an alternative way of automatically highlighting text from the
>> > cursor position to the end of the paragraph? Is there a way of changing
>> > the
>> > Windows hotkey that does that?
>> >
>> > Thanks in advance for any insight or information!

>>
>> Hard to say - you're not telling us what application you're using. MS
>> Word?
>> Acrobat? Some EMail client? Whichever it is, your best bet is to repost
>> your
>> question in the appropriate newsgroup. There is one for each of these
>> applications!
>>
>>
>>



 
Reply With Quote
 
Elmo
Guest
Posts: n/a
 
      27th Jun 2009
Michael wrote:
> It's a non-Microsoft application, and I didn't think it was relevant. If it
> is, the application is Deja Vu X by Atril. The application has already laid
> claim to that key combination, and I would prefer not to change it in that
> program.
>
> I'm just curious if there is ANY other way of getting Windows to highlight
> text from the cursor to the end of the paragraph (cell).
>
> "Pegasus [MVP]" wrote:
>
>> "Michael" <(E-Mail Removed)> wrote in message
>> news:806A9673-B303-4A05-AF30-(E-Mail Removed)...
>>> Hello,
>>>
>>> I wanted to automatically (for an AutoHotkey program) highlight text from
>>> the cursor position to the end of the paragraph (cell) and then in the
>>> next
>>> step delete the text.
>>>
>>> The problem is that the Windows hotkey for highlighting text from the
>>> cursor
>>> position to the end of the paragraph (CTRL-SHIFT-DOWNARROW) is already
>>> assigned in the program I want to do this in.
>>>
>>> Is there an alternative way of automatically highlighting text from the
>>> cursor position to the end of the paragraph? Is there a way of changing
>>> the
>>> Windows hotkey that does that?
>>>
>>> Thanks in advance for any insight or information!

>> Hard to say - you're not telling us what application you're using. MS Word?
>> Acrobat? Some EMail client? Whichever it is, your best bet is to repost your
>> question in the appropriate newsgroup. There is one for each of these
>> applications!


Ctrl/End moves the cursor to the end.. if you click a point, then press
Ctrl/Shift/End, that should do it.

--
Joe =o)
 
Reply With Quote
 
Michael
Guest
Posts: n/a
 
      28th Jun 2009
That did the trick and was exactly what I was looking for. Thank you, Joe!

"Elmo" wrote:

> Michael wrote:
> > It's a non-Microsoft application, and I didn't think it was relevant. If it
> > is, the application is Deja Vu X by Atril. The application has already laid
> > claim to that key combination, and I would prefer not to change it in that
> > program.
> >
> > I'm just curious if there is ANY other way of getting Windows to highlight
> > text from the cursor to the end of the paragraph (cell).
> >
> > "Pegasus [MVP]" wrote:
> >
> >> "Michael" <(E-Mail Removed)> wrote in message
> >> news:806A9673-B303-4A05-AF30-(E-Mail Removed)...
> >>> Hello,
> >>>
> >>> I wanted to automatically (for an AutoHotkey program) highlight text from
> >>> the cursor position to the end of the paragraph (cell) and then in the
> >>> next
> >>> step delete the text.
> >>>
> >>> The problem is that the Windows hotkey for highlighting text from the
> >>> cursor
> >>> position to the end of the paragraph (CTRL-SHIFT-DOWNARROW) is already
> >>> assigned in the program I want to do this in.
> >>>
> >>> Is there an alternative way of automatically highlighting text from the
> >>> cursor position to the end of the paragraph? Is there a way of changing
> >>> the
> >>> Windows hotkey that does that?
> >>>
> >>> Thanks in advance for any insight or information!
> >> Hard to say - you're not telling us what application you're using. MS Word?
> >> Acrobat? Some EMail client? Whichever it is, your best bet is to repost your
> >> question in the appropriate newsgroup. There is one for each of these
> >> applications!

>
> Ctrl/End moves the cursor to the end.. if you click a point, then press
> Ctrl/Shift/End, that should do it.
>
> --
> Joe =o)
>

 
Reply With Quote
 
Elmo
Guest
Posts: n/a
 
      28th Jun 2009
Michael wrote:
> That did the trick and was exactly what I was looking for. Thank you, Joe!
>
> "Elmo" wrote:
>
>> Michael wrote:
>>> It's a non-Microsoft application, and I didn't think it was relevant. If it
>>> is, the application is Deja Vu X by Atril. The application has already laid
>>> claim to that key combination, and I would prefer not to change it in that
>>> program.
>>>
>>> I'm just curious if there is ANY other way of getting Windows to highlight
>>> text from the cursor to the end of the paragraph (cell).
>>>
>>> "Pegasus [MVP]" wrote:
>>>
>>>> "Michael" <(E-Mail Removed)> wrote in message
>>>> news:806A9673-B303-4A05-AF30-(E-Mail Removed)...
>>>>> Hello,
>>>>>
>>>>> I wanted to automatically (for an AutoHotkey program) highlight text from
>>>>> the cursor position to the end of the paragraph (cell) and then in the
>>>>> next
>>>>> step delete the text.
>>>>>
>>>>> The problem is that the Windows hotkey for highlighting text from the
>>>>> cursor
>>>>> position to the end of the paragraph (CTRL-SHIFT-DOWNARROW) is already
>>>>> assigned in the program I want to do this in.
>>>>>
>>>>> Is there an alternative way of automatically highlighting text from the
>>>>> cursor position to the end of the paragraph? Is there a way of changing
>>>>> the
>>>>> Windows hotkey that does that?
>>>>>
>>>>> Thanks in advance for any insight or information!
>>>> Hard to say - you're not telling us what application you're using. MS Word?
>>>> Acrobat? Some EMail client? Whichever it is, your best bet is to repost your
>>>> question in the appropriate newsgroup. There is one for each of these
>>>> applications!

>> Ctrl/End moves the cursor to the end.. if you click a point, then press
>> Ctrl/Shift/End, that should do it.


That's great news! Thanks for reporting back.

--
Joe =o)
 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Google Adsense Alternative - Commission Junction Alternative -ClickBank Alternative William9999 Windows XP Performance 0 2nd Nov 2010 09:02 AM
Google Adsense Alternative - Commission Junction Alternative -ClickBank Alternative William9999 Windows XP Performance 0 2nd Nov 2010 09:01 AM
Shortcut key for Paragraph dialog box, or alternative to CTRL+0? =?Utf-8?B?SGFucw==?= Microsoft Word Document Management 2 12th Sep 2006 06:41 PM
Highlighting blanks via GO TO SPECIAL is not highlighting blank cells - HELP, I'm totally stuck. Jamie Furlong Microsoft Excel Misc 6 28th Aug 2005 09:27 PM
[Update] QuickTime Alternative 1.48 & Real Alternative 1.40 & QuickTime Alternative 1.50 Beta 1 CoMa Freeware 3 14th Jun 2005 03:58 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 08:28 AM.