php forum
php mysql forum
php mysql smarty
 
Topic Options
#58026 - 04/12/05 02:27 AM Instant Images
Hussein Offline
Junior Member

Registered: 10/29/01
Posts: 24
Currently when a user posts a topic, there are two columns beneath the main message window: Instant Graemlins and Instant UBB Code(TM). My suggestion is to add a third column, called Instant Images. LK helped me with this mod back when I was using version 6.3 and it worked perfectly using the Instant Graemlins javascript. I used the mod to insert Arabic expressions as images instead of text, since not everyone has the Arabic language enabled in their operating system. The mod can be used for any images to be inserted. I had buttons similar to the Instant UBB Code buttons with an abbreviation of the Arabic expression and when a user selected the button, it would automatically insert the UBB image code and the link for the image.

I have not been able to adapt it to version 6.7, so if anyone can figure out how, I would appreciate it.

Top
#58027 - 04/12/05 03:31 PM Re: Instant Images
AllenAyres Offline

I type Like navaho

Registered: 03/10/00
Posts: 25580
Loc: Texas
Should be relatively easy to adapt, do you have the code from your old version still?
_________________________
- Allen wavey
- What Drives You?

Top
#58028 - 04/13/05 12:38 PM Re: Instant Images
Hussein Offline
Junior Member

Registered: 10/29/01
Posts: 24
For New Topic, Reply to Post, PM and Edit Post:

Code:
Find:
-----
<TR  bgcolor="$vars_style{TableColorStrip}">
<TD valign="top" width="33%">
<font face="$vars_style{FontFace}" size="$vars_style{TextSize}" color="$vars_style{TableStripTextColor}"><b>
$vars_wordlets{instant_graemlins}
</b></font></TD>
<TD valign="top" width="67%">
<font face="$vars_style{FontFace}" size="$vars_style{TextSize}" color="$vars_style{TableStripTextColor}"><b>
$vars_wordlets{instant_ubbcode}
</b></font></TD>
</TR>
<TR bgcolor="$vars_style{AltColumnColor1}">
<TD valign="top" align="left">
$smilie_list
 
</TD><TD valign="top" align="left">
<font face="$vars_style{FontFace}" size="1">
$ubb_code_buttons
</font>
</TD>
</TR>
Replace with:
-------------
<TR  bgcolor="$vars_style{TableColorStrip}">
<TD valign="top" width="33%">
<font face="$vars_style{FontFace}" size="$vars_style{TextSize}" color="$vars_style{TableStripTextColor}"><b>
$vars_wordlets{instant_graemlins}
</b></font></TD>
<TD valign="top" width="34%">
<font face="$vars_style{FontFace}" size="$vars_style{TextSize}" color="$vars_style{TableStripTextColor}"><b>
$vars_wordlets{instant_ubbcode}
</b></font></TD>
<TD valign="top" width="33%">
<font face="$vars_style{FontFace}" size="$vars_style{TextSize}" color="$vars_style{TableStripTextColor}"><b>
Instant Graphics
</b></font></TD>
</TR>
<TR bgcolor="$vars_style{AltColumnColor1}">
<TD valign="top" align="left">
$smilie_list
 
</TD><TD valign="top" align="left">
<font face="$vars_style{FontFace}" size="1">
$ubb_code_buttons
 
</font>
</TD>
<TD valign="top" align="left">
<a href="javascript: x()" onclick="DoSmilie('img.gif');"><img src="$vars_config{NonCGIURL}/bbtitle.gif" border="0" alt="Title"></a>
</TD>
</TR>


Top
#58029 - 04/13/05 04:29 PM Re: Instant Images
AllenAyres Offline

I type Like navaho

Registered: 03/10/00
Posts: 25580
Loc: Texas
is that it? Looks relatively easy... do you have a link to an example?
_________________________
- Allen wavey
- What Drives You?

Top
#58030 - 04/13/05 10:17 PM Re: Instant Images
AllenAyres Offline

I type Like navaho

Registered: 03/10/00
Posts: 25580
Loc: Texas
Untested:

