Forum Clock (flash)

All new MODs released in our MOD Database will be announced in here. All support for released MODs needs to take place in here. No new MODs will be accepted into the MOD Database for phpBB2
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

On February 1, 2009 this forum will be set to read only as part of retiring of phpBB2.

Rating:

Excellent!
44
59%
Very Good
12
16%
Good
10
13%
Fair
5
7%
Poor
4
5%
 
Total votes: 75

User avatar
drumstix42
Registered User
Posts: 1100
Joined: Tue Sep 24, 2002 11:01 pm
Location: NJ
Contact:

Post by drumstix42 »

Nice job :)
Need a phpBB update or mod installed? PM me for any questions and pricing!
HostMonster.com (Unlimited Space, Unlimited Transfer, Unlimited Domains, $6.95/month )
Kendjin
Registered User
Posts: 375
Joined: Mon Sep 22, 2003 2:12 pm
Location: UK
Contact:

Post by Kendjin »

Will there be any chance of seeing this wonderful MOD in a plesant Black form?
My Avatar should say: I WANT YOU!!! to leave me alone.
But he's wearing a crimbo hat ^_^
A_Jelly_Doughnut is my idol ^-^
mm3guy
Registered User
Posts: 197
Joined: Tue Oct 14, 2003 8:13 pm

Post by mm3guy »

I can show you how to make this a EzPortal Block :D
Kendjin
Registered User
Posts: 375
Joined: Mon Sep 22, 2003 2:12 pm
Location: UK
Contact:

Post by Kendjin »

I meant BLACK, as in Black color....

Edited: other post...
My Avatar should say: I WANT YOU!!! to leave me alone.
But he's wearing a crimbo hat ^_^
A_Jelly_Doughnut is my idol ^-^
mm3guy
Registered User
Posts: 197
Joined: Tue Oct 14, 2003 8:13 pm

Post by mm3guy »

drumstix42 wrote: For DARK Styles


IN:
templates/subSilver/index_body.tpl


FIND:

Code: Select all

	<div align="center"><embed width="170" height="150" src="./Clock.swf">
    </div>

REPLACE WITH:

Code: Select all

<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
 codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
 WIDTH="170" HEIGHT="150" id="clock" ALIGN="">
 <PARAM NAME=movie VALUE="./Clock.swf"> 
 <PARAM NAME=quality VALUE=high> 
 <PARAM NAME=bgcolor VALUE=#000000>
 <PARAM NAME=FlashVars VALUE="textColor=0xFF0000&showSeconds=1">
 <EMBED src="./Clock.swf" quality=high bgcolor=#FFFFFF  WIDTH="170" HEIGHT="150" NAME="clock" ALIGN=""
 	TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer"
 	FlashVars="textColor=0xFF0000&showSeconds=1"></EMBED>
</OBJECT>

It may be a little too dark, but you can change this line:

<PARAM NAME=bgcolor VALUE=#000000>

#000000 is black
#FFFFFFF is white


I quoted him for you :)
User avatar
drumstix42
Registered User
Posts: 1100
Joined: Tue Sep 24, 2002 11:01 pm
Location: NJ
Contact:

Post by drumstix42 »

Thanx, and I can easily make it a portal block.

