Bradness Posted August 4, 2007 Posted August 4, 2007 (edited) Hey guys, im new to AutoIt and I decided to release my smiley switcher for Yahoo! Messenger. Dont you have that when you post code into Yahoo!, it uses smileys? Well use this code to move the smileys, and when you want them, use it again. Heres the code: #NoTrayIcon $smileysenabled = FileExists ( "C:\Program Files\Yahoo!\Messenger\Media\Smileys\1.swf" ) If $smileysenabled = 1 Then DirCreate ( "C:\Program Files\Yahoo!\Messenger\Media\Smileys\backup\" ) FileMove ( "C:\Program Files\Yahoo!\Messenger\Media\Smileys\*.*", "C:\Program Files\Yahoo!\Messenger\Media\Smileys\backup\" ) ElseIf $smileysenabled = 0 Then FileMove ( "C:\Program Files\Yahoo!\Messenger\Media\Smileys\backup\*.*", "C:\Program Files\Yahoo!\Messenger\Media\Smileys\" ) FileDelete ( "C:\Program Files\Yahoo!\Messenger\Media\Smileys\backup\" ) EndIf All suggests. are appreciated and thanks. Edited October 29, 2007 by Bradness My Programs:Rock Paper ScissorsMy UDFs:NONE
JustinReno Posted August 4, 2007 Posted August 4, 2007 cool script, but isnt there a function in yahoo to turn off the smileys?
Bradness Posted August 5, 2007 Author Posted August 5, 2007 Surprisingly, no, I do not think there is. All this does is moves the smileys to a folder so that they dont work. =) My Programs:Rock Paper ScissorsMy UDFs:NONE
Bradness Posted October 29, 2007 Author Posted October 29, 2007 Sorry for double post: Someone recently hacked my account. The code has been tampered, and im changing it right now to removed the bad code and make it more efficient. My Programs:Rock Paper ScissorsMy UDFs:NONE
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now