22 พฤษภาคม 2555, 17:25:22
ยินดีต้อนรับผู้เยี่ยมชม
  • noavata
  • ยินดีต้อนรับคุณ, ผู้เยี่ยมชม กรุณา เข้าสู่ระบบ หรือ ลงทะเบียน
    เข้าสู่ระบบด้วยชื่อผู้ใช้ รหัสผ่าน และระยะเวลาในเซสชั่น
Page Rank

ทำเว็บไซต์ | แต่งบอร์ด | ออกแบบ | SMF | Joomla | Drupal | WordPress | JQuery | CMS | ECommerce | Tel. +668-08577477

ส่งหัวข้อนี้พิมพ์ หน้า: 1 
icon message ผู้เขียน หัวข้อ: ติดตั้ง+ปรับแต่ง WYSIWYG TextEditor for smf 1.1.4++  (อ่าน 1928 ครั้ง)
0 สมาชิก และ 1 ผู้เยี่ยมชม กำลังดูหัวข้อนี้
*
*


!NeverDie

United States Minor Outlying Islands   หญิง ผู้เริ่มต้นกระทู้นี้ ออฟไลน์ เว็บไซต์
icon message
general เมื่อ: 31 มกราคม 2553, 18:18:26
  • ชื่อ: Crazy QuickReply
  • ผู้เขียน: Crazy™
  • นำเสนอโดย: DexMoreGroup
  • ประเภท: Feature Enhancement
  • รองรับ: SMF 1.1.xx
  • ปรับปรุงล่าสุด: 18 มิถุนายน 2553

รายละเอียด
      ขั้นตอนแรกเรามาปรับแต่งหน้าของ QuickReply (ช่องตอบด่วน) ให้มีขนาดกระทัดรัดเพื่อที่จะได้นำ TextEditor มาติดตั้งแล้วดูกลมกลืนกับส่วนต่างๆ

ตัวอย่าง


แก้ไขไฟล์:

file Display.template.php

ค้นหา -->>
โค๊ด: [Select]
if ($context['can_reply'] && !empty($options['display_quick_reply']))
{
echo '
<a name="quickreply"></a>
<table border="0" cellspacing="1" cellpadding="3" class="bordercolor" width="100%" style="clear: both;">
<tr>
<td colspan="2" class="catbg"><a href="javascript:swapQuickReply();"><img src="', $settings['images_url'], '/', $options['display_quick_reply'] == 2 ? 'collapse' : 'expand', '.gif" alt="+" id="quickReplyExpand" /></a> <a href="javascript:swapQuickReply();">', $txt['quick_reply_1'], '</a></td>
</tr>
<tr id="quickReplyOptions"', $options['display_quick_reply'] == 2 ? '' : ' style="display: none"', '>
<td class="windowbg" width="25%" valign="top">', $txt['quick_reply_2'], $context['is_locked'] ? '<br /><br /><b>' . $txt['quick_reply_warning'] . '</b>' : '', '</td>
<td class="windowbg" width="75%" align="center">
<form action="', $scripturl, '?action=post2" method="post" accept-charset="', $context['character_set'], '" name="postmodify" id="postmodify" onsubmit="submitonce(this);" style="margin: 0;">
<input type="hidden" name="topic" value="' . $context['current_topic'] . '" />
<input type="hidden" name="subject" value="' . $context['response_prefix'] . $context['subject'] . '" />
<input type="hidden" name="icon" value="xx" />
<input type="hidden" name="notify" value="', $context['is_marked_notify'] || !empty($options['auto_notify']) ? '1' : '0', '" />
<input type="hidden" name="goback" value="', empty($options['return_to_post']) ? '0' : '1', '" />
<input type="hidden" name="num_replies" value="', $context['num_replies'], '" />
<textarea cols="75" rows="7" style="width: 95%; height: 100px;" name="message" tabindex="1"></textarea><br />
<input type="submit" name="post" value="' . $txt[105] . '" onclick="return submitThisOnce(this);" accesskey="s" tabindex="2" />
<input type="submit" name="preview" value="' . $txt[507] . '" onclick="return submitThisOnce(this);" accesskey="p" tabindex="4" />';
if ($context['show_spellchecking'])
echo '
<input type="button" value="', $txt['spell_check'], '" onclick="spellCheck(\'postmodify\', \'message\');" tabindex="5"/>';
echo '
<input type="hidden" name="sc" value="' . $context['session_id'] . '" />
<input type="hidden" name="seqnum" value="', $context['form_sequence_number'], '" />
</form>
</td>
</tr>
</table>';
}
if ($context['show_spellchecking'])
echo '
<form action="', $scripturl, '?action=spellcheck" method="post" accept-charset="', $context['character_set'], '" name="spell_form" id="spell_form" target="spellWindow"><input type="hidden" name="spellstring" value="" /></form>';
}

