Open Side Menu Go to the Top

03-22-2012 , 04:36 PM
Hey guys/gals,

I was wondering if there is an easy way to implement a script modifying the clipboad. My problem is that entraction HHs are in the format of X - X - X - X , with the dashes, and the format for propokertools simulations is without the dashes so I would like to have a script which would just remove the dashes from stuff that is copied to clipboard. This is probably very easy to do to somebody who has the slightest clue, but alas, I'm pretty clueless with coding / scripting so I was wondering if anybody here could give me pointer on how to achieve this. Any help appreciated!

-J
Is there a simple script / software for this? (modifying the clipboard) Quote
Is there a simple script / software for this? (modifying the clipboard)
150% up to $2,000 Welcome Bonus on CoinPoker
Join the action now
Daily Rewards ? Splash Pots ? CoinRaces
Is there a simple script / software for this? (modifying the clipboard)
03-22-2012 , 07:26 PM
To get this somewhere i suggest you post what you have so far(probably already done ahk script that doesnt remove dashes)

It should be fairly easy to remove it but you would probably need to modify the string in which you put stuff from clipboard, instead clipboard itself.
Is there a simple script / software for this? (modifying the clipboard) Quote
03-22-2012 , 09:41 PM
very easy with AHK, here will set F2 key to strip - symbol from clipboard contents:

Code:
#NoEnv 
SendMode Input 

F2::
temp := clipboard
StringReplace, temp, temp, -, ,All
clipboard := temp
return
Is there a simple script / software for this? (modifying the clipboard) Quote
03-23-2012 , 03:26 PM
dave: thanks a lot! I thought that something like that would exist. I will try it out as soon as I have time for a session..
Is there a simple script / software for this? (modifying the clipboard) Quote
03-26-2012 , 12:57 PM
works like a charm. more thanks!
Is there a simple script / software for this? (modifying the clipboard) Quote
Is there a simple script / software for this? (modifying the clipboard)
150% up to $2,000 Welcome Bonus on CoinPoker
Join the action now
Daily Rewards ? Splash Pots ? CoinRaces
Is there a simple script / software for this? (modifying the clipboard)

      
m