vForums Support Banner



 

Welcome Guest! Please Login or Register
vForums Support :: vForums :: Report a Bug :: Resolved Bugs :: 'Laugh' & 'Huh?' Smileys - View Topic (Page 2 of 3)Page: 1 2 3
Topic Rating: *****
Printable View
Luke
Junior Member
**

[Avatar]
"It costs nothing to pass on knowledge, but the rewards are massive." - All Seeing Eyes

Posts: 96
Status: Offline
Gender: Male
Location: vForums
Joined:  
Reputation: 0%  


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:  
Reputation: 0%  


pm
Re: 'Laugh' & 'Huh?' Smileys (10th Dec 07 at 1:17am UTC)
Me to lazy to change.
Luke
Junior Member
**

[Avatar]
"It costs nothing to pass on knowledge, but the rewards are massive." - All Seeing Eyes

Posts: 96
Status: Offline
Gender: Male
Location: vForums
Joined:  
Reputation: 0%  


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! {Tongue Out}

http://vzerohost.com/


BizzD
Full Member
***

Posts: 306
Status: Offline
Gender: Male
Location: Washington
Joined:  
Reputation: 0%  


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]
"It costs nothing to pass on knowledge, but the rewards are massive." - All Seeing Eyes

Posts: 96
Status: Offline
Gender: Male
Location: vForums
Joined:  
Reputation: 0%  


pmwww
Re: 'Laugh' & 'Huh?' Smileys (10th Dec 07 at 1:35am UTC)
Not when you post it... It's this one right? {Cheesy}
I bet it's in a table... Ask Ross to increase the size of it if u bothers you that much. {Rolleyes}

http://vzerohost.com/


BizzD
Full Member
***

Posts: 306
Status: Offline
Gender: Male
Location: Washington
Joined:  
Reputation: 0%  


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. {Cheesy}
Luke
Junior Member
**

[Avatar]
"It costs nothing to pass on knowledge, but the rewards are massive." - All Seeing Eyes

Posts: 96
Status: Offline
Gender: Male
Location: vForums
Joined:  
Reputation: 0%  


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... {Cheesy}

http://vzerohost.com/


miss orif
Junior Member
**

Posts: 56
Status: Offline
Gender: Female
Joined:  
Reputation: 0%  


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. {Grin}

Luke
Junior Member
**

[Avatar]
"It costs nothing to pass on knowledge, but the rewards are massive." - All Seeing Eyes

Posts: 96
Status: Offline
Gender: Male
Location: vForums
Joined:  
Reputation: 0%  


pmwww
Re: 'Laugh' & 'Huh?' Smileys (10th Dec 07 at 8:15pm UTC)
I wonder who fixed it... {Rolleyes}

http://vzerohost.com/


Nick
Very Senior Member
*****

[Avatar]