(I'm currently being mad at how my computer wont install this update patch for a music listening program... :evil: )

So in a few minutes, unless you beat me to it ^_^
Need a phpBB update or mod installed? PM me for any questions and pricing!
HostMonster.com (Unlimited Space, Unlimited Transfer, Unlimited Domains, $6.95/month )
trufflessofty
Registered User
Posts: 23
Joined: Sat Aug 02, 2003 1:52 pm
Location: Canada
Contact:

Post by trufflessofty »

Thanks for this flash clock drumstix42 .

Works great except for the 12 oclock thingy :( but I can live with that so will the members. they will have to.

see where i placed my Forum clock
:::::::::::::::::::::::::::::::::::::::::
[iimc Forum]<<<>>>[My Art Designs]
:::::::::::::::::::::::::::::::::::::::::
kamahl
Registered User
Posts: 328
Joined: Sat Jan 04, 2003 4:38 pm
Location: Ogden, Utah

Post by kamahl »

My forum...

I got an interesting idea and I'm hoping you can clear this up for me.

Earlier in this topic you posted how to add it to replace the "Who is online" image, on the
left of the table. This is great, but I use the "Welcome and Avatar on Index" mod,
and don't want to lose it.

So here's what I'm thinking...is there anyway I could add this clock on the right side of the
Who Is Online table? Like make a new cell on the right with it in?

Big thanks to anyone who can make this work.
[ The 10 Count Forums Powered by phpBB3.0 | 400 Wrestling Avatars ]
User avatar
drumstix42
Registered User
Posts: 1100
Joined: Tue Sep 24, 2002 11:01 pm
Location: NJ
Contact:

Post by drumstix42 »

Sure. No problem.


I 'was' acctually gonna suggest this, but didn't think anyone would really want it ;)

But you never know :D

Here goes....
Need a phpBB update or mod installed? PM me for any questions and pricing!
HostMonster.com (Unlimited Space, Unlimited Transfer, Unlimited Domains, $6.95/month )
mm3guy
Registered User
Posts: 197
Joined: Tue Oct 14, 2003 8:13 pm

Post by mm3guy »

EzPortal Clock Block

Open up templates/subSilver/portal_body.tpl

Find:

Code: Select all

		  <table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
		   <tr>
			<td class="catHead" height="25"><span class="genmed"><b>{L_WHO_IS_ONLINE}</b></span></td>
		   </tr>
		   <tr>
			<td class="row1" align="left"><span class="gensmall">{TOTAL_USERS_ONLINE}<br /><br />{LOGGED_IN_USER_LIST}<br /><br /><center>[ <a href="{U_VIEWONLINE}">{L_VIEW_COMPLETE_LIST}</a> ]</center><br />{RECORD_USERS}<br />&</span></td>
		   </tr>
		  </table>
		  
		  <br />
Before add:

Code: Select all

		  <table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
		   <tr>
			<td class="catHead" height="150"><span class="genmed"><b>Clock</b></span></td>
		   </tr>
		   <tr>
			<td class="row1" align="left"><span class="gensmall"><div align="center"><embed width="170" height="150" src="./Clock.swf"></div></span></td>
		   </tr>
		  </table>
		  
		  <br />
:D
User avatar
drumstix42
Registered User
Posts: 1100
Joined: Tue Sep 24, 2002 11:01 pm
Location: NJ
Contact:

Post by drumstix42 »

Place Clock On RIGHT Of Who's Online Box


IN:
templates/subSilver/index_body.tpl


FIND AND REMOVE:

Code: Select all

<!-- Clock Code: Start -->
<br />
<table align="center" cellpadding="3" cellspacing="1" border="0" class="forumline">
  <tr>
    <td class="catHead" colspan="1" align="center">
	<span class="cattitle">{CLOCK_NAME}</span>
	</td>
  </tr>
  <tr>
	<td align="center" valign="middle">

	<div align="center"><embed width="170" height="150" src="./Clock.swf">
    </div> 
	
	</td>
  </tr>
</table>
<!-- Clock Code: End -->

FIND:

Code: Select all

	<td class="catHead" colspan="2" height="28"><span class="cattitle"><a href="{U_VIEWONLINE}" class="cattitle">{L_WHO_IS_ONLINE}</a></span></td>

REPLACE WITH:

Code: Select all

	<td class="catHead" colspan="3" height="28"><span class="cattitle"><a href="{U_VIEWONLINE}" class="cattitle">{L_WHO_IS_ONLINE}</a></span></td>

FIND:

Code: Select all

	<td class="row1" align="left" width="100%"><span class="gensmall">{TOTAL_POSTS}<br />{TOTAL_USERS}<br />{NEWEST_USER}</span>
 </td>

REPLACE WITH:

Code: Select all

	<td class="row1" align="left" width="100%"><span class="gensmall">{TOTAL_POSTS}<br />{TOTAL_USERS}<br />{NEWEST_USER}</span></td>
    <td class="row1" align="center" valign="middle" rowspan="2">
    <!-- Clock Code: Start -->
    <table align="center" cellpadding="3" cellspacing="1" border="0" class="forumline">
      <tr>
	    <td align="center" valign="middle">
	      <div align="center"><embed width="130" height="120" src="./Clock.swf">
          </div>
	    </td>
      </tr>
    </table>
    <!-- Clock Code: End -->
    </td>

That should do it. And mess around with the clock as wanted. In the above code I just took out the thing that says 'clock' above it. But you can do whatever ;)

Screenshot:
Image
Need a phpBB update or mod installed? PM me for any questions and pricing!
HostMonster.com (Unlimited Space, Unlimited Transfer, Unlimited Domains, $6.95/month )
kamahl
Registered User
Posts: 328
Joined: Sat Jan 04, 2003 4:38 pm
Location: Ogden, Utah

Post by kamahl »

Wow...can someone say "MOD conflicts"?

Image

This is the result of making those changes...and here is index_body.tpl for the above. How can I fix this?
<table width="100%" cellspacing="0" cellpadding="2" border="0" align="center">
<tr>
<td align="left" valign="bottom"><span class="gensmall">
<!-- BEGIN switch_user_logged_in -->
{LAST_VISIT_DATE}<br />
<!-- END switch_user_logged_in -->
{CURRENT_TIME}<br /></span><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
<td align="right" valign="bottom" class="gensmall">
<!-- BEGIN switch_user_logged_in -->
<a href="{U_SEARCH_NEW}" class="gensmall">{L_SEARCH_NEW}</a><br /><a href="{U_SEARCH_SELF}" class="gensmall">{L_SEARCH_SELF}</a><br />
<!-- END switch_user_logged_in -->
<a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a></td>
</tr>
</table>

<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline">
<tr>
<td class="catHead" colspan="3" height="28"><span class="cattitle"><center><a href="{U_VIEWONLINE}" class="cattitle">{L_WHO_IS_ONLINE}</a></center></span></td>
</tr>
<tr>
<!--
<td class="row1" align="center" valign="middle" rowspan="3"><img src="templates/subSilver/images/whosonline.gif" alt="{L_WHO_IS_ONLINE}" /></td>
-->
<td class="row1" align="center" valign="middle" rowspan="3"><span class="mainmenu">Welcome</span><BR /><span class="mainmenu">{U_NAME_LINK}</span><BR /><BR />{AVATAR_IMG}</td>

<td class="row1" align="left" width="100%"><span class="gensmall">{TOTAL_POSTS}{TOTAL_TOPICS}<br />{TOTAL_USERS}<br />{NEWEST_USER} <center>{L_RICHEST_USER}
<!-- BEGIN richestrow -->
{richestrow.KOMMA}{richestrow.URL}{richestrow.USERNAME}</a>{richestrow.CASH}
<!-- END richestrow -->
{L_USERS_CASH}{USERS_CASH}.</center></span>
</td>
</tr>
<tr>
<td class="row1" align="left"><span class="gensmall">{TOTAL_USERS_ONLINE} & [ {L_WHOSONLINE_ADMIN} ] & [ {L_WHOSONLINE_MOD} ]<br />{RECORD_USERS}<br />{LOGGED_IN_USER_LIST}</span></td>
</tr>
<tr>
<td class="row1" align="left"><span class="gensmall">{USERS_OF_THE_DAY_LIST}</span></td>
</tr>
<tr>
<td class="catHead" colspan="2" height="28"><span class="cattitle">{L_TOP_POSTERS}</span></span></td>
</tr>
<tr>
<td class="row1" align="center" valign="middle" rowspan="2"><img src="templates/subSilver/images/top_users.gif" alt="{L_TOP_POSTERS}" /></td>
<td class="row1" align="left" width="100%"><span class="gensmall">{TOP_POSTERS}</span></td>
<td class="row1" align="center" valign="middle" rowspan="2">
<!-- Clock Code: Start -->
<table align="center" cellpadding="3" cellspacing="1" border="0" class="forumline">
<tr>
<td align="center" valign="middle">
<div align="center"><embed width="130" height="120" src="./Clock.swf">
</div>
</td>
</tr>
</table>
<!-- Clock Code: End -->

</td>
</tr>

</table>



<table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline">
<tr>
<th colspan="2" class="thCornerL" height="25" nowrap="nowrap">&{L_FORUM}&</th>
<th width="50" class="thTop" nowrap="nowrap">&{L_TOPICS}&</th>
<th width="50" class="thTop" nowrap="nowrap">&{L_POSTS}&</th>
<th class="thCornerR" nowrap="nowrap">&{L_LASTPOST}&</th>
</tr>
<!-- BEGIN catrow -->
<tr>
<td class="catLeft" colspan="5" height="28"><span class="cattitle"><a href="{catrow.U_VIEWCAT}" class="cattitle">{catrow.CAT_DESC}</a></span></td>
</tr>
<!-- BEGIN forumrow -->
<tr>
<td class="row1" align="center" valign="middle" height="50"><a href="{catrow.forumrow.U_VIEWFORUM}" class="forumlink"><img src="{catrow.forumrow.FORUM_FOLDER_IMG}" width="37" height="36" alt="{catrow.forumrow.L_FORUM_FOLDER_ALT}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}" border="0" /></a></td>
<td class="row1" width="100%" height="50" onMouseOver="this.style.backgroundColor='#080808'; this.style.cursor='hand';" onMouseOut=this.style.backgroundColor="{T_TR_COLOR1}" onclick="window.location.href='{catrow.forumrow.U_VIEWFORUM}'"><span class="forumlink"> <a href="{catrow.forumrow.U_VIEWFORUM}" class="forumlink">{catrow.forumrow.FORUM_NAME}</a><br />
</span> <span class="genmed">{catrow.forumrow.FORUM_DESC}<br />
</span><span class="gensmall">{catrow.forumrow.L_MODERATOR} {catrow.forumrow.MODERATORS}</span></td>
<td class="row2" align="center" valign="middle" height="50"><span class="gensmall">{catrow.forumrow.TOPICS}</span></td>
<td class="row2" align="center" valign="middle" height="50"><span class="gensmall">{catrow.forumrow.POSTS}</span></td>
<td class="row2" align="center" valign="middle" height="50" nowrap="nowrap"> <span class="gensmall">{catrow.forumrow.LAST_POST}</span></td>
</tr>
<!-- END forumrow -->
<!-- END catrow -->
</table>

<table width="100%" cellspacing="0" border="0" align="center" cellpadding="2">
<tr>
<td align="left"><span class="gensmall"><a href="{U_MARK_READ}" class="gensmall">{L_MARK_FORUMS_READ}</a></span></td>
<td align="right"><span class="gensmall">{S_TIMEZONE}</span></td>
</tr>
</table>



<!-- BEGIN switch_user_logged_out -->
<form method="post" action="{S_LOGIN_ACTION}">
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline">
<tr>
<td class="catHead" height="28"><a name="login"></a><span class="cattitle">{L_LOGIN_LOGOUT}</span></td>
</tr>
<tr>
<td class="row1" align="center" valign="middle" height="28"><span class="gensmall">{L_USERNAME}:
<input class="post" type="text" name="username" size="10" />
&&&{L_PASSWORD}:
<input class="post" type="password" name="password" size="10" />
&& &&{L_AUTO_LOGIN}
<input class="text" type="checkbox" name="autologin" />
&&&
<input type="submit" class="mainoption" name="login" value="{L_LOGIN}" />
</span> </td>
</tr>
</table>
</form>
<!-- END switch_user_logged_out -->

<br clear="all" />

<table cellspacing="3" border="0" align="center" cellpadding="0">
<tr>
<td width="20" align="center"><img src="templates/RPGGvPS2/images/folder_new.gif" alt="{L_NEW_POSTS}"/></td>
<td><span class="gensmall">{L_NEW_POSTS}</span></td>
<td>&&</td>
<td width="20" align="center"><img src="templates/RPGGvPS2/images/folder.gif" alt="{L_NO_NEW_POSTS}" /></td>
<td><span class="gensmall">{L_NO_NEW_POSTS}</span></td>
<td>&&</td>
<td width="20" align="center"><img src="templates/RPGGvPS2/images/folder_lock.gif" alt="{L_FORUM_LOCKED}" /></td>
<td><span class="gensmall">{L_FORUM_LOCKED}</span></td>
</tr>
</table>
[ The 10 Count Forums Powered by phpBB3.0 | 400 Wrestling Avatars ]
mm3guy
Registered User
Posts: 197
Joined: Tue Oct 14, 2003 8:13 pm

Post by mm3guy »

Which one is the avatar there, the Sonic the hedgehod or the K that is on fire? I can help but need these answered first
mm3guy
Registered User
Posts: 197
Joined: Tue Oct 14, 2003 8:13 pm

Post by mm3guy »

Sorry for double post, but I found another, better looking clock, with one problem, a grey background, you can see it HERE :)
kamahl
Registered User
Posts: 328
Joined: Sat Jan 04, 2003 4:38 pm
Location: Ogden, Utah

Post by kamahl »

No offense, but that clock sucks lol

Just my opinion...anyway the lil hedgehog dude is the avatar.
[ The 10 Count Forums Powered by phpBB3.0 | 400 Wrestling Avatars ]
Post Reply

Return to “[2.0.x] MOD Database Releases”