| Author |
Topic Search Topic Options
|
pistolio
Newbie
Joined: 02 February 2008
Status: Offline
Points: 7
|
Post Options
Thanks(0)
Quote Reply
Topic: Emoticon Pop-up window Posted: 10 November 2008 at 1:51pm |
Hi all,
I added a lot of emoticon to the one already there. But the problem I have is that the pop up windows for emoticon doesnt have a scroll bar or something like that to be able to see the entire list. When posting from the Quick Reply, this window can be resized, but not when posting from the "post reply" button.
Anyone have input on this?
Thanks!!
|
 |
123Simples
Senior Member
Joined: 08 July 2007
Location: United Kingdom
Status: Offline
Points: 1192
|
Post Options
Thanks(0)
Quote Reply
Posted: 10 November 2008 at 2:08pm |
Hiya You can find the full details on what you need to do here - its reasonably straight-forward but if you get stuck give us a shout
|
|
|
 |
pistolio
Newbie
Joined: 02 February 2008
Status: Offline
Points: 7
|
Post Options
Thanks(0)
Quote Reply
Posted: 10 November 2008 at 2:20pm |
Ok, thanks a lot!!!
I will let you know how it went :)
|
 |
123Simples
Senior Member
Joined: 08 July 2007
Location: United Kingdom
Status: Offline
Points: 1192
|
Post Options
Thanks(0)
Quote Reply
Posted: 10 November 2008 at 2:30pm |
Ok - it is pretty easy (well more or less)
|
|
|
 |
pistolio
Newbie
Joined: 02 February 2008
Status: Offline
Points: 7
|
Post Options
Thanks(0)
Quote Reply
Posted: 13 November 2008 at 4:30pm |
|
Splendid! Work fine :) Thanks again!
|
 |
123Simples
Senior Member
Joined: 08 July 2007
Location: United Kingdom
Status: Offline
Points: 1192
|
Post Options
Thanks(0)
Quote Reply
Posted: 13 November 2008 at 4:39pm |
Glad its okay
|
|
|
 |
acechan
Newbie
Joined: 30 August 2003
Location: Switzerland
Status: Offline
Points: 15
|
Post Options
Thanks(0)
Quote Reply
Posted: 19 February 2011 at 6:33pm |
|
Hey.
Got exactly the same problem, on a 8.05a version... I already changed in "message_form_inc.asp" for the "plus..." link, but I still have the problem on the popup window that appears when you click on the smiley icon (couldn't find where the code is for that one).
The link provided here doesn't work anymore, that's why I'm asking again.
|
 |
123Simples
Senior Member
Joined: 08 July 2007
Location: United Kingdom
Status: Offline
Points: 1192
|
Post Options
Thanks(0)
Quote Reply
Posted: 19 February 2011 at 6:57pm |
Have you got your smileys added in? If so, go to: Go to your forum/includes/message_form_inc.asp file and lines 387 to 391 inclusive says:
If RTEenabled() <> "false" AND blnRTEEditor AND blnWYSIWYGEditor Then Response.Write(vbCrLf & " <tr><td colspan=""3"" align=""center""><a href=""javascript:winOpener('RTE_popup_emoticons.asp" & strQsSID1 & "','emot',0,0,650,340)"" class=""smLink"" tabindex=""100"">" & strTxtMore & "</a></td></tr>") Else Response.Write(vbCrLf & " <tr><td colspan=""3"" align=""center""><a href=""javascript:winOpener('non_RTE_popup_emoticons.asp" & strQsSID1 & "','emot',0,0,650,340)"" class=""smLink"" tabindex=""100"">" & strTxtMore & "</a></td></tr>") End If |
Replace that with:
If RTEenabled() <> "false" AND blnRTEEditor AND blnWYSIWYGEditor Then Response.Write(vbCrLf & " <tr><td colspan=""3"" align=""center""><a href=""javascript:winOpener('RTE_popup_emoticons.asp" & strQsSID1 & "','emot',1,0,650,340)"" class=""smLink"" tabindex=""100"">" & strTxtMore & "</a></td></tr>") Else Response.Write(vbCrLf & " <tr><td colspan=""3"" align=""center""><a href=""javascript:winOpener('non_RTE_popup_emoticons.asp" & strQsSID1 & "','emot',1,0,650,340)"" class=""smLink"" tabindex=""100"">" & strTxtMore & "</a></td></tr>") End If |
Changing the 0 on both lines to 1
|
|
|
 |