แก้เป็น -->>
ขออภัย! ท่านไม่สามารถเข้าถึงข้อมูลส่วนนี้ได้ กรุณาอ่าน เงื่อนไขการใช้งาน DexMore.Com

file $sourcedir/Display.php

ค้นห -->>
โค๊ด: [Select]
?>

เพิ่มไว้ก่อน -->>
โค๊ด: [Select]
// Show quick reply box by Crazy™.
function theme_quickreply_box()
{
global $txt, $modSettings, $db_prefix;
global $context, $settings, $user_info;

// Switch between default images and back... mostly in case you don't have an PersonalMessage template, but do ahve a Post template.
if (isset($settings['use_default_images']) && $settings['use_default_images'] == 'defaults' && isset($settings['default_template']))
{
$temp1 = $settings['theme_url'];
$settings['theme_url'] = $settings['default_theme_url'];

$temp2 = $settings['images_url'];
$settings['images_url'] = $settings['default_images_url'];

$temp3 = $settings['theme_dir'];
$settings['theme_dir'] = $settings['default_theme_dir'];
}

// Go!  Supa-sub-template-smash!
template_quickreply_box();

// Switch the URLs back... now we're back to whatever the main sub template is.  (like folder in PersonalMessage.)
if (isset($settings['use_default_images']) && $settings['use_default_images'] == 'defaults' && isset($settings['default_template']))
{
$settings['theme_url'] = $temp1;
$settings['images_url'] = $temp2;
$settings['theme_dir'] = $temp3;
}
}

ลิงค์หัวข้อ: http://dexmore.com/topic/297
Windows XP    Firefox 3.5.7   see ip บันทึกการเข้า
ดูรายการสิ่งของบัตรผ่านห้องเกมส์ใช้ได้ 30 วัน  

-:-DexMore.Com แหล่งมั่วสุมทางปัญญา-:-
*
*


!NeverDie

United States Minor Outlying Islands   หญิง ผู้เริ่มต้นกระทู้นี้ ออฟไลน์ เว็บไซต์
icon message
general ความคิดเห็นที่ 1 เมื่อ: 31 มกราคม 2553, 18:19:49
  • ชื่อ: hoteditor
  • ผู้เขียน: ecardmax.com
  • นำเสนอโดย: DexMoreGroup
  • ประเภท: Feature Enhancement
  • รองรับ: SMF 1.1.xx
  • ปรับปรุงล่าสุด: 18 มิถุนายน 2553
  • ต้นฉบับ: hoteditor

รายละเอียด
      WYSIWYG (วายซิวิก) ย่อมาจาก Waht You See is What You Get คือเห็นอย่างไรก็จะเป็นอย่างนั้น ไม่ว่าจะเป็นการแสดงผลทางหน้าจอ หรือทางเครื่องพิมพ์ ลักษณะ สีสรร ขนาด ของตัวอักษร จะแสดงผลเหมือนกันทั้ง 2 อย่าง เหมือนกับพิมพ์เอกสารในโปรแกรม MS Word อีกทั้งยังอำนวยความสะดวกในการโพสข้อความในบอร์ด เปรียบเสมือนท่านกำลังใช้งานโปรแกรม MS Word อยู่ทีเดียว ซึ่งหากเราคัดลอกข้อมูลหรือรูปภาพมาจากเว็บอื่น แล้วนำมาวางใน SMF ลักษณะ ขนาด สีสรร ของตัวอักษร จะเหมือนต้นฉบับที่เราคัดลอกมาทุกอย่าง โดยที่เราไม่ต้องเพิ่ม BBC ปรับแต่งอีกต่อไป คือเข้าใจง่ายๆ ว่าเป็นระบบคัดลอกแล้ววาง (Copy and Paste) นั่นเอง

