AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Removing Half of the Enter Keys

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
Sergio



Joined: 16 Mar 2008
Posts: 25
Location: Brooklyn

PostPosted: Tue Apr 29, 2008 12:39 am    Post subject: Removing Half of the Enter Keys Reply with quote

I copy text from PayPal and paste it into MS word. The format looks like this as it is copied:

Quote:
Ship to this address:
First Last
Street Address
City, State
Country


However when I paste it, it looks like this:

Quote:
Ship to this address:

First Last

Street Address

City, State

Country


When I use the string replace feature
Code:
StringReplace, clipboard, clipboard, `r`n, , All


the address looks like this
Quote:
Ship to this address:First LastStreet AddressCity, StateCountry



How can I get the address to look normal as it is pasted?
_________________
Back to top
View user's profile Send private message
[VxE]



Joined: 07 Oct 2006
Posts: 1132

PostPosted: Tue Apr 29, 2008 1:28 am    Post subject: Reply with quote

Code:
~^c::
Sleep 100
StringReplace, clipboard, clipboard, `r`n, `n, all
return

Give that a try.
_________________
My Home Thread
More Common Answers: 1. It's in the FAQ 2. Ternary ( ? : ) guide 3. Post code with [code][/code] tags
Back to top
View user's profile Send private message
Sergio



Joined: 16 Mar 2008
Posts: 25
Location: Brooklyn

PostPosted: Tue Apr 29, 2008 1:38 am    Post subject: Bingo! Reply with quote

That did the trick. Thanks! Smile
_________________
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group