TBDev Forum
Programming board
Main Page Forum Rules Privacy Policy Members Contact Us
Welcome Guest (Login | Register)
TBDev Forum TBDev.net - Mods & hacks Mods Complete & working Display/Style Mods Bbcods and smilies (my version)
Page 1 2 3 4 5 6 7 8 9 10 11

Bbcods and smilies (my version)

2008-07-08 14:24:00
Group: Member
Posts: 12
Topics participated: 10
Topics started: 0
First post: 2008-06-16 12:23:00
Last post: 2008-10-04 05:42:00
BuMp

The rar. is gone sad.gif
Can someone reupload it?
 
2008-09-04 17:35:00
Group: Member
Posts: 111
Topics participated: 60
Topics started: 7
First post: 2007-03-07 18:12:00
Last post: 2008-12-22 14:11:00
BuMp

The rar. is gone sad.gif
Can someone reupload it?


please :)
 
2008-11-19 08:37:00
Group: Member
Posts: 2
Topics participated: 2
Topics started: 0
First post: 2008-11-19 08:37:00
Last post: 2008-11-29 07:16:00
something is totally wierd.
when i try to press on any button, i always recieve : "Object doesn't support this property or method".
this on line 502
now... this is line 502:


what the hell does he want?
can someone please help me?

thanks ahead
 
2008-11-19 09:02:00
Group: Member
Posts: 100
Topics participated: 43
Topics started: 11
First post: 2006-03-22 20:43:00
Last post: 2008-12-06 09:55:00
something is totally wierd.
when i try to press on any button, i always recieve : "Object doesn't support this property or method".
this on line 502
now... this is line 502:


what the hell does he want?
can someone please help me?

thanks ahead

You must remove space where it says java script, it shall be javascript
 
2008-11-19 00:02:00
Group: Member
Posts: 43
Topics participated: 31
Topics started: 1
First post: 2008-05-08 08:09:00
Last post: 2009-01-01 14:46:00
Nazaret2005... Thank you man. I used your mod... adapted to my needs... Great!
 
2008-12-08 11:17:00
Group: Member
Posts: 185
Topics participated: 112
Topics started: 2
First post: 2007-06-24 13:27:00
Last post: 2008-12-28 05:34:00
if you want tags and smilies to show at the cursor (not just IE but FF too) just change function doInsert to this:

function doInsert(ibTag, ibClsTag, isSingle) {

var isClose = false;
var obj_ta = document.=$form?>.=$text?>;

if ( (myVersion >= 4) && is_ie && is_win) {
if(obj_ta.isTextEdit){
obj_ta.focus();
var sel = document.selection;
var rng = sel.createRange();
rng.colapse;
if((sel.type == "Text" || sel.type == "None") && rng != null){
if(ibClsTag != "" && rng.text.length > 0)
ibTag += rng.text + ibClsTag;
else if(isSingle) isClose = true;
rng.text = ibTag;
}
}
else{
if(isSingle) isClose = true;
obj_ta.value += ibTag;
}
}
else if (obj_ta.selectionStart || obj_ta.selectionStart == '0') {

var startPos = obj_ta.selectionStart;
var endPos = obj_ta.selectionEnd;

if (obj_ta.setSelectionRange && startPos != endPos) {
obj_ta.value = obj_ta.value.substring(0, startPos) + ibTag + obj_ta.value.substring(startPos, endPos) + ibClsTag + obj_ta.value.substring(endPos, obj_ta.value.length)
obj_ta.selectionEnd = endPos + ibTag.length + ibClsTag.length;
}
else {
obj_ta.value = obj_ta.value.substring(0, startPos) + ibTag + obj_ta.value.substring(endPos, obj_ta.value.length);
obj_ta.selectionEnd = startPos + ibTag.length;
if(isSingle) isClose = true;
}
}
else {
if(isSingle) isClose = true;
obj_ta.value += ibTag;
}
obj_ta.focus();
return isClose;
}


it also makes that if you select (highlight) some text and choose tag for example bold you will have this tag around this text
 

Similar threads

Topic Posts Last post
CHMOD do i have to do this on this version. 6 2006-06-18 22:57:00
Best tbdev version 2 2008-07-24 14:29:00
Which PHP/MySQL version do you use? 16 2007-08-17 18:36:00
What mysql version are you running? 15 2006-06-16 21:37:00
How and Where can I obtain this version of torrentstrike? 2 2008-04-10 18:41:00