ตัวอย่าง
หน้าพิมพ์ข้อความ


ช่องตอบด่วน


ขออภัย! ท่านไม่สามารถเข้าถึงข้อมูลส่วนนี้ได้ กรุณาอ่าน เงื่อนไขการใช้งาน DexMore.Com

แตกไฟล์อัฟโหลดโฟลเดอร์ richedit ไปไว้ใน $boarddir

CHMOD โฟลเดอร์ upload = 777

ต่อไปก็มาติดตั้ง WYSIWYG TextEditor กันเลย..(ห้ามลัดขั้นตอน)

file Display.template.php

ค้นหา -->>
โค๊ด: [Select]
<textarea class="editor" cols="75" rows="7" style="width: 95%; height: 100px;" name="message" tabindex="1" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);" onchange="storeCaret(this);"></textarea>

แก้เป็น -->>
โค๊ด: [Select]
<!--//HotEditor MOD - Quick Reply -->
<textarea style="visibility:hidden;position:absolute;top:-20;left:-20;width:1px;height:1px" cols="75" rows="7" id="message" name="message" tabindex="1"></textarea>
<style type="text/css">@import url(richedit/styles/office2007/style.css);</style>        
<script language="JavaScript" type="text/javascript" src="richedit/editor.js?version=4.2"></script>
<script language="JavaScript" type="text/javascript">
   var getdata =document.getElementById("message").value;
   Instantiate("min","editor", getdata , "100%", "150px");
   //For Vietnamese User. Edit file editor.js to enable vietnamese keyboard
   if(enable_vietnamese_keyboard==1){
      document.write("<script language=\"JavaScript\" type=\"text/javascript\" src=\"richedit/avim.js\"><\/script>");
      var hoteditor_avim_method = hot_readCookie("hoteditor_avim_method");
      var him_auto_checked="";
      var him_telex_checked="";
      var him_vni_checked="";
      var him_viqr_checked="";
      var him_viqr2_checked="";
      var him_off_checked="";
      if(hoteditor_avim_method=="0"){him_auto_checked="checked";}
      else if(hoteditor_avim_method=="1"){him_telex_checked="checked";}
      else if(hoteditor_avim_method=="2"){him_vni_checked="checked";}
      else if(hoteditor_avim_method=="3"){him_viqr_checked="checked";}
      else if(hoteditor_avim_method=="4"){him_viqr2_checked="checked";}
      else if(hoteditor_avim_method=="-1"){him_off_checked="checked";}
      document.write("<div style=\'width:100%;text-align:center;font-family:Verdana;font-size:11px;\'><input "+him_auto_checked+" id=him_auto onclick=setMethod(0); type=radio name=viet_method> Auto :: <input "+him_telex_checked+" id=him_telex onclick=setMethod(1); type=radio name=viet_method> Telex :: <input "+him_vni_checked+" id=him_vni onclick=setMethod(2); type=radio name=viet_method> VNI :: <input "+him_viqr_checked+" id=him_viqr onclick=setMethod(3); type=radio name=viet_method> VIQR :: <input "+him_viqr2_checked+" id=him_viqr2 onclick=setMethod(4); type=radio name=viet_method> VIQR* :: <input "+him_off_checked+" id=him_off onclick=setMethod(-1); type=radio name=viet_method> Off<br><img src="+styles_folder_path+"/vietnamese_symbol.gif></div>");
   }
   function get_hoteditor_data(){
      if (HTML_ON == "no"){
         alert ("Please uncheck the HTML checkbox");
         return false;
      }
      else{
         setCodeOutput();
         var bbcode_output=document.getElementById("hoteditor_bbcode_ouput_editor").value;//Output to BBCode
         document.getElementById("message").value = bbcode_output;
      }
   }
</script>
<!--//HotEditor MOD Quick Reply -->