Posts: 3,013
Status: Offline
Gender: Male
Location: vForums
Age: 35
Joined:  
Reputation: 62%  


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:
 
  1. <script type="text/javascript">
  2. <!--
  3. /*
  4. Smileys with quick reply - global footers
  5.  
  6. Created by Peter
  7.  
  8. This code cannot be reposted at anywhere other than SSDesigns or ProBoards, without permission.
  9.  
  10. This header must stay intact at all times.
  11. */
  12.  
  13. // Base url for the smileys folder
  14. var sBaseImg = "http://www.4d5.net/v4images/";
  15.  
  16. // List of smileys - [SMILEY FILE, CODE, TITLE]
  17. var iSmileys = [
  18.     ["smiley.gif", ":)", "Smiley"],
  19.     ["wink.gif", ";)", "Wink"],
  20.     ["cheesy.gif"," :D","Cheesy"],  
  21.     ["grin.gif", ";D", "Grin"],
  22.     ["angry.gif", ">:(", "Angry"],
  23.     ["sad.gif", ":(", "Sad"],
  24.     ["shocked.gif", ":o", "Shocked"],
  25.     ["cool.gif", "8-)", "Cool"],
  26.     ["rolleyes.gif", "::)", "Roll Eyes"],
  27.     ["tongue.gif", ":P", "Tongue"],
  28.     ["embarassed.gif", ":-[", "Embarassed"],
  29.     ["lipsrsealed.gif", ":-X", "Lips Sealed"],
  30.     ["undecided.gif", ":-/", "Undecided"],
  31.     ["kiss.gif", ":-*", "Kiss"],
  32.     ["cry.gif", ":'(", "Cry"]
  33. ];
  34.  
  35. var iTable = document.getElementsByTagName("table");
  36.  
  37. function addSmiley(smiley){
  38.     var isIE = (document.all)? true : false;
  39.     var mArea = document.getElementById("qrform").message;
  40.     if(isIE){
  41.        mArea.focus();
  42.        var iCurSelect = document.selection.createRange();
  43.        iCurSelect.text = smiley + iCurSelect.text
  44.     } else if(!isIE){
  45.        var selStart = mArea.value.substr(0, mArea.selectionStart);
  46.        var selEnd = mArea.value.substr(mArea.selectionEnd, mArea.value.length);
  47.        var curSelection = mArea.value.replace(selStart, '').replace(selEnd, '');
  48.        mArea.value = selStart + smiley + curSelection + selEnd;
  49.     } else {
  50.        mArea.value += smiley;
  51.     }
  52.     mArea.focus();
  53. }
  54.  
  55. for(t = 0; t < iTable.length; t ++){
  56.     var iBR = document.createElement("br");
  57.     if(iTable.item(t).cellPadding == "4" && iTable.item(t).cellSpacing == "1" && iTable.item(t).rows.item(0).innerHTML.match(/>Quick Reply</)){
  58.        var iMCell = iTable.item(t).rows.item(1).cells.item(0);
  59.        iTable.item(t).getElementsByTagName("form").item(0).id = "qrform";
  60.        iMCell.insertBefore(iBR, iMCell.firstChild);
  61.        iSmileys.reverse();
  62.        for(s = 0; s < iSmileys.length; s ++){
  63.           var sLink = document.createElement("a");
  64.           var sImg = document.createElement("img");
  65.  
  66.           sImg.border = "0";
  67.           sImg.src = sBaseImg + iSmileys[s][0];
  68.           sImg.title = iSmileys[s][2];
  69.           sLink.href = "javascript: addSmiley(\" " + iSmileys[s][1] + "\")";
  70.           sLink.appendChild(sImg);
  71.  
  72.           iMCell.insertBefore(sLink, iMCell.firstChild);
  73.           iMCell.insertBefore(document.createTextNode(" "), iMCell.firstChild);
  74.        }
  75.     }
  76. }
  77.  
  78. //-->
  79. </script>
 

Marc
vChat Developer
*****
I <3 Rossy

Posts: 3,388
Status: Offline
Gender: Male
Location: Ontario, Canada
Age: 33
Joined:  

Additional Groups:
Coding Team
***


Reputation: 40%  


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. {Smile}

rroll.to— Shorten a link, rickroll your friends.
Luke
Junior Member
**

[Avatar]
"It costs nothing to pass on knowledge, but the rewards are massive." - All Seeing Eyes

Posts: 96
Status: Offline
Gender: Male
Location: vForums
Joined:  
Reputation: 0%  


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]
www.random-image.net

Posts: 223
Status: Offline
Gender: Male
Location: University of Waterloo, Canada
Age: 36
Joined:  

Additional Groups:
Spell Checker
**


