| View previous topic :: View next topic |
| Author |
Message |
Ph3rny Theme Moderator
Joined: 08 Apr 2006 Posts: 151
|
Posted: Wed May 10, 2006 3:10 am Post subject: Google talk With EMOTICONS |
|
|
I have finally done it.
Google talk with Emoticons
Download
Other Great Google Talk Themes _________________
My Themes Including Windows 9x, BSOD, PHP, Digg, Star Wars, My First Theme, Windows XP, Lined-Paper, and EMOTICONS |
|
| Back to top |
|
 |
|
invisible Learning
Joined: 13 Apr 2006 Posts: 30
|
Posted: Wed May 10, 2006 7:28 am Post subject: |
|
|
Aha! Onload did work.. I was trying it on a DIV and it wasn't working, haha, silly me . Yeah, well, should I upload an exploit in a theme now that that has been done ? _________________ Invisible |
|
| Back to top |
|
 |
Wumpus Site Admin


Joined: 01 Sep 2005 Posts: 475
|
Posted: Wed May 10, 2006 7:41 am Post subject: |
|
|
oohw
looks great, installed it as my default theme |
|
| Back to top |
|
 |
mEo Site Admin


Joined: 08 Oct 2005 Posts: 700 Location: Hong Kong
|
Posted: Wed May 10, 2006 8:20 am Post subject: |
|
|
Well done! That's great to see  _________________ My First Homemade Sig
 |
|
| Back to top |
|
 |
Shoop Learning

Joined: 01 Apr 2006 Posts: 21
|
Posted: Wed May 10, 2006 8:50 am Post subject: |
|
|
Woah! This is great news Congrats! This is by far better than those weird text-emoticons that google have. _________________
 |
|
| Back to top |
|
 |
|
vikke Moderator

Joined: 14 Sep 2005 Posts: 867
|
Posted: Wed May 10, 2006 6:40 pm Post subject: |
|
|
| Really cool man! |
|
| Back to top |
|
 |
