Name: Anonymous 2010-05-12 6:59
Hey guys, here's a little AHK goodie for ya.
Run the .exe and then press Ctrl+4
4Chan Magic helps you easily go to any 4Chan board and has the option for specific threads!
I made it just for convenience of having a nice little gui and I'm working on making it recognize a thread number so if you highlight one and press Ctr+4, it'll auto-load it into the thread box. It's just kinda a learning process for me. I've only been working with AHK for a few weeks now, and I wanted to share.
I'll see what I can do about other OS's as well, maybe I'll find something that will make it multi-platform.
http://rs274tl.rapidshare.com/cgi-bin/upload.cgi?rsuploadid=290599160010198122
Run the .exe and then press Ctrl+4
4Chan Magic helps you easily go to any 4Chan board and has the option for specific threads!
I made it just for convenience of having a nice little gui and I'm working on making it recognize a thread number so if you highlight one and press Ctr+4, it'll auto-load it into the thread box. It's just kinda a learning process for me. I've only been working with AHK for a few weeks now, and I wanted to share.
I'll see what I can do about other OS's as well, maybe I'll find something that will make it multi-platform.
http://rs274tl.rapidshare.com/cgi-bin/upload.cgi?rsuploadid=290599160010198122
#IfWinExist, 4Chan Magic
{
^4::WinActivate
}
#IfWinExist
^4::
Gui, Add, Text, x100 y120 w70 h20 +Center, What board?
Gui, Add, DropDownList, vboard x75 y143 w120 h210, |/a/|/b/||/c/|/d/|/e/|/f/|/g/|/gif/|/h/|/hr/|/k/|/m/|/o/|/p/|/r/|/s/|/t/|/u/|/v/|/w/|/wg/|/i/|/ic/|/
cm/|/y/|/r9k/|/3/|/adv/|/an/|/cgl/|/ck/|/co/|/fa/|/fit/|/int/|/jp/|/lit/|/mu/|/n/|/new/|/po/|/sci/|/
sp/|/tg/|/toy/|/trv/|/tv/|/x/
Gui, Add, Checkbox, vspec x85 y170 w100 h20, Specific thread?
Gui, Add, Edit, vnum x75 y191 w120 h22
Gui, Add, Button, Default x84 y220 w30 h20 +Center, OK
Gui, Add, Button, x134 y220 w50 h20 +Center, Cancel
Gui, Add, Picture, x0 y0 w275 h110 , %A_appcommondata%\4Chanlogo.jpg
Gui, Show, x415 y239 h248 w274
Gui, -SysMenu
Gui, Show,, 4Chan Magic
WinWaitClose, 4Chan Magic
Gui, Destroy
Return
ButtonOK:
Gui, Submit
if spec = 1
{
Run, http://boards.4chan.org%board%res/%num%
Gui, Destroy
Return
}
if spec = 0
{
Run, http://boards.4chan.org%board%
Gui, Destroy
Return
}
ButtonCancel:
{
Gui, Destroy
Return
}