Reputation: 22%  


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:
 
  1. <script type="text/javascript">
  2. <!--
  3. /*
  4. Smileys with quick reply - global footers
  5.  
  6. Created by Peter
  7.  
  8. This code cannot be reposted at anywhere other than SSDesigns or ProBoards, without permission.
  9.  
  10. This header must stay intact at all times.
  11. */
  12.  
  13. // Base url for the smileys folder
  14. var sBaseImg = "http://www.4d5.net/v4images/";
  15.  
  16. // List of smileys - [SMILEY FILE, CODE, TITLE]
  17. var iSmileys = [
  18.     ["smiley.gif", ":)", "Smiley"],
  19.     ["wink.gif", ";)", "Wink"],
  20.     ["cheesy.gif"," :D","Cheesy"],  
  21.     ["grin.gif", ";D", "Grin"],
  22.     ["angry.gif", ">:(", "Angry"],
  23.     ["sad.gif", ":(", "Sad"],
  24.     ["shocked.gif", ":o", "Shocked"],
  25.     ["cool.gif", "8-)", "Cool"],
  26.     ["rolleyes.gif", "::)", "Roll Eyes"],
  27.     ["tongue.gif", ":P", "Tongue"],
  28.     ["embarassed.gif", ":-[", "Embarassed"],
  29.     ["lipsrsealed.gif", ":-X", "Lips Sealed"],
  30.     ["undecided.gif", ":-/", "Undecided"],
  31.     ["kiss.gif", ":-*", "Kiss"],
  32.     ["cry.gif", ":'(", "Cry"]
  33. ];
  34.  
  35. var iTable = document.getElementsByTagName("table");
  36.  
  37. function addSmiley(smiley){
  38.     var isIE = (document.all)? true : false;
  39.     var mArea = document.getElementById("qrform").message;
  40.     if(isIE){
  41.        mArea.focus();
  42.        var iCurSelect = document.selection.createRange();
  43.        iCurSelect.text = smiley + iCurSelect.text
  44.     } else if(!isIE){
  45.        var selStart = mArea.value.substr(0, mArea.selectionStart);
  46.        var selEnd = mArea.value.substr(mArea.selectionEnd, mArea.value.length);
  47.        var curSelection = mArea.value.replace(selStart, '').replace(selEnd, '');
  48.        mArea.value = selStart + smiley + curSelection + selEnd;
  49.     } else {
  50.        mArea.value += smiley;
  51.     }
  52.     mArea.focus();
  53. }
  54.  
  55. for(t = 0; t < iTable.length; t ++){
  56.     var iBR = document.createElement("br");
  57.     if(iTable.item(t).cellPadding == "4" && iTable.item(t).cellSpacing == "1" && iTable.item(t).rows.item(0).innerHTML.match(/>Quick Reply</)){
  58.        var iMCell = iTable.item(t).rows.item(1).cells.item(0);
  59.        iTable.item(t).getElementsByTagName("form").item(0).id = "qrform";
  60.        iMCell.insertBefore(iBR, iMCell.firstChild);
  61.        iSmileys.reverse();
  62.        for(s = 0; s < iSmileys.length; s ++){
  63.           var sLink = document.createElement("a");
  64.           var sImg = document.createElement("img");
  65.  
  66.           sImg.border = "0";
  67.           sImg.src = sBaseImg + iSmileys[s][0];
  68.           sImg.title = iSmileys[s][2];
  69.           sLink.href = "javascript: addSmiley(" " + iSmileys[s][1] + "")";
  70.           sLink.appendChild(sImg);
  71.  
  72.           iMCell.insertBefore(sLink, iMCell.firstChild);
  73.           iMCell.insertBefore(document.createTextNode(" "), iMCell.firstChild);
  74.        }
  75.     }
  76. }
  77.  
  78. //-->
  79. </script>
 



well... it looks like smileys still parse in the code tags {Tongue Out}

Image Randomizers - official vForums partner
Image
^ Live stats {Grin} ^
Nick
Very Senior Member
*****

[Avatar]

Posts: 3,013
Status: Offline
Gender: Male
Location: vForums
Age: 35
Joined:  
Reputation: 62%  


pmwww
Re: 'Laugh' & 'Huh?' Smileys (10th Dec 07 at 8:25pm UTC)
{Tongue Out} they needs to be fixed to. I discovered a BUG ^_^ (Unless it was already known.)
Luke
Junior Member
**

[Avatar]
"It costs nothing to pass on knowledge, but the rewards are massive." - All Seeing Eyes

Posts: 96
Status: Offline
Gender: Male
Location: vForums
Joined:  
Reputation: 0%  


pmwww
Re: 'Laugh' & 'Huh?' Smileys (10th Dec 07 at 8:27pm UTC)
Easy way to fix that is just... Uhhh self explanitory...

