Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.7 > vBulletin 3.7 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
LCD-Display vB 3.7 Details »»
LCD-Display vB 3.7
Version: 1.0, by stangger5 stangger5 is offline
Developer Last Online: Oct 2023 Show Printable Version Email this Page

Category: Miscellaneous Hacks - Version: 3.7.0 Rating:
Released: 01-31-2008 Last Update: Never Installs: 103
Uses Plugins Auto-Templates
Additional Files  
No support by the author.

LCD - Display vb 3.7..
Works with vb 3.6 and vb 3.8 too..

Demo

Upload all files and import the product (product-lcd_display.xml)..

You need a minimum of 2 Lines for the LCD to function..
Inside the Generel-Settings, 40 Letters are Standard,
you might have to play with it so the the LCD-Letters do not run out of the Frame.

To use the Welcome usename/guest in the LCD box..
LCD-Display in the admin menu..
Preferences
Create New Line,
Textline (Language:

Code:
hello {begruser}
Now you can change the,,
Text align:
How to fade-in the Text:
How to fade-out the Text:
Wait-Mode:
Pick the color,
Text-Color:
Background-Color:
Color-Flash Color:

Then (Submit)

Make as many text lines as you want..
Click,, Create New Lines,, for each one..

If you want it to show in adv or the arcade ,,
add this under the $navbar in the adv_portal and ARCADE templates..

Code:
<table cellpadding="1" cellspacing="1" border="0" style="width:100%" class="tborder">
<tbody>
 <tr class="tcat">
  <td width="100%" align="left"><a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('lcd_display')"><img id="collapseimg_lcd_display" src="$stylevar[imgdir_button]/collapse_thead$vbcollapse[collapseimg_lcd_display].gif" alt="" border="0" /></a>
   <span class="normalfont">&nbsp;<b>Announcements 
</b></span>
  </td>
 </tr>
</tbody>

<tbody id="collapseobj_lcd_display" style="$vbcollapse[collapseobj_lcd_display]">
 <tr>
  <td class="alt1" style="width:100%" align="center">
   <iframe name="led" src="lcd.php" style="width:100%; height:30px" scrolling="no" marginheight="0" marginwidth="0" frameborder="0"></iframe>
  </td>
 </tr>
</tbody>
</table>
<br />
Enjoy !!
stangger5

Thanks goes to,,
Snoopie from web-dynamic.de for this hack..
Hacksaw from hacksaw.de for converting it to vb 3.6..
I`ve added some code and coverted it to English..

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #92  
Old 05-01-2008, 04:03 PM
b6gm6n's Avatar
b6gm6n b6gm6n is offline
 
Join Date: Aug 2002
Location: UK
Posts: 691
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I'll read through this post again... but i wondered why you had such a small I-Frame height etc... then i realized after altering everything that in firefox it looked cool... then i looked in IE... AH HA!! now i get it oh well... looks kinda cool in IE but you have to have another set of settings, heights etc etc etc - see attched
Reply With Quote
  #93  
Old 05-05-2008, 09:30 PM
hsv z clubbie hsv z clubbie is offline
 
Join Date: Aug 2006
Location: Sydney
Posts: 16
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Pressed Installed, nice hack
Reply With Quote
  #94  
Old 05-11-2008, 07:44 AM
MeMySelfNi MeMySelfNi is offline
 
Join Date: Dec 2003
Location: west coast
Posts: 129
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Upload all files
where exactly are the files suppose to be uploaded to?
Reply With Quote
  #95  
Old 05-13-2008, 01:11 PM
manutdvn manutdvn is offline
 
Join Date: Jul 2005
Posts: 147
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I got database error when uninstalled.

Database error in vBulletin 3.7.0:

Invalid SQL:
SELECT * FROM lcd_options;

MySQL Error : Table 'red.lcd_options' doesn't exist
Error Number : 1146
Request Date : Tuesday, May 13th 2008 @ 11:09:38 PM
Error Date : Tuesday, May 13th 2008 @ 11:09:38 PM
Script : http://****lcd.php
Referrer : http://***/index.php
IP Address : ****
Username : administrator
Classname : vB_Database
MySQL Version : 4.1.22-standard
Reply With Quote
  #96  
Old 05-14-2008, 01:52 AM
b6gm6n's Avatar
b6gm6n b6gm6n is offline
 
Join Date: Aug 2002
Location: UK
Posts: 691
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Here's a little more info on thos who want a better display...

I had problems, in firefox it looked great, but in IE the letters looked too small... i had various settings etc with the iframe height, i needed a bigger box because my letters looked larger, i didn't realize it was set for those using internet explorer (thus smaller letters)

anyways i found a solution, looks the same (near enough) in firefox and IE

But i need a way in the 'lcd' template to detect and IE broswer and change a setting, don't know how to do that yet, but if you look at the 'lcd.php' file you'll find this code
Code:
if (is_browser('ie') OR is_browser('opera')) $cssfont = "5px";
- cssfont i changed to 5, it made the height of my letters in IE larger, but they still looked too slim... but you can change that in the 'lcd' template, find
Code:
pre { font: 9px courier new; line-height: $cssfont; letter-spacing: -1px; }
- see the last part as -1, well thats the setting for IE, the default -3 is fine for firefox, so if you know how to switch values in that template depending on which browser you use then great, my iframe size in the 'lcd display' template is this >
Code:
   <iframe name="led" src="lcd.php" style="width:100%; height:35px" scrolling="no" marginheight="0" marginwidth="0" frameborder="0"></iframe>
-b6
Reply With Quote
  #97  
Old 05-15-2008, 09:47 AM
mrahul mrahul is offline
 
Join Date: Nov 2005
Posts: 150
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

what does this exactly do ?
Reply With Quote
  #98  
Old 05-17-2008, 03:05 PM
haytham's Avatar
haytham haytham is offline
 
Join Date: Jan 2003
Location: USA-Egypt-UAE
Posts: 510
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I don't know what to look for on your demo page..
Reply With Quote
  #99  
Old 05-21-2008, 05:40 AM
KanmaiseR KanmaiseR is offline
 
Join Date: Jan 2008
Location: Turkey
Posts: 41
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks installed..
Reply With Quote
  #100  
Old 05-21-2008, 01:08 PM
emp1re emp1re is offline
 
Join Date: Jan 2005
Posts: 20
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there a possibility or maybe for the future a way to use vbul phrases ?
for example last post, or userid or whatever info is in the database.

Als for future updates would it be nice to use clickable links options...

Maybe im asking to much...but its just an idea....

Further great hack, used it on our forum.
Reply With Quote
  #101  
Old 05-22-2008, 07:52 AM
gotgame gotgame is offline
 
Join Date: Apr 2008
Posts: 1
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there like a working demo on this? ^^
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 08:33 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04937 seconds
  • Memory Usage 2,312KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (5)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete