Open Side Menu Go to the Top

03-02-2013 , 09:13 AM
Hey I'm looking for a program that has multi paste functions.

For example, I'd like to be able to paste up to 4 or 5 different saved messages.


"Fish, too many hands"
"Nit, under 20 vpip"
"Never seen a bluff over 10bb"
"3b from sb with"
"3b from bb with"

The program could either let me cycle through predetermined saved pastes, or define separate hotkeys for each line.


Any suggestions?
Multi copy paste program Quote
Multi copy paste program
150% up to $2,000 Welcome Bonus on CoinPoker
Join the action now
Daily Rewards • Splash Pots • CoinRaces
Multi copy paste program
03-02-2013 , 10:16 AM
Quote:
Originally Posted by Pokernubz
Hey I'm looking for a program that has multi paste functions.

For example, I'd like to be able to paste up to 4 or 5 different saved messages.


"Fish, too many hands"
"Nit, under 20 vpip"
"Never seen a bluff over 10bb"
"3b from sb with"
"3b from bb with"

The program could either let me cycle through predetermined saved pastes, or define separate hotkeys for each line.


Any suggestions?

Try this AHK script:

Code:
#SingleInstance force
#Persistent

F7::
SendInput, Fish, too many hands
return

F8::
SendInput, Nit, under 20 vpip
return
It'll paste the phrases into current position of the cursor. Hotkeys can be reassigned according to your needs.
Multi copy paste program Quote
03-02-2013 , 12:08 PM
Noteabbs should do what you want also - http://forumserver.twoplustwo.com/45...light=noteabbs
Multi copy paste program Quote
03-02-2013 , 07:51 PM
Thanks, That looks like a great program for what I need

I'm having a few issues though, I have problems deleting a hotstring, it says to right click then delete entry, but it ain't working.

FWIW i'm using the last post ahk version, the post that u wrote.

* found another bug, the "close and exit" box doesn't work, I have to close program by hitting the actual x in top right

I notice, that when AHK script is running, there seems to be a slight delay in my response time when typing. If I can avoid ahk scripts altogether i would.

Last edited by Pokernubz; 03-02-2013 at 08:01 PM.
Multi copy paste program Quote
03-02-2013 , 07:55 PM
Quote:
Originally Posted by Pokernubz
That looks like a great program for what I need

I'm having problems deleting a hotstring though, it says to right click then delete entry, but it aint working.

FWIW i'm using the last post in the thread, you wrote for my ahk version.
I found it much easier to just open the .ahk file in a text editor and make edits or add new strings. FWIW I haven't used it in a few years since my company bought us a corporate license for Breevy.
Multi copy paste program Quote
Multi copy paste program
150% up to $2,000 Welcome Bonus on CoinPoker
Join the action now
Daily Rewards • Splash Pots • CoinRaces
Multi copy paste program

      
m