Bạn ghé thăm diễn đàn lần đầu? hãy đăng ký ngay bây giờ để tham gia.
  • Đăng nhập:

Chào mừng bạn đến với ITVNN FORUM - Diễn đàn công nghệ thông tin.

Nếu đây là lần đầu tiên bạn tham gia diễn đàn, xin mời bạn xem phần Hỏi/Ðáp để biết cách dùng diễn đàn. Để có thể tham gia thảo luận bạn phải đăng ký làm thành viên, click vào đây để đăng ký.


  • Partner Area
    • ITVNN HOSTING - Thiết kế website, Cung cấp Domain, Hosting, VPS Việt Nam Anh Hùng - Thông tin truyền thông
Trang 1/3 123 cuốicuối
kết quả từ 1 tới 10 trên 21
Tăng kích thước phông chữ Giảm kích thước phông chữ
  1. #1
    PhucSD's Avatar

    Trạng thái
    Offline
    Họ tên
    Nguyễn Hữu Phúc
    Tham gia ngày
    Jan 2011
    Thành viên thứ
    37119
    Đến từ
    Quy Nhơn, Bình Định
    Tuổi
    28
    Giới tính
    Bài gởi
    701
    Level: 43 [?]
    Experience: 3,397,367
    Next Level: 3,609,430
    Cảm ơn 73
    Cảm ơn 316 lần / 199 Bài viết

    Default Animated Flash Tags Widget , Flash Tag Cloud  

    Cái hướng dẫn ở dưới là dùng để thêm Tag Cloud Flash vào vBCMS
    Còn đây mình sẽ hướng dẫn cách thêm đám mây Tag dạng Flash vào Forum

    Bạn vào ACP=> Forum & Moderators =>Forum Blocks Manager => Add Block

    • Title: Tag Cloud
    • Description: Bỏ trống hay điền gì cũng đc
    • Content Type: Chọn PHP
    • Content: Điền vào code sau
    PHP Code: 
    $flashWidth  = 240; $flashHeight = 240; $flashPath = 'tagcloud.swf'; $flashBackgroundColor = 'ffffff'; $tagCount = 30; $tagMaxSize = 16; $tagMinSize = 8; 
    // Colors are in hex $data['tcolor'] = '0x000000'; $data['tcolor2'] = '0x336699'; $data['hicolor'] = '0x000000'; $data['speed'] = 100; $data['distr'] = 'true'; $data['mode'] = 'tags'; 
    $contentTypes = array(2=>'tags.php?tag=',15=>'blog.php?tag='); 
    /* No Editing Below This Line*/ 
    global $vbulletin; 
    // %d 
    $query = sprintf("SELECT Tag.tagid, Tag.tagtext, TagContent.contenttypeid, COUNT( TagContent.tagid ) AS count FROM ".TABLE_PREFIX."tag AS Tag LEFT JOIN ".TABLE_PREFIX."tagcontent AS TagContent ON ( Tag.tagid = TagContent.tagid ) GROUP BY TagContent.tagid ORDER BY count DESC LIMIT %d",$tagCount); 
    $qtags = vB::$db->query_read($query); 
    while($tag = vB::$db->fetch_array($qtags)) {     $tags[] = $tag;     $tagSize[$tag['tagtext']] = $tag['count']; } 
    // largest and smallest array values $maxQty = max(array_values($tagSize)); $minQty = min(array_values($tagSize)); 
    $spread = $maxQty - $minQty; if ($spread == 0) {         $spread = 1; } 
    $step = ($tagMaxSize - $tagMinSize) / ($spread); 
    // make the tag cloud $tagsHTML  = ""; foreach ($tags as $tag) {     $size = round($tagMinSize + (($tag['count'] - $minQty) * $step));     $text = $tag['tagtext']; 
        $url = $vbulletin->options['homeurl'].'/'.$contentTypes[$tag['contenttypeid']].urlencode($tag['tagtext']);     $tagsHTML .= "<a href='$url' style='$size'>$text</a>"; } 
    $data['tagcloud'] = '<tags>'.$tagsHTML.'</tags>'; 
    $flashVars = ""; 
    foreach($data as $var=>$val) {     $flashVars .= (empty ($flashVars))?'':'&amp;';     $flashVars .= "$var=".urlencode($val); } 
    ob_start(); ?> <embed width="<?php echo $flashWidth;?>" height="<?php echo $flashHeight;?>" flashvars="<?php echo $flashVars;?>" wmode="transparent" allowscriptaccess="always" quality="high" bgcolor="#<?php echo $flashBackgroundColor;?>" name="vbCloudFlash" id="vbCloudFlash" style="" src="<?php echo $vbulletin->options['homeurl'].'/'.$flashPath;?>" type="application/x-shockwave-flash"/> <?php 
    $content 
    ob_get_contents(); ob_end_clean(); 
    $output $content;
    Save !

    Done!


    Live Demo


    Flash Tag Cloud

    Released 6/3/2010
    By Vikas - http://www.ngcoders.com
    Demo - http://www.roboticsindia.com , Look at left sidebar

    Installation
    • Goto Admincp->vBullietin CMS->Widgets->Create New Widget
    • Choose PHP Direct Execution as Widget's Type
    • Place a Title. eg Upcoming Events. Keep it short as this is what will appear as title on your pages.
    • Click Save
    • Click Configure on the right of the new created widget.
    • Remove the default code that appears. Be sure to not leave behind even a single letter.
    • Copy and Paste the code that you can find below.
    • Leave the template name as is (vbcms_widget_execphp_page)
    • Click Save
    • Goto Admincp->vBullietin CMS->Layout Manager
    • Click Go on the Default Layout
    • Add the Widget to your Layout
    • Click Save
    • Download the attached tagcloud.zip and extract it.
    • Upload tagcloud.swf to root directory of your vbulletin install
    • That's all !!
    PHP Code


    PHP Code: 
    $flashWidth  = 330; 
    $flashHeight = 330; 
    $flashPath = 'tagcloud.swf'; 
    $flashBackgroundColor = 'ffffff'; 
    $tagCount = 30; 
    $tagMaxSize = 16; 
    $tagMinSize = 8; 

    // Colors are in hex 
    $data['tcolor'] = '0x000000'; 
    $data['tcolor2'] = '0x336699'; 
    $data['hicolor'] = '0x000000'; 
    $data['speed'] = 100; 
    $data['distr'] = 'true'; 
    $data['mode'] = 'tags'; 

    $contentTypes = array(2=>'tags.php?tag=',15=>'blog.php?tag='); 

    /* No Editing Below This Line*/ 

    global $vbulletin; 

    // %d 

    $query = sprintf("SELECT Tag.tagid, Tag.tagtext, TagContent.contenttypeid, COUNT( TagContent.tagid ) AS count FROM ".TABLE_PREFIX."tag AS Tag LEFT JOIN ".TABLE_PREFIX."tagcontent AS TagContent ON ( Tag.tagid = TagContent.tagid ) GROUP BY TagContent.tagid ORDER BY count DESC LIMIT %d",$tagCount); 

    $qtags = vB::$db->query_read($query); 

    while($tag = vB::$db->fetch_array($qtags)) { 
        $tags[] = $tag; 
        $tagSize[$tag['tagtext']] = $tag['count']; 


    // largest and smallest array values 
    $maxQty = max(array_values($tagSize)); 
    $minQty = min(array_values($tagSize)); 

    $spread = $maxQty - $minQty; 
    if ($spread == 0) { 
            $spread = 1; 


    $step = ($tagMaxSize - $tagMinSize) / ($spread); 

    // make the tag cloud 
    $tagsHTML  = ""; 
    foreach ($tags as $tag) 

        $size = round($tagMinSize + (($tag['count'] - $minQty) * $step)); 
        $text = $tag['tagtext']; 

        $url = $vbulletin->options['homeurl'].'/'.$contentTypes[$tag['contenttypeid']].urlencode($tag['tagtext']); 
        $tagsHTML .= "<a href='$url' style='$size'>$text</a>"; 


    $data['tagcloud'] = '<tags>'.$tagsHTML.'</tags>'; 

    $flashVars = ""; 

    foreach($data as $var=>$val) 

        $flashVars .= (empty ($flashVars))?'':'&amp;'; 
        $flashVars .= "$var=".urlencode($val); 


    ob_start(); 
    ?> 
    <embed width="<?php echo $flashWidth;?>" height="<?php echo $flashHeight;?>" flashvars="<?php echo $flashVars;?>" wmode="transparent" allowscriptaccess="always" quality="high" bgcolor="#<?php echo $flashBackgroundColor;?>" name="vbCloudFlash" id="vbCloudFlash" style="" src="<?php echo $vbulletin->options['homeurl'].'/'.$flashPath;?>" type="application/x-shockwave-flash"/> 
    <?php 

    $content 
    ob_get_contents(); 
    ob_end_clean(); 

    $output $content;
    It is based on WP-Cumulus , to change settings please refer to this page -

    http://www.roytanck.com/2009/03/11/h...us-shortcodes/

    Hình Kèm Theo Hình Kèm Theo
    File Kèm Theo File Kèm Theo
    thay đổi nội dung bởi: PhucSD; 26-06-2011 lúc 05:38 PM

  2. The Following 2 Thank You to PhucSD For This Useful Post:

    dinhdungvt47 (27-07-2011),Nông Dân (16-06-2013)

  3. #2
    quocduyze's Avatar
    Banned

    Trạng thái
    Offline
    Tham gia ngày
    May 2011
    Thành viên thứ
    46494
    Giới tính
    Bài gởi
    100
    Level: 33 [?]
    Experience: 470,422
    Next Level: 555,345
    Cảm ơn 20
    Cảm ơn 30 lần / 27 Bài viết

    Default

    Làm đi làm kaij nhiều lần mà sao không được nhỉ, bạn nào là cái flashTag xin được hướng dẫn với

  4. #3
    hoangduykt7990's Avatar

    Trạng thái
    Offline
    Tham gia ngày
    Mar 2010
    Thành viên thứ
    13907
    Tuổi
    35
    Giới tính
    Bài gởi
    683
    Level: 43 [?]
    Experience: 3,506,632
    Next Level: 3,609,430
    Cảm ơn 246
    Cảm ơn 155 lần / 125 Bài viết

    Default

    Kiểm tra xem đuờng dẫn đã đúng chưa

  5. #4
    PhucSD's Avatar

    Trạng thái
    Offline
    Họ tên
    Nguyễn Hữu Phúc
    Tham gia ngày
    Jan 2011
    Thành viên thứ
    37119
    Đến từ
    Quy Nhơn, Bình Định
    Tuổi
    28
    Giới tính
    Bài gởi
    701
    Level: 43 [?]
    Experience: 3,397,367
    Next Level: 3,609,430
    Cảm ơn 73
    Cảm ơn 316 lần / 199 Bài viết

    Default

    Cái hướng dẫn trên là dùng để thêm Tag Cloud Flash vào vBCMS
    Còn đây mình sẽ hướng dẫn cách thêm đám mây Tag dạng Flash vào Forum

    Bạn vào ACP=> Forum & Moderators =>Forum Blocks Manager => Add Block

    • Title: Tag Cloud
    • Description: Bỏ trống hay điền gì cũng đc
    • Content Type: Chọn PHP
    • Content: Điền vào code sau
    PHP Code: 
    $flashWidth  = 240; $flashHeight = 240; $flashPath = 'tagcloud.swf'; $flashBackgroundColor = 'ffffff'; $tagCount = 30; $tagMaxSize = 16; $tagMinSize = 8; 
    // Colors are in hex $data['tcolor'] = '0x000000'; $data['tcolor2'] = '0x336699'; $data['hicolor'] = '0x000000'; $data['speed'] = 100; $data['distr'] = 'true'; $data['mode'] = 'tags'; 
    $contentTypes = array(2=>'tags.php?tag=',15=>'blog.php?tag='); 
    /* No Editing Below This Line*/ 
    global $vbulletin; 
    // %d 
    $query = sprintf("SELECT Tag.tagid, Tag.tagtext, TagContent.contenttypeid, COUNT( TagContent.tagid ) AS count FROM ".TABLE_PREFIX."tag AS Tag LEFT JOIN ".TABLE_PREFIX."tagcontent AS TagContent ON ( Tag.tagid = TagContent.tagid ) GROUP BY TagContent.tagid ORDER BY count DESC LIMIT %d",$tagCount); 
    $qtags = vB::$db->query_read($query); 
    while($tag = vB::$db->fetch_array($qtags)) {     $tags[] = $tag;     $tagSize[$tag['tagtext']] = $tag['count']; } 
    // largest and smallest array values $maxQty = max(array_values($tagSize)); $minQty = min(array_values($tagSize)); 
    $spread = $maxQty - $minQty; if ($spread == 0) {         $spread = 1; } 
    $step = ($tagMaxSize - $tagMinSize) / ($spread); 
    // make the tag cloud $tagsHTML  = ""; foreach ($tags as $tag) {     $size = round($tagMinSize + (($tag['count'] - $minQty) * $step));     $text = $tag['tagtext']; 
        $url = $vbulletin->options['homeurl'].'/'.$contentTypes[$tag['contenttypeid']].urlencode($tag['tagtext']);     $tagsHTML .= "<a href='$url' style='$size'>$text</a>"; } 
    $data['tagcloud'] = '<tags>'.$tagsHTML.'</tags>'; 
    $flashVars = ""; 
    foreach($data as $var=>$val) {     $flashVars .= (empty ($flashVars))?'':'&amp;';     $flashVars .= "$var=".urlencode($val); } 
    ob_start(); ?> <embed width="<?php echo $flashWidth;?>" height="<?php echo $flashHeight;?>" flashvars="<?php echo $flashVars;?>" wmode="transparent" allowscriptaccess="always" quality="high" bgcolor="#<?php echo $flashBackgroundColor;?>" name="vbCloudFlash" id="vbCloudFlash" style="" src="<?php echo $vbulletin->options['homeurl'].'/'.$flashPath;?>" type="application/x-shockwave-flash"/> <?php 
    $content 
    ob_get_contents(); ob_end_clean(); 
    $output $content;
    Save !

    Done!


    Live Demo

  6. #5
    quocduyze's Avatar
    Banned

    Trạng thái
    Offline
    Tham gia ngày
    May 2011
    Thành viên thứ
    46494
    Giới tính
    Bài gởi
    100
    Level: 33 [?]
    Experience: 470,422
    Next Level: 555,345
    Cảm ơn 20
    Cảm ơn 30 lần / 27 Bài viết

    Default

    Trích Nguyên văn bởi hoangduykt7990 View Post
    Kiểm tra xem đuờng dẫn đã đúng chưa
    Mình đã làm đúng cái bước mà sao không thấy hiện ra ,

    http://www.tenmien.com/forum.php : Mình mún nó hiện ở forumhome mà không thấy ,,sạc

    Chèn xong báo lỏi
    thay đổi nội dung bởi: quocduyze; 26-06-2011 lúc 05:29 PM

  7. #6
    hoangduykt7990's Avatar

    Trạng thái
    Offline
    Tham gia ngày
    Mar 2010
    Thành viên thứ
    13907
    Tuổi
    35
    Giới tính
    Bài gởi
    683
    Level: 43 [?]
    Experience: 3,506,632
    Next Level: 3,609,430
    Cảm ơn 246
    Cảm ơn 155 lần / 125 Bài viết

    Default

    đưA LINK 4RUM BẠN và đưa cái code bạn chèn lên đây di, sửa cho

  8. #7
    PhucSD's Avatar

    Trạng thái
    Offline
    Họ tên
    Nguyễn Hữu Phúc
    Tham gia ngày
    Jan 2011
    Thành viên thứ
    37119
    Đến từ
    Quy Nhơn, Bình Định
    Tuổi
    28
    Giới tính
    Bài gởi
    701
    Level: 43 [?]
    Experience: 3,397,367
    Next Level: 3,609,430
    Cảm ơn 73
    Cảm ơn 316 lần / 199 Bài viết

    Default

    Đã cập nhật bài hướng dẫn trong bài gốc, mọi người đọc và làm theo, không được chỗ nào thì rep tại đây

  9. #8
    hoangduykt7990's Avatar

    Trạng thái
    Offline
    Tham gia ngày
    Mar 2010
    Thành viên thứ
    13907
    Tuổi
    35
    Giới tính
    Bài gởi
    683
    Level: 43 [?]
    Experience: 3,506,632
    Next Level: 3,609,430
    Cảm ơn 246
    Cảm ơn 155 lần / 125 Bài viết

    Default

    Forum mình là domain/@4r thì config như sau, tagcloud CMod 755


    Code: 
    $flashWidth = 200;
    $flashHeight = 200;
    $flashPath = '@4r/images/tagcloud.swf';
    $flashBackgroundColor = 'ffffff';
    $tagCount = 30;
    $tagMaxSize = 16;
    $tagMinSize = 8;
    
    
    // Colors are in hex
    $data['tcolor'] = '0x000000';
    $data['tcolor2'] = '0x336699';
    $data['hicolor'] = '0x000000';
    $data['speed'] = 100;
    $data['distr'] = 'true';
    $data['mode'] = 'tags';
    
    
    $contentTypes = array(2=>'@4r/tags.php?tag=',15=>'@4r/blog.php?tag=');
    
    
    /* No Editing Below This Line*/
    
    
    global $vbulletin;
    
    
    // %d
    
    
    $query = sprintf("SELECT Tag.tagid, Tag.tagtext, TagContent.contenttypeid, COUNT( TagContent.tagid ) AS count FROM ".TABLE_PREFIX."tag AS Tag LEFT JOIN ".TABLE_PREFIX."tagcontent AS TagContent ON ( Tag.tagid = TagContent.tagid ) GROUP BY TagContent.tagid ORDER BY count DESC LIMIT %d",$tagCount);
    
    
    $qtags = vB::$db->query_read($query);
    
    
    while($tag = vB::$db->fetch_array($qtags)) {
    $tags[] = $tag;
    $tagSize[$tag['tagtext']] = $tag['count'];
    }
    
    
    // largest and smallest array values
    $maxQty = max(array_values($tagSize));
    $minQty = min(array_values($tagSize));
    
    
    $spread = $maxQty - $minQty;
    if ($spread == 0) {
    $spread = 1;
    }
    
    
    $step = ($tagMaxSize - $tagMinSize) / ($spread);
    
    
    // make the tag cloud
    $tagsHTML = "";
    foreach ($tags as $tag)
    {
    $size = round($tagMinSize + (($tag['count'] - $minQty) * $step));
    $text = $tag['tagtext'];
    
    
    $url = $vbulletin->options['homeurl'].'/'.$contentTypes[$tag['contenttypeid']].urlencode($tag['tagtext']);
    $tagsHTML .= "<a href='$url' style='$size'>$text</a>";
    }
    
    
    $data['tagcloud'] = '<tags>'.$tagsHTML.'</tags>';
    
    
    $flashVars = "";
    
    
    foreach($data as $var=>$val)
    {
    $flashVars .= (empty ($flashVars))?'':'&';
    $flashVars .= "$var=".urlencode($val);
    }
    
    
    ob_start();
    ?>
    <embed width="<?php echo $flashWidth;?>" height="<?php echo $flashHeight;?>" flashvars="<?php echo $flashVars;?>" wmode="transparent" allowscriptaccess="always" quality="high" bgcolor="#<?php echo $flashBackgroundColor;?>" name="vbCloudFlash" id="vbCloudFlash" style="" src="<?php echo $vbulletin->options['homeurl'].'/'.$flashPath;?>" type="application/x-shockwave-flash"/>
    <?php
    
    
    $content = ob_get_contents();
    ob_end_clean();
    
    
    $output = $content;

  10. #9
    quocduyze's Avatar
    Banned

    Trạng thái
    Offline
    Tham gia ngày
    May 2011
    Thành viên thứ
    46494
    Giới tính
    Bài gởi
    100
    Level: 33 [?]
    Experience: 470,422
    Next Level: 555,345
    Cảm ơn 20
    Cảm ơn 30 lần / 27 Bài viết

    Default

    Trích Nguyên văn bởi hoangduykt7990 View Post
    Forum mình là domain/@4r thì config như sau, tagcloud CMod 755


    Code: 
    $flashWidth = 200;
    $flashHeight = 200;
    $flashPath = '@4r/images/tagcloud.swf';
    $flashBackgroundColor = 'ffffff';
    $tagCount = 30;
    $tagMaxSize = 16;
    $tagMinSize = 8;
    
    
    // Colors are in hex
    $data['tcolor'] = '0x000000';
    $data['tcolor2'] = '0x336699';
    $data['hicolor'] = '0x000000';
    $data['speed'] = 100;
    $data['distr'] = 'true';
    $data['mode'] = 'tags';
    
    
    $contentTypes = array(2=>'@4r/tags.php?tag=',15=>'@4r/blog.php?tag=');
    
    
    /* No Editing Below This Line*/
    
    
    global $vbulletin;
    
    
    // %d
    
    
    $query = sprintf("SELECT Tag.tagid, Tag.tagtext, TagContent.contenttypeid, COUNT( TagContent.tagid ) AS count FROM ".TABLE_PREFIX."tag AS Tag LEFT JOIN ".TABLE_PREFIX."tagcontent AS TagContent ON ( Tag.tagid = TagContent.tagid ) GROUP BY TagContent.tagid ORDER BY count DESC LIMIT %d",$tagCount);
    
    
    $qtags = vB::$db->query_read($query);
    
    
    while($tag = vB::$db->fetch_array($qtags)) {
    $tags[] = $tag;
    $tagSize[$tag['tagtext']] = $tag['count'];
    }
    
    
    // largest and smallest array values
    $maxQty = max(array_values($tagSize));
    $minQty = min(array_values($tagSize));
    
    
    $spread = $maxQty - $minQty;
    if ($spread == 0) {
    $spread = 1;
    }
    
    
    $step = ($tagMaxSize - $tagMinSize) / ($spread);
    
    
    // make the tag cloud
    $tagsHTML = "";
    foreach ($tags as $tag)
    {
    $size = round($tagMinSize + (($tag['count'] - $minQty) * $step));
    $text = $tag['tagtext'];
    
    
    $url = $vbulletin->options['homeurl'].'/'.$contentTypes[$tag['contenttypeid']].urlencode($tag['tagtext']);
    $tagsHTML .= "<a href='$url' style='$size'>$text</a>";
    }
    
    
    $data['tagcloud'] = '<tags>'.$tagsHTML.'</tags>';
    
    
    $flashVars = "";
    
    
    foreach($data as $var=>$val)
    {
    $flashVars .= (empty ($flashVars))?'':'&';
    $flashVars .= "$var=".urlencode($val);
    }
    
    
    ob_start();
    ?>
    <embed width="<?php echo $flashWidth;?>" height="<?php echo $flashHeight;?>" flashvars="<?php echo $flashVars;?>" wmode="transparent" allowscriptaccess="always" quality="high" bgcolor="#<?php echo $flashBackgroundColor;?>" name="vbCloudFlash" id="vbCloudFlash" style="" src="<?php echo $vbulletin->options['homeurl'].'/'.$flashPath;?>" type="application/x-shockwave-flash"/>
    <?php
    
    
    $content = ob_get_contents();
    ob_end_clean();
    
    
    $output = $content;

    Forum mình ko có @4r thì điền đường dẫn ntn : vào thẳng forumhome
    Là tenmien.com/forum.php ah : thì phải sửa ntn

  11. #10
    PhucSD's Avatar

    Trạng thái
    Offline
    Họ tên
    Nguyễn Hữu Phúc
    Tham gia ngày
    Jan 2011
    Thành viên thứ
    37119
    Đến từ
    Quy Nhơn, Bình Định
    Tuổi
    28
    Giới tính
    Bài gởi
    701
    Level: 43 [?]
    Experience: 3,397,367
    Next Level: 3,609,430
    Cảm ơn 73
    Cảm ơn 316 lần / 199 Bài viết

    Default

    Bạn đã đọc kĩ HD chưa ???
    Up cái file tagcloud.swf vào forum root của bạn, tức là ngang hàng admincp, forum.php đấy


 
Trang 1/3 123 cuốicuối

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Animated Flash Tags Widget , Flash Tag Cloud
    By PhucSD in forum v4.0.x Modifications
    Trả lời: 0
    Bài mới gởi: 08-06-2011, 11:26 AM
  2. Lỗi font khi tạo Tag Cloud Flash
    By nmhung in forum Hỏi đáp & Thảo luận
    Trả lời: 0
    Bài mới gởi: 15-03-2011, 10:54 AM
  3. Trả lời: 0
    Bài mới gởi: 30-07-2010, 07:48 PM
  4. Flash full website Template 10129 - Singer CD Flash Web Design
    By bavuongduongpho in forum Templates , Icons , Graphic Stuffs
    Trả lời: 0
    Bài mới gởi: 08-09-2009, 01:39 PM
  5. Macromedia Flash - Trình diễn văn bản trong Flash
    By ta070492 in forum Shockwave Flash
    Trả lời: 0
    Bài mới gởi: 07-09-2009, 06:07 PM

Tags for this Thread

Bookmarks

Quuyền Hạn Của Bạn

  • Bạn không thể tạo chủ đề mới
  • Bạn không thể trả lời bài viết
  • Bạn không thể gửi file đính kèm
  • Bạn không thể chỉnh sửa bài viết
  •