Ph3rny Theme Moderator
Joined: 08 Apr 2006 Posts: 151
|
Posted: Wed May 10, 2006 8:38 pm Post subject: |
|
|
Wow some people apparently are losers...
I posted it to digg (here... and someone replied "Old News" ... what a dope head _________________
My Themes Including Windows 9x, BSOD, PHP, Digg, Star Wars, My First Theme, Windows XP, Lined-Paper, and EMOTICONS |
|
| Back to top |
|
 |
deAd Regular Talker
Joined: 03 Jan 2006 Posts: 65
|
Posted: Wed May 10, 2006 9:05 pm Post subject: |
|
|
Nice! I'll probably be making a simpler set and incorporating them into eSquare 2 really nice work  |
|
| Back to top |
|
 |
Ferk Learning

Joined: 04 May 2006 Posts: 23
|
Posted: Thu May 11, 2006 11:29 am Post subject: |
|
|
wow... this feature about themes really has a lot of posibilities!
I wonder if there could be done some kind of "personal smilies" by mixing themes with a plugin that changed the input " ;) " into a bbcode-like tag.. something like "[img=http://www.customizetalk.com/forums/images/smiles/icon_wink.gif]" and then the theme replaced that code into an image.
so just making the plugin change the replacing text for " ;) " into any image from internet in bbcode, you could have any emoticon you wanted that could be showed in any [img] tag compatible theme.
even without that plugin, an [img] tag compatiblility would be cool... do you think it could be done?
maybe something like:
asdf= asdf.replace(/[img]/g, '<img src=');
asdf= asdf.replace(/[\/img]/g, ' style=display:inline;>');
I dont know if this would work since I dont know very much about it _________________
-
Chat with me! |
|
| Back to top |
|
 |
invisible Learning
Joined: 13 Apr 2006 Posts: 30
|
Posted: Thu May 11, 2006 2:24 pm Post subject: |
|
|
| Ferk wrote: |
wow... this feature about themes really has a lot of posibilities!
I wonder if there could be done some kind of "personal smilies" by mixing themes with a plugin that changed the input " " into a bbcode-like tag.. something like "[img=http://www.customizetalk.com/forums/images/smiles/icon_wink.gif]" and then the theme replaced that code into an image.
so just making the plugin change the replacing text for " " into any image from internet in bbcode, you could have any emoticon you wanted that could be showed in any [img] tag compatible theme.
even without that plugin, an [img] tag compatiblility would be cool... do you think it could be done?
maybe something like:
asdf= asdf.replace(/[img]/g, '<img src=');
asdf= asdf.replace(/[\/img]/g, ' style=display:inline;>');
I dont know if this would work since I dont know very much about it |
It would work but the fact that the image isn't on the local computer is kinda silly !
It'd be something like...
| Code: |
| asdf = asdf.replace("/(\[img.*((http|ftp)+(s)?:(\/\/)((\w|\.)+)(\/)?(\S+)?)\"\])/i", "<img src='\\2' style='display:inline'>"); |
to change [img src="blaaah"]. That's probably off a bit, meh! _________________ Invisible |
|
| Back to top |
|
 |
|
Ferk Learning

Joined: 04 May 2006 Posts: 23
|
Posted: Thu May 11, 2006 2:35 pm Post subject: |
|
|
| Quote: |
| It would work but the fact that the image isn't on the local computer is kinda silly :P! |
thats the point... since the image is not in your computer everybody could see the same image you posted through the internet.. so you can upload any image to some host and use it, sending it to your contacts in the bbcode way.. everybody could see that image as a emoticon then, and you wouldnt have to send them your theme and replace their emoticons.
but well.. it would be nicer if there was some plugin that changed the ";)" you send to the contacts into bbcode.. so you wouldnt have to write the full adress and tags everytime _________________
-
Chat with me! |
|
| Back to top |
|
 |
Ph3rny Theme Moderator
Joined: 08 Apr 2006 Posts: 151
|
Posted: Thu May 11, 2006 7:46 pm Post subject: |
|
|
it's a lot more complicated than that
you have to make sure it doesn't replace itself or it causes scripting errors
so what I did is I basically put this in the middle of the replace string:
this basically means it will search for the character a 0 times... kinda cheap way to do it but it works
EDIT: There currently are some problems with it that I need solving... Like it will replace "BOOM" with "[glassesooh.png]OM"
also if anyone types the word onload it will replace it with onclick _________________
My Themes Including Windows 9x, BSOD, PHP, Digg, Star Wars, My First Theme, Windows XP, Lined-Paper, and EMOTICONS |
|
| Back to top |
|
 |
invisible Learning
Joined: 13 Apr 2006 Posts: 30
|
Posted: Fri May 12, 2006 4:05 am Post subject: |
|
|
| Ph3rny wrote: |
it's a lot more complicated than that
you have to make sure it doesn't replace itself or it causes scripting errors
so what I did is I basically put this in the middle of the replace string:
this basically means it will search for the character a 0 times... kinda cheap way to do it but it works
EDIT: There currently are some problems with it that I need solving... Like it will replace "BOOM" with "[glassesooh.png]OM"
also if anyone types the word onload it will replace it with onclick |
For the issues with 'BOOM' etc. use "/[\s|^]BO[\s|$]/g" (or is it "/(\s|^)BO(\s|$)/g") the \s is any whitespace character, ^ is start (so it'd be whitespace or start) and the $ is end (so that the end would be whitespace or end)...
Psst, this is based on PHP's regex, not sure if it's exactly the same for JavaScript... _________________ Invisible |
|
| Back to top |
|
 |
Ph3rny Theme Moderator
Joined: 08 Apr 2006 Posts: 151
|
Posted: Sat May 13, 2006 1:31 pm Post subject: |
|
|
I fixed the BOOM problem
I just changed the replace to:
/>Ba{0}O</
since the smilies are already in a tag
if you want you can go re-download it for the new fixed version _________________
My Themes Including Windows 9x, BSOD, PHP, Digg, Star Wars, My First Theme, Windows XP, Lined-Paper, and EMOTICONS |
|
| Back to top |
|
 |
iluvthemes Talk n00bie
Joined: 08 Apr 2006 Posts: 6
|
Posted: Mon May 15, 2006 4:30 am Post subject: |
|
|
| can you do one with the gmail chat animated smileys? I like those more. |
|
| Back to top |
|
 |
|
|