Code:
 
  1. <script type="text/javascript">
  2. <!--
  3. /*
  4. Smileys with quick reply - global footers
  5.  
  6. Created by Peter
  7.  
  8. This code cannot be reposted at anywhere other than SSDesigns or ProBoards, without permission.
  9.  
  10. This header must stay intact at all times.
  11. */
  12.  
  13. // Base url for the smileys folder
  14. var sBaseImg = "http://www.4d5.net/v4images/";
  15.  
  16. // List of smileys - [SMILEY FILE, CODE, TITLE]
  17. var iSmileys = [     ["smiley.gif", ":)", "Smiley"],
  18.     ["wink.gif", ";)", "Wink"],
  19.     ["cheesy.gif","  ","Cheesy"],  
  20.     ["grin.gif", ";D", "Grin"],
  21.     ["angry.gif", ">:(", "Angry"],
  22.     ["sad.gif", ":(", "Sad"],
  23.     ["shocked.gif", ":o", "Shocked"],
  24.     ["cool.gif", "8-)", "Cool"],
  25.     ["rolleyes.gif", "::)", "Roll Eyes"],
  26.     ["tongue.gif", " ", "Tongue"],
  27.     ["embarassed.gif", ":-[", "Embarassed"],
  28.     ["lipsrsealed.gif", " ", "Lips Sealed"],
  29.     ["undecided.gif", " ", "Undecided"],
  30.     ["kiss.gif", " ", "Kiss"],
  31.     ["cry.gif", ":'(", "Cry"]
  32. ];
  33.  
  34. var iTable = document.getElementsByTagName("table");
  35.  
  36. function addSmiley(smiley){
  37.     var isIE = (document.all)? true : false;
  38.     var mArea = document.getElementById("qrform").message;
  39.     if(isIE){
  40.        mArea.focus();
  41.        var iCurSelect = document.selection.createRange();
  42.        iCurSelect.text = smiley + iCurSelect.text
  43.     } else if(!isIE){
  44.        var selStart = mArea.value.substr(0, mArea.selectionStart);
  45.        var selEnd = mArea.value.substr(mArea.selectionEnd, mArea.value.length);
  46.        var curSelection = mArea.value.replace(selStart, '').replace(selEnd, '');
  47.        mArea.value = selStart + smiley + curSelection + selEnd;
  48.     } else {
  49.        mArea.value += smiley;
  50.     }
  51.     mArea.focus();
  52. }
  53.  
  54. for(t = 0; t < iTable.length; t ++){
  55.     var iBR = document.createElement("br");
  56.     if(iTable.item(t).cellPadding == "4" && iTable.item(t).cellSpacing == "1" && iTable.item(t).rows.item(0).innerHTML.match(/>Quick Reply</)){
  57.        var iMCell = iTable.item(t).rows.item(1).cells.item(0);
  58.        iTable.item(t).getElementsByTagName("form").item(0).id = "qrform";
  59.        iMCell.insertBefore(iBR, iMCell.firstChild);
  60.        iSmileys.reverse();
  61.        for(s = 0; s < iSmileys.length; s ++){
  62.           var sLink = document.createElement("a");
  63.           var sImg = document.createElement("img");
  64.  
  65.           sImg.border = "0";
  66.           sImg.src = sBaseImg + iSmileys[s][0];
  67.           sImg.title = iSmileys[s][2];
  68.           sLink.href = "javascript: addSmiley(" " + iSmileys[s][1] + "")";
  69.           sLink.appendChild(sImg);
  70.  
  71.           iMCell.insertBefore(sLink, iMCell.firstChild);
  72.           iMCell.insertBefore(document.createTextNode(" "), iMCell.firstChild);
  73.        }
  74.     }
  75. }
  76.  
  77. //-->
  78. </script>
 

http://vzerohost.com/


 Printable View
Page: 1 2 3

All times are GMT+0 :: The current time is 8:25pm
Page generated in 1.5067 seconds
This Forum is Powered By vForums (v2.4)
Create a Forum for Free | Find Forums