ค้นหา -->>
โค๊ด: [Select]
var smf_template_body_edit = \'<div id="error_box" style="padding: 4px; color: red;"></div><textarea class="editor" name="message" rows="12" style="width: 94%; margin-bottom: 10px;">%body%</textarea><br /><input type="hidden" name="sc" value="', $context['session_id'], '" /><input type="hidden" name="topic" value="', $context['current_topic'], '" /><input type="hidden" name="msg" value="%msg_id%" /><div style="text-align: center;"><input type="submit" name="post" value="', $txt[10], '" onclick="return modify_save(\\\'' . $context['session_id'] . '\\\');" accesskey="s" />&nbsp;&nbsp;', $context['show_spellchecking'] ? '<input type="button" value="' . $txt['spell_check'] . '" onclick="spellCheck(\\\'quickModForm\\\', \\\'message\\\');" />&nbsp;&nbsp;' : '', '<input type="submit" name="cancel" value="', $txt['modify_cancel'], '" onclick="return modify_cancel();" /></div>\';

แก้เป็น -->>
โค๊ด: [Select]
//HotEditor MOD QUICK EDIT / MODIFY POST
var edit_session_id = "', $context['session_id'], '";
var smf_template_body_edit = \'<div id="error_box" style="padding: 4px; color: red;"></div><iframe frameborder=0 width=100% height=550px src="hoteditor_quickedit.html" scrolling=no target="_top"></iframe><textarea style="visibility:hidden;width:1px;height:1px" id="message" class="editor" name="message" rows="12" style="width: 94%; margin-bottom: 10px;">%body%</textarea><input type="hidden" name="sc" value="', $context['session_id'], '" /><input type="hidden" name="topic" value="', $context['current_topic'], '" /><input type="hidden" name="msg" value="%msg_id%" /><div style="text-align: center;"><input type="hidden" name="post" value="', $txt[10], '" onclick="return modify_save(\\\'' . $context['session_id'] . '\\\');" accesskey="s" />&nbsp;&nbsp;', $context['show_spellchecking'] ? '<input type="button" value="' . $txt['spell_check'] . '" onclick="spellCheck(\\\'quickModForm\\\', \\\'message\\\');" />&nbsp;&nbsp;' : '', '<input type="hidden" name="cancel" value="', $txt['modify_cancel'], '" onclick="return modify_cancel();" /></div>\';

file Post.template.php

ค้นหา -->>
โค๊ด: [Select]
// Finally the most important bit - the actual text box to write in!
echo '
<tr>
<td valign="top" align="right"></td>
<td>
<textarea class="editor" name="', $context['post_box_name'], '" rows="', $context['post_box_rows'], '" cols="', $context['post_box_columns'], '" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);" onchange="storeCaret(this);" tabindex="', $context['tabindex']++, '"', isset($context['post_error']['no_message']) || isset($context['post_error']['long_message']) ? ' style="border: 1px solid red;"' : '', '>', $message, '</textarea>
</td>
</tr>';

แก้เป็น -->>
โค๊ด: [Select]
// Finally the most important bit - the actual Hoteditor box to write in!
//HotEditor MOD
print<<<EOF
<tr>
<td valign="top" align="right"></td>
<td>
<textarea style="visibility:hidden;position:absolute;top:-20;left:-20;width:1px;height:1px" class="editor" id="hoteditor_holder" name="$context[post_box_name]" >$message</textarea>
<style type="text/css">@import url(richedit/styles/office2007/style.css);</style>
<script language="JavaScript" type="text/javascript" src="richedit/editor.js?version=4.2"></script>
<script language="JavaScript" type="text/javascript">
var getdata =document.getElementById("hoteditor_holder").value;
getdata=getdata.replace(/\[S\]/gi,"[STRIKE]");
getdata=getdata.replace(/\[\/S\]/gi,"[/STRIKE]");
Instantiate("max","editor", getdata , "100%", "300px");
function get_hoteditor_data(){
if (HTML_ON == "no"){
alert ("Please uncheck the HTML checkbox");
return false;
}
else{
setCodeOutput();
var bbcode_output=document.getElementById("hoteditor_bbcode_ouput_editor").value;//Output to BBCode
document.getElementById("hoteditor_holder").value = bbcode_output;
}
}
</script>
</td>
</tr>
EOF;

