vForums Support :: vForums :: Report a Bug :: Resolved Bugs :: 'Laugh' & 'Huh?' Smileys - View Topic (Page 2 of 3)
 |  |
| Luke Junior Member
 
![[Avatar]](http://i41.tinypic.com/2vkz4n8.jpg) "It costs nothing to pass on knowledge, but the rewards are massive." - All Seeing Eyes Posts: 96 Status: Offline Gender: Male Location: vForums Joined:
pmwww | Re: 'Laugh' & 'Huh?' Smileys (10th Dec 07 at 1:14am UTC) | | It's you screen resolution, I use IE7 and it looks fine for me... | |
http://vzerohost.com/
|
| BizzD Full Member
  
Posts: 306 Status: Offline Gender: Male Location: Washington Joined:
pm | Re: 'Laugh' & 'Huh?' Smileys (10th Dec 07 at 1:17am UTC) | | Me to lazy to change. | |
| Luke Junior Member
 
![[Avatar]](http://i41.tinypic.com/2vkz4n8.jpg) "It costs nothing to pass on knowledge, but the rewards are massive." - All Seeing Eyes Posts: 96 Status: Offline Gender: Male Location: vForums Joined:
pmwww | Re: 'Laugh' & 'Huh?' Smileys (10th Dec 07 at 1:21am UTC) | | I wouldn't do it I if I were you, I don't get whats the big deal, it's a icon! | |
http://vzerohost.com/
|
| BizzD Full Member
  
Posts: 306 Status: Offline Gender: Male Location: Washington Joined:
pm | Re: 'Laugh' & 'Huh?' Smileys (10th Dec 07 at 1:24am UTC) | | Yea and it just takes a little of the mouth so, i just going to leave it. | |
| Luke Junior Member
 
![[Avatar]](http://i41.tinypic.com/2vkz4n8.jpg) "It costs nothing to pass on knowledge, but the rewards are massive." - All Seeing Eyes Posts: 96 Status: Offline Gender: Male Location: vForums Joined:
pmwww | Re: 'Laugh' & 'Huh?' Smileys (10th Dec 07 at 1:35am UTC) | | Not when you post it... It's this one right? I bet it's in a table... Ask Ross to increase the size of it if u bothers you that much. | |
http://vzerohost.com/
|
| BizzD Full Member
  
Posts: 306 Status: Offline Gender: Male Location: Washington Joined:
pm | Re: 'Laugh' & 'Huh?' Smileys (10th Dec 07 at 1:36am UTC) | | Only in the smileys on the left side of Quick Reply.
Yes thats the one. | |
| Luke Junior Member
 
![[Avatar]](http://i41.tinypic.com/2vkz4n8.jpg) "It costs nothing to pass on knowledge, but the rewards are massive." - All Seeing Eyes Posts: 96 Status: Offline Gender: Male Location: vForums Joined:
pmwww | Re: 'Laugh' & 'Huh?' Smileys (10th Dec 07 at 1:40am UTC) | | I know, you posted a image of it... Just ignore it. It's not that big of a deal... | |
http://vzerohost.com/
|
| miss orif Junior Member
 
Posts: 56 Status: Offline Gender: Female Joined:
pm | Re: 'Laugh' & 'Huh?' Smileys (10th Dec 07 at 5:21pm UTC) | | I know it's not a big deal but it could be and it's sorted anyway. | |
|
| Luke Junior Member
 
![[Avatar]](http://i41.tinypic.com/2vkz4n8.jpg) "It costs nothing to pass on knowledge, but the rewards are massive." - All Seeing Eyes Posts: 96 Status: Offline Gender: Male Location: vForums Joined:
pmwww | | Nick Very Senior Member
    
![[Avatar]](http://uploads.vforums.co.uk/forums/support/f_5e7b1402b305d883af97446b2fedc6c2_1-eog.jpeg) Posts: 3,013 Status: Offline Gender: Male Location: vForums Age: 35 Joined:
pmwww | Re: 'Laugh' & 'Huh?' Smileys (10th Dec 07 at 8:17pm UTC) | | There all smooshed now, they should be spaced evenly. or make it above the QR, like that one code does on PB.
EDIT: just like this code that peter made:
 Code: - <script type="text/javascript">
- <!--
- /*
- Smileys with quick reply - global footers
-
- Created by Peter
-
- This code cannot be reposted at anywhere other than SSDesigns or ProBoards, without permission.
-
- This header must stay intact at all times.
- */
-
- // Base url for the smileys folder
- var sBaseImg = "http://www.4d5.net/v4images/";
-
- // List of smileys - [SMILEY FILE, CODE, TITLE]
- var iSmileys = [
- ["smiley.gif", ":)", "Smiley"],
- ["wink.gif", ";)", "Wink"],
- ["cheesy.gif"," :D","Cheesy"],
- ["grin.gif", ";D", "Grin"],
- ["angry.gif", ">:(", "Angry"],
- ["sad.gif", ":(", "Sad"],
- ["shocked.gif", ":o", "Shocked"],
- ["cool.gif", "8-)", "Cool"],
- ["rolleyes.gif", "::)", "Roll Eyes"],
- ["tongue.gif", ":P", "Tongue"],
- ["embarassed.gif", ":-[", "Embarassed"],
- ["lipsrsealed.gif", ":-X", "Lips Sealed"],
- ["undecided.gif", ":-/", "Undecided"],
- ["kiss.gif", ":-*", "Kiss"],
- ["cry.gif", ":'(", "Cry"]
- ];
-
- var iTable = document.getElementsByTagName("table");
-
- function addSmiley(smiley){
- var isIE = (document.all)? true : false;
- var mArea = document.getElementById("qrform").message;
- if(isIE){
- mArea.focus();
- var iCurSelect = document.selection.createRange();
- iCurSelect.text = smiley + iCurSelect.text
- } else if(!isIE){
- var selStart = mArea.value.substr(0, mArea.selectionStart);
- var selEnd = mArea.value.substr(mArea.selectionEnd, mArea.value.length);
- var curSelection = mArea.value.replace(selStart, '').replace(selEnd, '');
- mArea.value = selStart + smiley + curSelection + selEnd;
- } else {
- mArea.value += smiley;
- }
- mArea.focus();
- }
-
- for(t = 0; t < iTable.length; t ++){
- var iBR = document.createElement("br");
- if(iTable.item(t).cellPadding == "4" && iTable.item(t).cellSpacing == "1" && iTable.item(t).rows.item(0).innerHTML.match(/>Quick Reply</)){
- var iMCell = iTable.item(t).rows.item(1).cells.item(0);
- iTable.item(t).getElementsByTagName("form").item(0).id = "qrform";
- iMCell.insertBefore(iBR, iMCell.firstChild);
- iSmileys.reverse();
- for(s = 0; s < iSmileys.length; s ++){
- var sLink = document.createElement("a");
- var sImg = document.createElement("img");
-
- sImg.border = "0";
- sImg.src = sBaseImg + iSmileys[s][0];
- sImg.title = iSmileys[s][2];
- sLink.href = "javascript: addSmiley(\" " + iSmileys[s][1] + "\")";
- sLink.appendChild(sImg);
-
- iMCell.insertBefore(sLink, iMCell.firstChild);
- iMCell.insertBefore(document.createTextNode(" "), iMCell.firstChild);
- }
- }
- }
-
- //-->
- </script>
| |
| Marc vChat Developer
     I <3 Rossy
Posts: 3,388 Status: Offline Gender: Male Location: Ontario, Canada Age: 33 Joined:
Additional Groups: Coding Team
  
pmwww | Re: 'Laugh' & 'Huh?' Smileys (10th Dec 07 at 8:18pm UTC) | | There all smooshed now, they should be spaced evenly. or make it above the QR, like that one code does on PB.
Not spaced evenly, just centered. | |
rroll.to— Shorten a link, rickroll your friends. |
| Luke Junior Member
 
![[Avatar]](http://i41.tinypic.com/2vkz4n8.jpg) "It costs nothing to pass on knowledge, but the rewards are massive." - All Seeing Eyes Posts: 96 Status: Offline Gender: Male Location: vForums Joined:
pmwww | Re: 'Laugh' & 'Huh?' Smileys (10th Dec 07 at 8:20pm UTC) | | It looks fine for me... They can be centered... (Easy add-on Ross...) | |
http://vzerohost.com/
|
| Jason Moderator
    
![[Avatar]](http://a.random-image.net/frufru/randimage.jpg) www.random-image.net Posts: 223 Status: Offline Gender: Male Location: University of Waterloo, Canada Age: 36 Joined:
Additional Groups: Spell Checker
 
pmwww | Re: 'Laugh' & 'Huh?' Smileys (10th Dec 07 at 8:24pm UTC) | | There all smooshed now, they should be spaced evenly. or make it above the QR, like that one code does on PB. EDIT: just like this code that peter made:  Code: - <script type="text/javascript">
- <!--
- /*
- Smileys with quick reply - global footers
-
- Created by Peter
-
- This code cannot be reposted at anywhere other than SSDesigns or ProBoards, without permission.
-
- This header must stay intact at all times.
- */
-
- // Base url for the smileys folder
- var sBaseImg = "http://www.4d5.net/v4images/";
-
- // List of smileys - [SMILEY FILE, CODE, TITLE]
- var iSmileys = [
- ["smiley.gif", ":)", "Smiley"],
- ["wink.gif", ";)", "Wink"],
- ["cheesy.gif"," :D","Cheesy"],
- ["grin.gif", ";D", "Grin"],
- ["angry.gif", ">:(", "Angry"],
- ["sad.gif", ":(", "Sad"],
- ["shocked.gif", ":o", "Shocked"],
- ["cool.gif", "8-)", "Cool"],
- ["rolleyes.gif", "::)", "Roll Eyes"],
- ["tongue.gif", ":P", "Tongue"],
- ["embarassed.gif", ":-[", "Embarassed"],
- ["lipsrsealed.gif", ":-X", "Lips Sealed"],
- ["undecided.gif", ":-/", "Undecided"],
- ["kiss.gif", ":-*", "Kiss"],
- ["cry.gif", ":'(", "Cry"]
- ];
-
- var iTable = document.getElementsByTagName("table");
-
- function addSmiley(smiley){
- var isIE = (document.all)? true : false;
- var mArea = document.getElementById("qrform").message;
- if(isIE){
- mArea.focus();
- var iCurSelect = document.selection.createRange();
- iCurSelect.text = smiley + iCurSelect.text
- } else if(!isIE){
- var selStart = mArea.value.substr(0, mArea.selectionStart);
- var selEnd = mArea.value.substr(mArea.selectionEnd, mArea.value.length);
- var curSelection = mArea.value.replace(selStart, '').replace(selEnd, '');
- mArea.value = selStart + smiley + curSelection + selEnd;
- } else {
- mArea.value += smiley;
- }
- mArea.focus();
- }
-
- for(t = 0; t < iTable.length; t ++){
- var iBR = document.createElement("br");
- if(iTable.item(t).cellPadding == "4" && iTable.item(t).cellSpacing == "1" && iTable.item(t).rows.item(0).innerHTML.match(/>Quick Reply</)){
- var iMCell = iTable.item(t).rows.item(1).cells.item(0);
- iTable.item(t).getElementsByTagName("form").item(0).id = "qrform";
- iMCell.insertBefore(iBR, iMCell.firstChild);
- iSmileys.reverse();
- for(s = 0; s < iSmileys.length; s ++){
- var sLink = document.createElement("a");
- var sImg = document.createElement("img");
-
- sImg.border = "0";
- sImg.src = sBaseImg + iSmileys[s][0];
- sImg.title = iSmileys[s][2];
- sLink.href = "javascript: addSmiley(" " + iSmileys[s][1] + "")";
- sLink.appendChild(sImg);
-
- iMCell.insertBefore(sLink, iMCell.firstChild);
- iMCell.insertBefore(document.createTextNode(" "), iMCell.firstChild);
- }
- }
- }
-
- //-->
- </script>
well... it looks like smileys still parse in the code tags | |
Image Randomizers - official vForums partner
 ^ Live stats ^ |
| Nick Very Senior Member
    
![[Avatar]](http://uploads.vforums.co.uk/forums/support/f_5e7b1402b305d883af97446b2fedc6c2_1-eog.jpeg) Posts: 3,013 Status: Offline Gender: Male Location: vForums Age: 35 Joined:
pmwww | Re: 'Laugh' & 'Huh?' Smileys (10th Dec 07 at 8:25pm UTC) | | they needs to be fixed to. I discovered a BUG ^_^ (Unless it was already known.) | |
| Luke Junior Member
 
![[Avatar]](http://i41.tinypic.com/2vkz4n8.jpg) "It costs nothing to pass on knowledge, but the rewards are massive." - All Seeing Eyes Posts: 96 Status: Offline Gender: Male Location: vForums Joined:
pmwww | Re: 'Laugh' & 'Huh?' Smileys (10th Dec 07 at 8:27pm UTC) | | Easy way to fix that is just... Uhhh self explanitory...
 Code: - <script type="text/javascript">
- <!--
- /*
- Smileys with quick reply - global footers
-
- Created by Peter
-
- This code cannot be reposted at anywhere other than SSDesigns or ProBoards, without permission.
-
- This header must stay intact at all times.
- */
-
- // Base url for the smileys folder
- var sBaseImg = "http://www.4d5.net/v4images/";
-
- // List of smileys - [SMILEY FILE, CODE, TITLE]
- var iSmileys = [ ["smiley.gif", ":)", "Smiley"],
- ["wink.gif", ";)", "Wink"],
- ["cheesy.gif"," ","Cheesy"],
- ["grin.gif", ";D", "Grin"],
- ["angry.gif", ">:(", "Angry"],
- ["sad.gif", ":(", "Sad"],
- ["shocked.gif", ":o", "Shocked"],
- ["cool.gif", "8-)", "Cool"],
- ["rolleyes.gif", "::)", "Roll Eyes"],
- ["tongue.gif", " ", "Tongue"],
- ["embarassed.gif", ":-[", "Embarassed"],
- ["lipsrsealed.gif", " ", "Lips Sealed"],
- ["undecided.gif", " ", "Undecided"],
- ["kiss.gif", " ", "Kiss"],
- ["cry.gif", ":'(", "Cry"]
- ];
-
- var iTable = document.getElementsByTagName("table");
-
- function addSmiley(smiley){
- var isIE = (document.all)? true : false;
- var mArea = document.getElementById("qrform").message;
- if(isIE){
- mArea.focus();
- var iCurSelect = document.selection.createRange();
- iCurSelect.text = smiley + iCurSelect.text
- } else if(!isIE){
- var selStart = mArea.value.substr(0, mArea.selectionStart);
- var selEnd = mArea.value.substr(mArea.selectionEnd, mArea.value.length);
- var curSelection = mArea.value.replace(selStart, '').replace(selEnd, '');
- mArea.value = selStart + smiley + curSelection + selEnd;
- } else {
- mArea.value += smiley;
- }
- mArea.focus();
- }
-
- for(t = 0; t < iTable.length; t ++){
- var iBR = document.createElement("br");
- if(iTable.item(t).cellPadding == "4" && iTable.item(t).cellSpacing == "1" && iTable.item(t).rows.item(0).innerHTML.match(/>Quick Reply</)){
- var iMCell = iTable.item(t).rows.item(1).cells.item(0);
- iTable.item(t).getElementsByTagName("form").item(0).id = "qrform";
- iMCell.insertBefore(iBR, iMCell.firstChild);
- iSmileys.reverse();
- for(s = 0; s < iSmileys.length; s ++){
- var sLink = document.createElement("a");
- var sImg = document.createElement("img");
-
- sImg.border = "0";
- sImg.src = sBaseImg + iSmileys[s][0];
- sImg.title = iSmileys[s][2];
- sLink.href = "javascript: addSmiley(" " + iSmileys[s][1] + "")";
- sLink.appendChild(sImg);
-
- iMCell.insertBefore(sLink, iMCell.firstChild);
- iMCell.insertBefore(document.createTextNode(" "), iMCell.firstChild);
- }
- }
- }
-
- //-->
- </script>
| |
http://vzerohost.com/
|
| |
 |  |
|