Probleme avec les MP
2 participants
Page 1 sur 1
Probleme avec les MP
Désolé si c'est pas au bon endroit, mais je n'arrive plus a ouvrir ma boite a message...
J'ai a la place une page blanche avec des lignes de codes chelou (oui je suis une buse en informatique)
C'est normal? (et je peux p^lus mettre de smiley )
J'ai a la place une page blanche avec des lignes de codes chelou (oui je suis une buse en informatique)
C'est normal? (et je peux p^lus mettre de smiley )
groumph- Maître des éléments - Level 20 -
- Messages : 40
Date d'inscription : 01/12/2008
Age : 44
Localisation : Strasbourg
Re: Probleme avec les MP
Je viens d'essayer maintenant et je n'ai pas de souci avec les PMs.
Peux-tu copier-coller ces lignes de codes si le problème n'est pas résolu, s'il te plait ?
Peux-tu copier-coller ces lignes de codes si le problème n'est pas résolu, s'il te plait ?
Rossignol- Dominateur de Royaume - Level 100 -
- Messages : 147
Date d'inscription : 23/11/2008
Localisation : Cork, Ireland
Re: Probleme avec les MP
// ChatBox function
function Init_pref()
{
if (document.getElementById('divbold'))
{
if ( my_getcookie('CB_bold') == 1)
{
pref = my_getcookie('CB_bold');
document.post.sbold.value = pref;
document.getElementById('divbold').className = 'fontbutton fontbutton_selected';
document.post.message.style.fontWeight = 'bold';
}
if ( my_getcookie('CB_italic') == 1 )
{
pref = my_getcookie('CB_italic');
document.post.sitalic.value = pref;
document.getElementById('divitalic').className = (pref == '1' ) ? 'fontbutton fontbutton_selected' : 'fontbutton fontbutton_normal';
document.post.message.style.fontStyle = 'italic';
}
if ( my_getcookie('CB_under') == 1 )
{
pref = my_getcookie('CB_under');
document.post.sunderline.value = pref;
document.getElementById('divunderline').className = (pref == '1' ) ? 'fontbutton fontbutton_selected' : 'fontbutton fontbutton_normal';
document.post.message.style.textDecoration = 'underline';
}
if ( my_getcookie('CB_strike') == 1 )
{
pref = my_getcookie('CB_strike');
document.post.sstrike.value = pref;
document.getElementById('divstrike').className = (pref == '1' ) ? 'fontbutton fontbutton_selected' : 'fontbutton fontbutton_normal';
document.post.message.style.textDecoration = document.post.message.style.textDecoration + ' line-through';
}
if ( pref = my_getcookie('CB_color') )
{
document.getElementById('show_color').style.backgroundColor = '#' + pref;
document.post.scolor.value = pref;
document.post.message.style.color = '#' + pref;
}
else
{
document.getElementById('show_color').style.background = template_color;
}
}
}
function submitmsg(params)
{
document.post.sent.value = document.post.message.value;
document.post.message.value = '';
document.post.message.focus();
ajax_submit_chatbox(params);
return false;
}
function do_style(dostyle)
{
switch (dostyle)
{
case 'bold' :
{
document.getElementById('divbold').style.fontWeight = ( document.post.sbold.value == '0' ) ? 'bold' : '';
document.post.message.style.fontWeight = document.getElementById('divbold').style.fontWeight;
document.post.sbold.value = ( document.post.sbold.value == '0' ) ? '1' : '0';
SetCookie('CB_bold',document.post.sbold.value);
break;
}
case 'italic' :
{
document.getElementById('divitalic').style.fontStyle = ( document.post.sitalic.value == '0' ) ? 'italic' : '';
document.post.message.style.fontStyle = document.getElementById('divitalic').style.fontStyle;
document.post.sitalic.value = ( document.post.sitalic.value == '0' ) ? '1' : '0';
SetCookie('CB_italic',document.post.sitalic.value);
break;
}
case 'underline' :
{
document.getElementById('divunderline').style.textDecoration = ( document.post.sunderline.value == '0' ) ? document.post.message.style.textDecoration + ' underline' : document.post.message.style.textDecoration.replace('underline', '');
document.post.message.style.textDecoration = document.getElementById('divunderline').style.textDecoration;
document.post.sunderline.value = ( document.post.sunderline.value == '0' ) ? '1' : '0';
SetCookie('CB_under',document.post.sunderline.value);
break;
}
case 'strike' :
{
document.getElementById('divstrike').style.textDecoration = ( document.post.sstrike.value == '0' ) ? document.post.message.style.textDecoration + ' line-through' : document.post.message.style.textDecoration.replace('line-through', '');
document.post.message.style.textDecoration = document.getElementById('divstrike').style.textDecoration;
document.post.sstrike.value = ( document.post.sstrike.value == '0' ) ? '1' : '0';
SetCookie('CB_strike',document.post.sstrike.value);
break;
}
}
}
function fetch_object(obj)
{
return document.getElementById(obj);
}
function do_selectcolor(event)
{
var scrX = (event.screenX - 270);
var scrY = (event.screenY - 270);
window.open('/chatbox/chatbox_selectcolor.htm', 'color','toolbar=no,menubar=no,personalbar=no,width=250,height=200,scrollbars=no,resizable=yes,left=' + scrX + ',top=' + scrY);
}
function do_selectsmilies(event)
{
var scrX = (event.screenX - 270);
var scrY = (event.screenY - 380);
if ( window.open )
{
window.open('/post.forum?mode=smilies_chatbox' + smilies_sid, 'chatbox_smilies','toolbar=no,menubar=no,personalbar=no,width=350,height=300,scrollbars=yes,resizable=yes,left=' + scrX + ',top=' + scrY);
}
else
{
// open('/post.forum?mode=smilies_chatbox' + smilies_sid, 'chatbox_smilies','toolbar=no,menubar=no,personalbar=no,width=350,height=300,scrollbars=yes,resizable=yes,left=' + scrX + ',top=' + scrY);
}
}
function SetCookie (name, value) {
var expire = '';
var path = "/";
var domain = '';
document
function Init_pref()
{
if (document.getElementById('divbold'))
{
if ( my_getcookie('CB_bold') == 1)
{
pref = my_getcookie('CB_bold');
document.post.sbold.value = pref;
document.getElementById('divbold').className = 'fontbutton fontbutton_selected';
document.post.message.style.fontWeight = 'bold';
}
if ( my_getcookie('CB_italic') == 1 )
{
pref = my_getcookie('CB_italic');
document.post.sitalic.value = pref;
document.getElementById('divitalic').className = (pref == '1' ) ? 'fontbutton fontbutton_selected' : 'fontbutton fontbutton_normal';
document.post.message.style.fontStyle = 'italic';
}
if ( my_getcookie('CB_under') == 1 )
{
pref = my_getcookie('CB_under');
document.post.sunderline.value = pref;
document.getElementById('divunderline').className = (pref == '1' ) ? 'fontbutton fontbutton_selected' : 'fontbutton fontbutton_normal';
document.post.message.style.textDecoration = 'underline';
}
if ( my_getcookie('CB_strike') == 1 )
{
pref = my_getcookie('CB_strike');
document.post.sstrike.value = pref;
document.getElementById('divstrike').className = (pref == '1' ) ? 'fontbutton fontbutton_selected' : 'fontbutton fontbutton_normal';
document.post.message.style.textDecoration = document.post.message.style.textDecoration + ' line-through';
}
if ( pref = my_getcookie('CB_color') )
{
document.getElementById('show_color').style.backgroundColor = '#' + pref;
document.post.scolor.value = pref;
document.post.message.style.color = '#' + pref;
}
else
{
document.getElementById('show_color').style.background = template_color;
}
}
}
function submitmsg(params)
{
document.post.sent.value = document.post.message.value;
document.post.message.value = '';
document.post.message.focus();
ajax_submit_chatbox(params);
return false;
}
function do_style(dostyle)
{
switch (dostyle)
{
case 'bold' :
{
document.getElementById('divbold').style.fontWeight = ( document.post.sbold.value == '0' ) ? 'bold' : '';
document.post.message.style.fontWeight = document.getElementById('divbold').style.fontWeight;
document.post.sbold.value = ( document.post.sbold.value == '0' ) ? '1' : '0';
SetCookie('CB_bold',document.post.sbold.value);
break;
}
case 'italic' :
{
document.getElementById('divitalic').style.fontStyle = ( document.post.sitalic.value == '0' ) ? 'italic' : '';
document.post.message.style.fontStyle = document.getElementById('divitalic').style.fontStyle;
document.post.sitalic.value = ( document.post.sitalic.value == '0' ) ? '1' : '0';
SetCookie('CB_italic',document.post.sitalic.value);
break;
}
case 'underline' :
{
document.getElementById('divunderline').style.textDecoration = ( document.post.sunderline.value == '0' ) ? document.post.message.style.textDecoration + ' underline' : document.post.message.style.textDecoration.replace('underline', '');
document.post.message.style.textDecoration = document.getElementById('divunderline').style.textDecoration;
document.post.sunderline.value = ( document.post.sunderline.value == '0' ) ? '1' : '0';
SetCookie('CB_under',document.post.sunderline.value);
break;
}
case 'strike' :
{
document.getElementById('divstrike').style.textDecoration = ( document.post.sstrike.value == '0' ) ? document.post.message.style.textDecoration + ' line-through' : document.post.message.style.textDecoration.replace('line-through', '');
document.post.message.style.textDecoration = document.getElementById('divstrike').style.textDecoration;
document.post.sstrike.value = ( document.post.sstrike.value == '0' ) ? '1' : '0';
SetCookie('CB_strike',document.post.sstrike.value);
break;
}
}
}
function fetch_object(obj)
{
return document.getElementById(obj);
}
function do_selectcolor(event)
{
var scrX = (event.screenX - 270);
var scrY = (event.screenY - 270);
window.open('/chatbox/chatbox_selectcolor.htm', 'color','toolbar=no,menubar=no,personalbar=no,width=250,height=200,scrollbars=no,resizable=yes,left=' + scrX + ',top=' + scrY);
}
function do_selectsmilies(event)
{
var scrX = (event.screenX - 270);
var scrY = (event.screenY - 380);
if ( window.open )
{
window.open('/post.forum?mode=smilies_chatbox' + smilies_sid, 'chatbox_smilies','toolbar=no,menubar=no,personalbar=no,width=350,height=300,scrollbars=yes,resizable=yes,left=' + scrX + ',top=' + scrY);
}
else
{
// open('/post.forum?mode=smilies_chatbox' + smilies_sid, 'chatbox_smilies','toolbar=no,menubar=no,personalbar=no,width=350,height=300,scrollbars=yes,resizable=yes,left=' + scrX + ',top=' + scrY);
}
}
function SetCookie (name, value) {
var expire = '';
var path = "/";
var domain = '';
document
groumph- Maître des éléments - Level 20 -
- Messages : 40
Date d'inscription : 01/12/2008
Age : 44
Localisation : Strasbourg
Re: Probleme avec les MP
Ayé ça remarche, avez vous fait quelque chose?
Si les modos veulent effacer ce post qu'ils ne se gêne pas!
Merci!
Si les modos veulent effacer ce post qu'ils ne se gêne pas!
Merci!
groumph- Maître des éléments - Level 20 -
- Messages : 40
Date d'inscription : 01/12/2008
Age : 44
Localisation : Strasbourg
Sujets similaires
» Troll2jeux s'engage avec Wowmini France
» A la recherche du premier probleme
» Problème : figurine manquante dans booster
» Liste Hisoka ( MAJ avec les figs SoW )
» La team a suivre avec spoil of war
» A la recherche du premier probleme
» Problème : figurine manquante dans booster
» Liste Hisoka ( MAJ avec les figs SoW )
» La team a suivre avec spoil of war
Page 1 sur 1
Permission de ce forum:
Vous ne pouvez pas répondre aux sujets dans ce forum