ค้นหา -->>
โค๊ด: [Select]
// Assuming BBC code is enabled then print the buttons and some javascript to handle it.
   
<<--จนถึง-->>
               
โค๊ด: [Select]
smileyPopupWindow.document.write(\'</td></tr>\n\t\t\t<tr><td align="center" class="windowbg"><a href="javascript:window.close();\\">', $txt['more_smileys_close_window'], '</a></td></tr>\n\t\t</table>\n\t</body>\n</html>\');
smileyPopupWindow.document.close();
}
// ]]></script>';
}

แก้เป็น -->>
โค๊ด: [Select]
//Hoteditor MOD - Remove original BBCode and Smileys

ค้นหา -->>
โค๊ด: [Select]
replaceText(text, document.forms.postmodify.message);

แก้เป็น -->>
โค๊ด: [Select]
//HotEditor MOD
if(editor_type=="0"){//BBCode Editor
WriteTEXT(text,"editor");
}
else{//WYSIWYG Editor
text=BBCodeToHTML(text);
WriteHTML(text,"editor");
}

ค้นหา -->>
โค๊ด: [Select]
// Finally, the submit buttons.
echo '
<tr>
<td align="center" colspan="2">
<span class="smalltext"><br />', $txt['smf16'], '</span><br />
<input type="submit" name="post" value="', $context['submit_label'], '" tabindex="', $context['tabindex']++, '" onclick="return submitThisOnce(this);" accesskey="s" />
<input type="submit" name="preview" value="', $txt[507], '" tabindex="', $context['tabindex']++, '" onclick="return event.ctrlKey || previewPost();" accesskey="p" />';


แก้เป็น -->>
โค๊ด: [Select]
// HotEditor MOD - add code get_hoteditor_data() - Finally, the submit buttons.
echo '
<tr>
<td align="center" colspan="2">
<span class="smalltext"><br />', $txt['smf16'], '</span><br />
<input type="submit" name="post" value="', $context['submit_label'], '" tabindex="', $context['tabindex']++, '" onclick="return get_hoteditor_data();submitThisOnce(this);" accesskey="s" />
<input type="submit" name="preview" value="', $txt[507], '" tabindex="', $context['tabindex']++, '" onclick="return event.ctrlKey || get_hoteditor_data();previewPost();" accesskey="p" />';

file Themes/default/script.js