OPEN public_common.pl

FIND:

Code:
$instant_ubbcode_block = qq~
$TBT

<tr bgcolor="$vars_style{TableColorStrip}">
<td valign="top" width="25%">
<font face="$vars_style{FontFace}" size="$vars_style{TextSize}" color="$vars_style{TableStripTextColor}"><b>
$vars_wordlets{instant_graemlins}
</b></font></td>
<td valign="top" width="75%">
<font face="$vars_style{FontFace}" size="$vars_style{TextSize}" color="$vars_style{TableStripTextColor}"><b>
$vars_wordlets{instant_ubbcode}
</b></font></td>
</tr>

<tr bgcolor="$vars_style{AltColumnColor1}">
<td valign="top" align="left">
$smilie_list
&nbsp;
</td><td valign="top" align="left">
<font face="$vars_style{FontFace}" size="$vars_style{FDTextSize}">
$ubb_code_buttons
</font>
</td>
</tr>

$TBB
~;

REPLACE WITH:

Code:
$instant_ubbcode_block = qq~
$TBT

<tr bgcolor="$vars_style{TableColorStrip}">
<td valign="top" width="25%">
<font face="$vars_style{FontFace}" size="$vars_style{TextSize}" color="$vars_style{TableStripTextColor}"><b>
$vars_wordlets{instant_graemlins}
</b></font></td>
<td valign="top" width="45%">
<font face="$vars_style{FontFace}" size="$vars_style{TextSize}" color="$vars_style{TableStripTextColor}"><b>
$vars_wordlets{instant_ubbcode}
</b></font></td>
<td valign="top" width="30%">
<font face="$vars_style{FontFace}" size="$vars_style{TextSize}" color="$vars_style{TableStripTextColor}"><b>
Instant Graphics
</b></font></td>
</tr>

<tr bgcolor="$vars_style{AltColumnColor1}">
<td valign="top" align="left">
$smilie_list
&nbsp;
</td><td valign="top" align="left">
<font face="$vars_style{FontFace}" size="$vars_style{FDTextSize}">
$ubb_code_buttons
</font>
</td><td valign="top" align="left">
<font face="$vars_style{FontFace}" size="$vars_style{FDTextSize}">
<a href="javascript: x()" onclick="DoSmilie('img.gif');"><img src="$vars_config{NonCGIURL}/bbtitle.gif" border="0" alt="Title"></a>
</font>
</td>
</tr>

$TBB
~;

_________________________
- Allen wavey
- What Drives You?

Top
#58031 - 04/16/05 02:09 AM Re: Instant Images
Hussein Offline
Junior Member

Registered: 10/29/01
Posts: 24
Tested and working.

Thanks Allen!

Top
#58032 - 04/17/05 06:42 PM Re: Instant Images
AllenAyres Offline

I type Like navaho

Registered: 03/10/00
Posts: 25580
Loc: Texas
well good, glad it worked for you smile
_________________________
- Allen wavey
- What Drives You?

Top



Moderator:  Gizmo 
Latest Posts
[7.2.1] - Naked shoutbox
by bellaonline
05/05/12 05:00 PM
[7.x] Stop Forum Spam Integration v0.4
by bellaonline
05/05/12 03:53 PM
Shout Box

(Views)Popular Topics
Known public proxy servers 1689885
Integrated Index Page (IIP) 5.3.1 555705
Finished-[6.5.2] Games Arcade Deluxe v1.9 501236
Integrated Index Page (IIP) 5.1.1 415112
TLD Bv2.1 Released - Threads Links Directory 396822
[6.0x] Who's Online 4.0.0 [Finished] 389412
Finished-[6.5.1] Integrated Index Page (IIP) 6.5 330423
Q & A 298663
Slash UBB 266936
[6.3.x] [beta] Hit Hack 2.0 227970
Forum Stats
13621 Members
59 Forums
37191 Topics
295716 Posts

Max Online: 686 @ 06/28/07 07:04 AM

 

 

 
fusionbb message board php hacks