Get different SpinTax everytime you hit "paste" or Ctrl+v button? is this possible?

Status
Not open for further replies.

supak111

Newbie
Joined
Dec 29, 2010
Messages
17
Reaction score
0
I would love to find a program or something that can add a different spintax text very time I hit "paste" button on my PC.

Is there such a program? or is there any way to get this to work?

My goal would be to get different text to "paste" every time i hit "Ctrl+V". Text can be from a pre-made .txt file, doesn't have to be spintax, but spintax would make it better.

I know there are online spintax tools, so I can go put in keywords, then every time I hit spin it give me a different text, then I would have to copy and then paste. But it would be much easier if I could just skip all that and just hit paste and get different text without online tools.

Please let me know what you guys think, any suggestions are appreciated.
 
so chances are I won't find anything then?
 
I should imagine it is possible to code such a program if you are willing to pay for it.

I don't know of any tool that does this automatically.

What spinner are you using currently?

Do you need it to spin the word, sentence, paragraph?
 
There is an online Spintax service: http://www.wmutils.com/spinner/
 
Hey mate, one of the authors of Chimp Rewriter here. Sounds like a pretty cool feature and have an idea how it would work.

What's the intended usage, pasting an article into multiple sites, keywords, titles or something else?
 
Hey, there, I used this as an exercise. I weren't able to find a readymade solution, so bolted several things together to come up with paste+spinning.
It's written in python 2.7 (you need to install it).
Then copy the code below into an txt file, name it pastespin.py and save it.
Put your spuntext next to that file, name it spintaxtext.txt
This program has the following dependencies:

win32clipboard
pyHook
pythoncom

It needs them to access the clipboard outside of the app itself.

Code:
# -*- coding: iso-8859-1 -*- """
 Created on Thu Sep 19 17:15:59 2013
 

 Bloghat
 """
 

 import win32clipboard,pyHook,pythoncom,random
 

 

 File_instead_of_Line = True  #set to False if you want to use the single line below, true if you want to access the file
 spinfile = "spintaxtext.txt" #spintext must be in this file (same folder as pastespin.py file)
 

 # or
 spinline = '''{What ever,|How dare you,|What the...} {or, what I wanted to {write|say}|{Things|Thoughts}, I was about to tell|yell}.'''
 

 if File_instead_of_Line:
     fileObj= open(spinfile)
     spintxt = fileObj.read()
     spintxt = spintxt.replace('','')
 else:
     spintxt = spinline
     
 

 def doClipboard(spinnedtext):
     win32clipboard.OpenClipboard()
     win32clipboard.EmptyClipboard()
     win32clipboard.SetClipboardText(spinnedtext)
     win32clipboard.CloseClipboard()
 

     
 def OnKeyboardEvent(event):
     if event.Ascii == 22:
         doClipboard(spin(spintxt))
 

 

 def spin(content):
     start = content.find('{')
     end = content.find('}')
  
     if start == -1 and end == -1:
         #none left
         return content
     elif start == -1:
         return content
     elif end == -1:
         raise "unbalanced brace"
     elif end < start:
         return content
     elif start < end:
         rest = spin(content[start+1:])
         end = rest.find('}')
         if end == -1:
             raise "unbalanced brace"
         return content[:start] + random.choice(rest[:end].split('|')) + spin(rest[end+1:])
  
      
 

 # create a hook manager
 hm = pyHook.HookManager() # watch for all events
 hm.KeyDown = OnKeyboardEvent # set the hook
 hm.HookKeyboard() # wait forever
 pythoncom.PumpMessages()
 
Last edited:
Hai friend, I will explain to you

First choose the " Best content" would you like to Spin.

Go to this http://spinbot.com/

Paste you content and spin your text freely.

After spining and copy the text in notepad and paste in your post.
 
That's outright interesting.
wowYou must tell me the whole story.Tell me all.
wow
Omfg11!!11!!!
No, really?
Don't say that.
 
Just wanted to show that my script is a lot of fun :D
My poor skype friends lol
 
Just wanted to show that my script is a lot of fun :D
My poor skype friends lol

wow awesome. I personally wanna use this to spin stuff I post online. youtube videos... pictures...
 
Whats wrong with using a simple excel or spreadsheet to grab a row of text and paste it where you want? There are also programs that allow multiple lines of text to be copied and pasted.
 
Guys, now that i wrote it, I see alot of useful appliances!
Want to manually comment on blogs? Put that large GSA comment Spintext (from gsa ser) into the textfile and go where nobody has gone before.
Having a boring skype conversation? answer with a single copy-v :D
It's much quicker than excel... it's only a single "copy-v"
pastespin.jpg

set
Code:
File_instead_of_Line = False
and replace
Code:
spinline = '''{{That is|That's} {|outright }interesting.|{You must tell me the whole {plot|story}.|Tell me {all|more}.}|{No, really?|O rly?|WTF?}|{Don't say that.|Naaaw|oops}|{How cool!|Amazing!|Great|Awesome!}|{OMG!|Omfg11!!11!!!}|{wow|crazy!}|{Your stories are always welcome. I was bored anyways.|You're always such a great friend.|I want my time back.}|{I nearly cried.|Thanks for your touching story!}}'''
 
Last edited:
I could set it up to deliver content from various files, e.g. names on ctrl-1 , country on ctrl-2, comment on ctrl-3, <ahref="somelink"> on ctlr-4
 
never really used python before, how do I get win32clipboard? Im on Vista, shouldn't the win32clipboard already be installed? I've installed both the python 2.7.5 and pyHook
 
What do you mean?

If you look at all his other posts, you will see what he means, what he means is " I am trying to inflate my post count " , most likely so that he can start to spam people by PM with his bullshit.
 
I could set it up to deliver content from various files, e.g. names on ctrl-1 , country on ctrl-2, comment on ctrl-3, <ahref="somelink"> on ctlr-4

hey i've install pyHook Python and downloaded clipboard on my vista but still cant get this to work
 
Last edited:
PMed you, we will get this to work on your machine.
 
Status
Not open for further replies.
Back
Top