ค้นหา -->>
โค๊ด: [Select]
function submitThisOnce(form)
{

เพิ่มไว้หลัง -->>
โค๊ด: [Select]
//HotEditor MOD
get_hoteditor_data();

ค้นหา -->>
โค๊ด: [Select]
function submitonce(theform)
{
smf_formSubmitted = true;
}

แก้เป็น -->>
โค๊ด: [Select]
function submitonce(theform)
{
//HotEditor MOD
get_hoteditor_data();

smf_formSubmitted = true;
}

ค้นหา -->>
โค๊ด: [Select]
// Replaces the currently selected text with the passed text.
function replaceText(text, textarea)
{
// Attempt to create a text range (IE).
if (typeof(textarea.caretPos) != "undefined" && textarea.createTextRange)
{
var caretPos = textarea.caretPos;

caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? text + ' ' : text;
caretPos.select();
}
// Mozilla text range replace.
else if (typeof(textarea.selectionStart) != "undefined")
{
var begin = textarea.value.substr(0, textarea.selectionStart);
var end = textarea.value.substr(textarea.selectionEnd);
var scrollPos = textarea.scrollTop;

textarea.value = begin + text + end;

if (textarea.setSelectionRange)
{
textarea.focus();
textarea.setSelectionRange(begin.length + text.length, begin.length + text.length);
}
textarea.scrollTop = scrollPos;
}
// Just put it on the end.
else
{
textarea.value += text;
textarea.focus(textarea.value.length - 1);
}
}

แก้เป็น -->>
โค๊ด: [Select]
//HotEditor MOD
// Replaces the currently selected text with the passed text.
function replaceText(text, textarea)
{
if(editor_type==1){
text=BBCodeToHTML(text);
WriteHTML(text,"editor");
}
else{
WriteTEXT(text,"editor");
}
}

file Sources/Subs.php

ค้นหา -->>
โค๊ด: [Select]
$codes = array(

เพิ่มไว้หลัง -->>
โค๊ด: [Select]
//HotEditor MOD
array(
'tag' => 'highlight',
'type' => 'unparsed_equals',
'test' => '(#[\da-fA-F]{3}|#[\da-fA-F]{6}|[A-Za-z]{1,12})\]',
'before' => '<span style="background-color: $1;">',
'after' => '</span>',
),
array(
'tag' => 'strike',
'before' => '<strike>',
'after' => '</strike>',
),

ค้นหา -->>
โค๊ด: [Select]
'before' => '<table style="font: inherit; color: inherit;">',

แก้เป็น -->>
โค๊ด: [Select]
'before' => '<table align=center style="border-collapse: collapse;border-spacing: 0px;border: 1px solid #6CAFF7;background-color: #F4F4F4;width:98%;font-family:Verdana,Arial,Sans-Serif,Tahoma;font-size:12px;color: black;">',

ค้นหา -->>
โค๊ด: [Select]
'before' => '<td valign="top" style="font: inherit; color: inherit;">',

แก้ิเป็น -->>
โค๊ด: [Select]
'before' => '<td style="height:25px; border: 1px solid #6CAFF7">',

ลิงค์หัวข้อ: http://dexmore.com/topic/297
Windows XP    Firefox 3.5.7   see ip บันทึกการเข้า
ดูรายการสิ่งของบัตรผ่านห้องเกมส์ใช้ได้ 30 วัน  

-:-DexMore.Com แหล่งมั่วสุมทางปัญญา-:-
webpooying

icon message
general ความคิดเห็นที่ 2 เมื่อ: 10 สิงหาคม 2553, 13:59:10
โหลดไฟล์ไม่ได้ค่ะ

ลิงค์หัวข้อ: http://dexmore.com/topic/297
Thx by Mteam
Windows XP    Firefox 3.6.8   see ip บันทึกการเข้า
โฮสต์ดีๆ บริการด้วยใจ
*
*


!Personal

Germany   ชาย ออฟไลน์544566157 DexMore DexMore DexMore
เว็บไซต์
icon message
general ความคิดเห็นที่ 3 เมื่อ: 10 สิงหาคม 2553, 14:33:51
ไปโหลดจากต้นฉบับเลยครับ

mod ตัวนี้แค่แนะนำให้รู้จัก ไม่แนะนำให้ใช้และทางเราไม่ support ด้วยครับ ถ้าต้องการจะใช้จริงๆ แนะนำให้ซื้อตัวเต็มครับ ตัวนี้รูรั่วอื้อเลย..

ลิงค์หัวข้อ: http://dexmore.com/topic/297
Thx by Mteam
Windows XP    Firefox 3.6.8   see ip บันทึกการเข้า
ดูรายการสิ่งของสำหรับบอกรักใครสักคน ก็ส่งไปให้เขาเลย!  สำหรับติดหมุดกระทู้ของคุณ!  เพิ่มเวลาที่อยู่ในระบบอีก 12 ชั่วโมง  น้องหมี..เอาไว้กอดนอนแทนกิ๊ก  สำหรับบอกรักใครสักคน ก็ส่งไปให้เขาเลย!  
*



Thailand   ชาย ออฟไลน์ เว็บไซต์
icon message
general ความคิดเห็นที่ 4 เมื่อ: 12 มิถุนายน 2554, 16:44:44
ไปโหลดจากต้นฉบับเลยครับ

mod ตัวนี้แค่แนะนำให้รู้จัก ไม่แนะนำให้ใช้และทางเราไม่ support ด้วยครับ ถ้าต้องการจะใช้จริงๆ แนะนำให้ซื้อตัวเต็มครับ ตัวนี้รูรั่วอื้อเลย..
มีตัวไหนบ้างครับที่มันสมบุนณ์

ลิงค์หัวข้อ: http://dexmore.com/topic/297
« แก้ไขครั้งสุดท้าย: 12 มิถุนายน 2554, 17:05:00 โดย ohmohmohm009 » Windows XP    Chrome 12.0.742.91   see ip บันทึกการเข้า
*ขออภัย! คุณไม่ได้รับอนุญาตให้ใส่ลิงค์ในลายเซ็น*       *ขออภัย! คุณไม่ได้รับอนุญาตให้ใส่ลิงค์ในลายเซ็น*
  *ขออภัย! คุณไม่ได้รับอนุญาตให้ใส่ลิงค์ในลายเซ็น*  
*
*


!Personal

Germany   ชาย ออฟไลน์544566157 DexMore DexMore DexMore
เว็บไซต์
icon message
general ความคิดเห็นที่ 5 เมื่อ: 12 มิถุนายน 2554, 17:05:17
ยังไม่เห็นมีเลยครับ แม้แต่ของ 2.0 ก็ยังมีปัญหาอยู่เลย วันนี้ออกตัวเต็มมาแล้วกำลังทดสอบอยู่ครับ

ลิงค์หัวข้อ: http://dexmore.com/topic/297
Thx by Mteam
Windows XP    Firefox 4.0.1   see ip บันทึกการเข้า
ดูรายการสิ่งของสำหรับบอกรักใครสักคน ก็ส่งไปให้เขาเลย!  สำหรับติดหมุดกระทู้ของคุณ!  เพิ่มเวลาที่อยู่ในระบบอีก 12 ชั่วโมง  น้องหมี..เอาไว้กอดนอนแทนกิ๊ก  สำหรับบอกรักใครสักคน ก็ส่งไปให้เขาเลย!  
*



Thailand   ชาย ออฟไลน์
icon message
general ความคิดเห็นที่ 6 เมื่อ: 6 กุมภาพันธ์ 2555, 11:57:03
ผมมีปัญหาว่า พิมพ์ข้อความที่มี " เสร็จแล้วตอบ จะขึ้น &nbsp; ทุกครั้ง แล้วระยะบรรทัดห่างกันมากด้วยครับ

ลิงค์หัวข้อ: http://dexmore.com/topic/297
Windows XP    Chrome 16.0.912.77   see ip บันทึกการเข้า
โฮสต์ดีๆ บริการด้วยใจ
*
*


!Personal

Germany   ชาย ออฟไลน์544566157 DexMore DexMore DexMore
เว็บไซต์
icon message
general ความคิดเห็นที่ 7 เมื่อ: 6 กุมภาพันธ์ 2555, 12:01:03
ที่คุณเอามาถามคุณไม่ได้ทำแบบที่นี่แต่ทำตาม htmlthai ซึ่งวิธีแก้ปัญหาก็อยู่ในกระทู้ที่เขาโพสต์อยู่แล้ว

ลิงค์หัวข้อ: http://dexmore.com/topic/297
Windows NT 6.1    Firefox 10.0   see ip บันทึกการเข้า
ดูรายการสิ่งของสำหรับบอกรักใครสักคน ก็ส่งไปให้เขาเลย!  สำหรับติดหมุดกระทู้ของคุณ!  เพิ่มเวลาที่อยู่ในระบบอีก 12 ชั่วโมง  น้องหมี..เอาไว้กอดนอนแทนกิ๊ก  สำหรับบอกรักใครสักคน ก็ส่งไปให้เขาเลย!  
ส่งหัวข้อนี้พิมพ์ หน้า: 1 
กระโดดไป:  

Creative Commons License

SMF Thai Translation Powered by SMF © 2006–2012, Simple Machines LLC

WordPress Google เข้าเยี่ยมชมหน้านี้ล่าสุดเมื่อ : 16 พฤษภาคม 2555, 19:28:31

jQuery Plugin Copyright © 2551-2555 Themes Design & Hosting by DexMoreGroup

Sitemap | Thai Simple Machines Forum support SMF Thai

Web Begining | SMF Modifications | SMF Thai Translation Web Begining

Drupal | WordPress | CMS Joomla | jQuery Plugin | Web Graphics CMS Joomla