azxten
Junior Member
- Mar 6, 2009
- 143
- 109
This is just a simple AutoIt script that will take a list of video IDs from eYoutubeExtractor and insert them into the eYoutubeMacros database using MDB browser.
Files:
eYoutubeMacros
http://www.blackhatworld.com/blackhat-seo/black-hat-seo-tools/120694-free-eyoutubemacros-comment-spammer-account-creator.html
eYoutubeExtractor
http://tools.theelitist.net/products/eYoutubeExtractor/Script/
MDB Browser
http://download.cnet.com/MDB-Browser-and-Editor/3000-10254_4-10070578.html
AutoIt V3
http://www.autoitscript.com/autoit3/downloads.shtml
Script
Save the script as whatever.au3 to run it. Pushing escape will quit the script.
Instructions for use:
Open data.mdb with MDB Browser and open the videos table.
After installing AutoIt use the "AutoIt Window Info" program in your program files to get the X/Y coordinates of the "new entry" field for video ID (meaning where you can click and enter a new record).
Edit the script MouseClick function to refer to the coordinates (first two values, in mine it's 110, 1007).
Run eYoutubeExtractor in "List of IDs" mode. Copy the list of IDs into a new notepad document (note in the script it WinActivates based on "Untitled" for a new notepad, so make sure it's the only one open).
Make sure the mouse cursor is at the start of the first video ID, it will shift+right button 11 times to highlight then cut, activate MDB, click where you've told it to, paste, push down to enter the record and start over again.
This is a quickly hacked together script and it requires a little setup but it allows you to easily insert lots of video IDs into eYoutubeMacros. Enjoy.
Oh and if the author of the eYoutube programs wants me to remove this for some reason just ask.
Files:
eYoutubeMacros
http://www.blackhatworld.com/blackhat-seo/black-hat-seo-tools/120694-free-eyoutubemacros-comment-spammer-account-creator.html
eYoutubeExtractor
http://tools.theelitist.net/products/eYoutubeExtractor/Script/
MDB Browser
http://download.cnet.com/MDB-Browser-and-Editor/3000-10254_4-10070578.html
AutoIt V3
http://www.autoitscript.com/autoit3/downloads.shtml
Script
PHP:
HotkeySet ("{ESC}", "Stop")
While 1
WinActivate("Untitled", "")
Sleep(50)
Send("+{RIGHT}+{RIGHT}+{RIGHT}+{RIGHT}+{RIGHT}+{RIGHT}+{RIGHT}+{RIGHT}+{RIGHT}+{RIGHT}+{RIGHT}^x")
Sleep(50)
WinActivate("MDB Browser", "")
Sleep(50)
MouseClick("left", 110, 1007, 2)
Sleep(50)
MouseClick("left", 110, 1007, 1)
Sleep(50)
Send("^v{DOWN}{DOWN}{DOWN}")
Sleep(50)
WinActivate("Untitled", "")
Sleep(50)
Send("{DEL}")
Sleep(50)
WEnd
Func Stop ()
Exit 0
EndFunc
Save the script as whatever.au3 to run it. Pushing escape will quit the script.
Instructions for use:
Open data.mdb with MDB Browser and open the videos table.
After installing AutoIt use the "AutoIt Window Info" program in your program files to get the X/Y coordinates of the "new entry" field for video ID (meaning where you can click and enter a new record).
Edit the script MouseClick function to refer to the coordinates (first two values, in mine it's 110, 1007).
Run eYoutubeExtractor in "List of IDs" mode. Copy the list of IDs into a new notepad document (note in the script it WinActivates based on "Untitled" for a new notepad, so make sure it's the only one open).
Make sure the mouse cursor is at the start of the first video ID, it will shift+right button 11 times to highlight then cut, activate MDB, click where you've told it to, paste, push down to enter the record and start over again.
This is a quickly hacked together script and it requires a little setup but it allows you to easily insert lots of video IDs into eYoutubeMacros. Enjoy.
Oh and if the author of the eYoutube programs wants me to remove this for some reason just ask.