Islamica Community: The Programmers, Web designers Thread - Islamica Community

Jump to content

  • (5 Pages)
  • +
  • 1
  • 2
  • 3
  • 4
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic

The Programmers, Web designers Thread Rate Topic: -----

#21 User is offline   Revert 

  • Super Moderator
  • View blog
  • Group: Members
  • Posts: 9,083
  • Joined: 31-May 06

Posted 31 July 2008 - 08:44 PM

i've designed websites in the past..i've coded in pure HTML but i prefer to use Dreamweaver.

ChotooMotoo said:

In that case, you should get on your knees and thank my Scandinavian ancestors cuz all yr asweomess r belong 2 VIKING rape babies
1

#22 User is offline   SaidAbdullahofDarfur 

  • Senior Member
  • Group: Members
  • Posts: 913
  • Joined: 17-February 07

Posted 31 July 2008 - 10:03 PM

Designing + Programing for the win, ya?
"The Messenger of Allah (may peace be upon him) once said: Verily Islam started as something strange and it will once again revert to being strange just as it started. So Good Tidings for the Strangers."


Nahnu jundullaahi dawman darbunaa darbul-ubaa
2

#23 User is offline   Sapphire 

  • Senior Member
  • Group: Members
  • Posts: 1,042
  • Joined: 23-October 04

Posted 01 August 2008 - 12:11 PM

Spice said:

Nerds, all of you :cry::D


Biologist + Computer Scientist = Uber nerd

Get is right! :lol:
The reason death sticks so closely to life isn't biological necessity, it's envy. Life is so beautiful that death has fallen in love with it

http://winacamper.fatface.com/safiyyah
0

#24 User is offline   Rida 

  • mmmm cookies!
  • View blog
  • Group: Members
  • Posts: 3,090
  • Joined: 22-December 06

Posted 02 August 2008 - 01:04 AM

Anyone have any efficient techniques to create something like the attached pic without tables? I know of one technique using unordered list, but it seems a bit sloppy to me.
Non-Web gui designing is so much easier... :cool:


Wassalaam

Attached File(s)


He Attained Exaltation By His Perfection
He Dispelled Darkness By His Beauty
Beauteous Are All His Qualities
Benediction Be Upon Him And His Family
0

#25 User is offline   meraj 

  • Administrator
  • Group: Administrators
  • Posts: 1,999
  • Joined: 14-September 99

Posted 02 August 2008 - 04:03 AM

as salaamu alaikum,

Rida said:

Anyone have any efficient techniques to create something like the attached pic without tables? I know of one technique using unordered list, but it seems a bit sloppy to me.
Non-Web gui designing is so much easier... ;)


heres one possible way of doing it:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Sample Code</title>
<style type="text/css">
<!--
wrapper {
 clear:both;
}
.label1 {
 margin: 4px 10px 0px 0px;
 float: left;
 font: bold 12px tahoma, sans-serif;
}
form {
 margin:0px;
 padding:0px;
}
.item {
 margin: 0px 4px 0px 0px;
 float: left;
 font: normal 9px arial, sans-serif;
}
-->
</style>
</head>
<body>
<div class="wrapper">
<form action="">
<div class="label1">Name</div>
<div class="item"><input type="text" name="firstname" /><br/>First</div>
<div class="item"><input type="text" name="lastname" /><br/>Last</div>
</form>
</div>
</body>
</html>


the implementation may vary depending on your layout (fluid vs. non-fluid, absolutely vs. relatively positioned, etc.).

:look: meraj
Posted Image
Please read the rules before posting! If you need help, please ask :)
1

#26 User is offline   Rida 

  • mmmm cookies!
  • View blog
  • Group: Members
  • Posts: 3,090
  • Joined: 22-December 06

Posted 02 August 2008 - 10:33 AM

That worked perfectly bro! jazakAllah khair!
Is there any way to do it without out the line break tag as well?

Wassalaam
He Attained Exaltation By His Perfection
He Dispelled Darkness By His Beauty
Beauteous Are All His Qualities
Benediction Be Upon Him And His Family
0

#27 User is offline   caffienetime 

  • Senior Member
  • View blog
  • Group: Members
  • Posts: 4,209
  • Joined: 24-November 07

Posted 02 August 2008 - 05:57 PM

i took two years of programming. i love it but i suck at it as well.
0

#28 User is offline   meraj 

  • Administrator
  • Group: Administrators
  • Posts: 1,999
  • Joined: 14-September 99

Posted 02 August 2008 - 11:57 PM

as salaamu alaikum,

Rida said:

That worked perfectly bro! jazakAllah khair!
Is there any way to do it without out the line break tag as well?


again, there are different ways to do it, but here's one:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Sample Code</title>
<style type="text/css">
<!--
wrapper {
 clear:both;
}
.label1 {
 margin: 4px 10px 0px 0px;
 float: left;
 font: bold 12px tahoma, sans-serif;
}
form {
 margin:0px;
 padding:0px;
}
.item {
 margin: 0px 4px 0px 0px;
 float: left;
 font: normal 9px arial, sans-serif;
}
.item span {
 display: block;
}
.textbox {
 display: block;
}
-->
</style>
</head>
<body>
<div class="wrapper">
<form action="">
<div class="label1">Name</div>
<div class="item"><input type="text" name="firstname" class="textbox" /><span>First</span></div>
<div class="item"><input type="text" name="lastname" class="textbox" /><span>Last</span></div>
</form>
</div>
</body>
</html>

Posted Image
Please read the rules before posting! If you need help, please ask :)
0

#29 User is offline   Rida 

  • mmmm cookies!
  • View blog
  • Group: Members
  • Posts: 3,090
  • Joined: 22-December 06

Posted 05 August 2008 - 07:59 PM

works perfectly thanks! :roar:

Wassalaam
He Attained Exaltation By His Perfection
He Dispelled Darkness By His Beauty
Beauteous Are All His Qualities
Benediction Be Upon Him And His Family
0

#30 User is offline   pterygopalatine 

  • Senior Member
  • Group: Members
  • Posts: 721
  • Joined: 09-July 08

Posted 25 August 2008 - 07:25 PM

I've been studying a tutorial explaining how to put together a simple javascript image gallery, and I've run into some trouble. Mind you, my knowledge of html/css/javascript is very limited, I'm a complete noob.

Here's the tutorial:
Simple unobtrusive Javascript Gallery/Slide show : ed everett

Here's something I put together really quickly:
Test

I want to know how I can customize what I have. I want to be able to add captions, I want to re-position the "Next" and "Previous" links, and maybe even style it a bit further with backgrounds and borders, etc. How can I go about doing those things? Any help is appreciated!
0

#31 User is offline   sixpakistan 

  • Senior Member
  • Group: Members
  • Posts: 3,430
  • Joined: 04-May 04

Posted 25 August 2008 - 07:59 PM

I wrote this over 3 years ago specifically for usage on Islamica (yes, I have no life)

I always meant to get around to CGI-fying it, but never bothered. As long as there's a thread for web developers, I figured I'd throw it up here in case someone was interested in doing that and making it available for public usage.

Also, looking at it, I notice there's an assumption of two nicks which could potentially cause a COLOR bug with one nick. So you may want to fix that as well.

#!/bin/sh
if [ $# -lt 1 ] ; then
echo "usage: `basename $0` <filename>"
exit 0
fi
head -1 $1 >/tmp/.blah.$$
if grep ' says:$' /tmp/.blah.$$ ; then
rm /tmp/.blah.$$
NICK1=`grep says: $1 | cut -d" " -f1 | uniq | head -2 | head -1`
NICK2=`grep says: $1 | cut -d" " -f1 | uniq | head -2 | tail -1`
cat $1 | sed 's/ says//g' | sed "s/^$NICK1/$NICK1/g" | sed "s/^$NICK2/$NICK2/g" | sed 's/$/~/g' | sed 's/:~/:/g' | tr 'n' ' ' | tr '~' 'n' |sed 's/:/:/g' | sed 's/$//g' | sed 's/^ //g'
exit 0
fi
rm /tmp/.blah.$$
NICK1=`cat $1 | cut -d":" -f1 | uniq | head -2 | head -1`
NICK2=`cat $1 | cut -d":" -f1 | uniq | head -2 | tail -1`
cat $1 | sed "s/^$NICK1/[COLOR=Red]$NICK1/g" | sed "s/^$NICK2/[COLOR=Blue]$NICK2/g" | sed 's/:/
:/g' | sed 's/$//g'
exit 0
1

#32 User is offline   dreamdeferred 

  • Striving for Ø§Ø Ø³Ø§Ù†
  • Group: Members
  • Posts: 2,335
  • Joined: 18-June 08

Posted 25 August 2008 - 08:18 PM

sixpakistan said:

I wrote this over 3 years ago specifically for usage on Islamica (yes, I have no life)

I always meant to get around to CGI-fying it, but never bothered. As long as there's a thread for web developers, I figured I'd throw it up here in case someone was interested in doing that and making it available for public usage.

Also, looking at it, I notice there's an assumption of two nicks which would probably cause a COLOR bug. So you may want to fix that as well.

#!/bin/sh
if [ $# -lt 1 ] ; then
echo "usage: `basename $0` <filename>"
exit 0
fi
head -1 $1 >/tmp/.blah.$$
if grep ' says:$' /tmp/.blah.$$ ; then
rm /tmp/.blah.$$
NICK1=`grep says: $1 | cut -d" " -f1 | uniq | head -2 | head -1`
NICK2=`grep says: $1 | cut -d" " -f1 | uniq | head -2 | tail -1`
cat $1 | sed 's/ says//g' | sed "s/^$NICK1/$NICK1/g" | sed "s/^$NICK2/$NICK2/g" | sed 's/$/~/g' | sed 's/:~/:/g' | tr 'n' ' ' | tr '~' 'n' |sed 's/:/:/g' | sed 's/$//g' | sed 's/^ //g'
exit 0
fi
rm /tmp/.blah.$$
NICK1=`cat $1 | cut -d":" -f1 | uniq | head -2 | head -1`
NICK2=`cat $1 | cut -d":" -f1 | uniq | head -2 | tail -1`
cat $1 | sed "s/^$NICK1/[color=Red]$NICK1/g" | sed "s/^$NICK2/[color=Blue]$NICK2/g" | sed 's/:/
:/g' | sed 's/$//g'
exit 0


WHAT THE HELL is this bro? :(

Is it dangerous?

I'm terrified right now.
Modern life. Where are we running? Sometimes what we
want is not always where we are.
Are we alone? Is the real winter inside our hearts? We are all struggling for definition in a world that resists our inquiries.
-Tom Haverford
:lol::faint:
0

#33 User is offline   sixpakistan 

  • Senior Member
  • Group: Members
  • Posts: 3,430
  • Joined: 04-May 04

Posted 25 August 2008 - 08:31 PM

dreamdeferred said:

WHAT THE HELL is this bro? :(

Is it dangerous?

I'm terrified right now.


It's Bourne shell. :o It takes an AIM or MSN conversation and formats it so it's all pretty and friendly for Islamica posting.

It takes a conversation that looks like this:

DaFooz02: we're having a blizzard :-(
genius pants: that's like 1000 calories! >:faint: should've gotten frozen yogurt instead
DaFooz02: um
DaFooz02: NO DUMBASS
DaFooz02: WE'RE SERIOUSLY HAVING A BLIZZARD
genius pants: i know, should've gotten frozen yogurt
genius pants: how many people are splitting it?
DaFooz02: are you an idiot
DaFooz02: i'm at home
DaFooz02: in bed
DaFooz02: and it is snowing outside
genius pants: who's eating the blizzard with you in bed =-O
DaFooz02: no one is eating anyhting
genius pants: why are you eating a blizzard when it's so cold out
genius pants: did you finish it already?
DaFooz02: i hate you

and gives you this:

DaFooz02: we're having a blizzard :-(
genius pants: that's like 1000 calories! >:faint: should've gotten frozen yogurt instead
DaFooz02: um
DaFooz02: NO DUMBASS
DaFooz02: WE'RE SERIOUSLY HAVING A BLIZZARD
genius pants: i know, should've gotten frozen yogurt
genius pants: how many people are splitting it?
DaFooz02: are you an idiot
DaFooz02: i'm at home
DaFooz02: in bed
DaFooz02: and it is snowing outside
genius pants: who's eating the blizzard with you in bed =-O
DaFooz02: no one is eating anyhting
genius pants: why are you eating a blizzard when it's so cold out
genius pants: did you finish it already?
DaFooz02: i hate you

there's a pretty easily fixable bug when it comes to handling/parsing emoticons in text. i think it should probably do translation of aim/msn emoticons to islamica emoticons also (i tend to do this via commandline anyway)
0

#34 User is offline   dreamdeferred 

  • Striving for Ø§Ø Ø³Ø§Ù†
  • Group: Members
  • Posts: 2,335
  • Joined: 18-June 08

Posted 25 August 2008 - 08:35 PM

Damn...........that's gangster. Does it make breakfast?
Modern life. Where are we running? Sometimes what we
want is not always where we are.
Are we alone? Is the real winter inside our hearts? We are all struggling for definition in a world that resists our inquiries.
-Tom Haverford
:lol::faint:
1

#35 User is offline   caffienetime 

  • Senior Member
  • View blog
  • Group: Members
  • Posts: 4,209
  • Joined: 24-November 07

Posted 25 August 2008 - 08:39 PM

sixpakistan said:

It's Bourne shell. :o It takes an AIM or MSN conversation and formats it so it's all pretty and friendly for Islamica posting.

It takes a conversation that looks like this:

DaFooz02: we're having a blizzard :-(
genius pants: that's like 1000 calories! >:faint: should've gotten frozen yogurt instead
DaFooz02: um
DaFooz02: NO DUMBASS
DaFooz02: WE'RE SERIOUSLY HAVING A BLIZZARD
genius pants: i know, should've gotten frozen yogurt
genius pants: how many people are splitting it?
DaFooz02: are you an idiot
DaFooz02: i'm at home
DaFooz02: in bed
DaFooz02: and it is snowing outside
genius pants: who's eating the blizzard with you in bed =-O
DaFooz02: no one is eating anyhting
genius pants: why are you eating a blizzard when it's so cold out
genius pants: did you finish it already?
DaFooz02: i hate you

and gives you this:

DaFooz02: we're having a blizzard :-(
genius pants: that's like 1000 calories! >:faint: should've gotten frozen yogurt instead
DaFooz02: um
DaFooz02: NO DUMBASS
DaFooz02: WE'RE SERIOUSLY HAVING A BLIZZARD
genius pants: i know, should've gotten frozen yogurt
genius pants: how many people are splitting it?
DaFooz02: are you an idiot
DaFooz02: i'm at home
DaFooz02: in bed
DaFooz02: and it is snowing outside
genius pants: who's eating the blizzard with you in bed =-O
DaFooz02: no one is eating anyhting
genius pants: why are you eating a blizzard when it's so cold out
genius pants: did you finish it already?
DaFooz02: i hate you

there's a pretty easily fixable bug when it comes to handling/parsing emoticons in text. i think it should probably do translation of aim/msn emoticons to islamica emoticons also (i tend to do this via commandline anyway)


hahahaah thats an hilarious convo. you are such an idiot. :(
0

#36 User is offline   sixpakistan 

  • Senior Member
  • Group: Members
  • Posts: 3,430
  • Joined: 04-May 04

Posted 26 August 2008 - 06:21 AM

dreamdeferred said:

Damn...........that's gangster. Does it make breakfast?


Word. I think maybe we could add something on so it could?

caffienetime said:

hahahaah thats an hilarious convo. you are such an idiot. :faint:


Thanks (I think)

So, noone wants to CGI-ize it? *looks at meraj*
2

#37 User is offline   pterygopalatine 

  • Senior Member
  • Group: Members
  • Posts: 721
  • Joined: 09-July 08

Posted 26 August 2008 - 12:38 PM

What does it mean to CGI-ize it?
0

#38 User is offline   sixpakistan 

  • Senior Member
  • Group: Members
  • Posts: 3,430
  • Joined: 04-May 04

Posted 26 August 2008 - 12:42 PM

ssalmanj said:

What does it mean to CGI-ize it?


make it into a CGI program.. so someone could go to

http://www.islamicaw...s/convert-convo or whatever, paste their convo into a textbox, and get back formatted text

edit: it does MSN convos as well, in case that wasn't clear
4

#39 User is offline   fahmed 

  • Senior Member
  • Group: Members
  • Posts: 119
  • Joined: 14-August 07

Posted 26 August 2008 - 03:40 PM

sixpakistan said:

So, noone wants to CGI-ize it? *looks at meraj*


How abt a quick javascript ?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<META name="GENERATOR" content="IBM WebSphere Studio">
<TITLE>test.html</TITLE>
<script type="text/javascript">
<!--
function convert() {
var lines;
var TA=document.form1.ta.value;
var out="";
var color="";
if(document.all) { // IE
lines=TA.split("rn");
}
else { //Mozilla
lines=TA.split("n");
}
for(var i=0; i<lines.length; i++) {
if(i%2==0){
color="Red";
}else{
color="Blue";
}
var name = lines[i].substr(0, lines[i].indexOf(":"));
var txt = lines[i].substr(lines[i].indexOf(":")+1, lines[i].length);
out = out+"[color="+color+[COLOR=#2a00ff]"]"[/COLOR]+name+[COLOR=#2a00ff]"[/color]"[/COLOR]+[COLOR=#2a00ff]":"[/COLOR]+[COLOR=#2a00ff]""[/COLOR]+txt+[COLOR=#2a00ff]""[/COLOR]+[COLOR=#2a00ff]"n"[/COLOR];
[COLOR=#7f0055]}[/COLOR]
[COLOR=#3f5fbf]//alert(out);[/COLOR]
document.form1.outputtxt.value=out;
}
[COLOR=#3f5fbf]//-->[/COLOR]
[COLOR=#008080]</[/COLOR][COLOR=#3f7f7f]script[/COLOR][COLOR=#008080]>[/COLOR]
[COLOR=#008080]</[/COLOR][COLOR=#3f7f7f]HEAD[/COLOR][COLOR=#008080]>[/COLOR]
[COLOR=#008080]<[/COLOR][COLOR=#3f7f7f]BODY[/COLOR][COLOR=#008080]>[/COLOR]
[COLOR=#008080]<[/COLOR][COLOR=#3f7f7f]form [/COLOR][COLOR=#7f007f]action[/COLOR]=[COLOR=#2a00ff]"#" [/COLOR][COLOR=#7f007f]name[/COLOR]=[COLOR=#2a00ff]"form1"[/COLOR][COLOR=#008080]>[/COLOR]
[COLOR=#008080]<[/COLOR][COLOR=#3f7f7f]P[/COLOR][COLOR=#008080]>[/COLOR]Put convo here : [COLOR=#008080]<[/COLOR][COLOR=#3f7f7f]TEXTAREA [/COLOR][COLOR=#7f007f]rows[/COLOR]=[COLOR=#2a00ff]"20" [/COLOR][COLOR=#7f007f]cols[/COLOR]=[COLOR=#2a00ff]"50" [/COLOR][COLOR=#7f007f]name[/COLOR]=[COLOR=#2a00ff]"ta"[/COLOR][COLOR=#008080]></[/COLOR][COLOR=#3f7f7f]TEXTAREA[/COLOR][COLOR=#008080]></[/COLOR][COLOR=#3f7f7f]P[/COLOR][COLOR=#008080]>[/COLOR]
[COLOR=#008080]<[/COLOR][COLOR=#3f7f7f]button [/COLOR][COLOR=#7f007f]type[/COLOR]=[COLOR=#2a00ff]"button" [/COLOR][COLOR=#7f007f]onclick[/COLOR]=[COLOR=#2a00ff]"return convert();"[/COLOR][COLOR=#008080]>[/COLOR]convert[COLOR=#008080]</[/COLOR][COLOR=#3f7f7f]button[/COLOR][COLOR=#008080]>[/COLOR]
[COLOR=#008080]<[/COLOR][COLOR=#3f7f7f]br[/COLOR][COLOR=#008080]>[/COLOR]
[COLOR=#008080]<[/COLOR][COLOR=#3f7f7f]p[/COLOR][COLOR=#008080]><[/COLOR][COLOR=#3f7f7f]textarea [/COLOR][COLOR=#7f007f]rows[/COLOR]=[COLOR=#2a00ff]"20" [/COLOR][COLOR=#7f007f]cols[/COLOR]=[COLOR=#2a00ff]"50" [/COLOR][COLOR=#7f007f]name[/COLOR]=[COLOR=#2a00ff]"outputtxt"[/COLOR][COLOR=#008080]></[/COLOR][COLOR=#3f7f7f]textarea[/COLOR][COLOR=#008080]></[/COLOR][COLOR=#3f7f7f]p[/COLOR][COLOR=#008080]>[/COLOR]
[COLOR=#008080]</[/COLOR][COLOR=#3f7f7f]form[/COLOR][COLOR=#008080]>[/COLOR]
[COLOR=#008080]</[/COLOR][COLOR=#3f7f7f]BODY[/COLOR][COLOR=#008080]>[/COLOR]
[COLOR=#008080]</[/COLOR][COLOR=#3f7f7f]HTML[/COLOR][COLOR=#008080]>[/COLOR]

[COLOR=#008080]--------------[/COLOR]
[COLOR=#008080]Just put the above code in a html file and try.[/COLOR]
0

#40 User is offline   sixpakistan 

  • Senior Member
  • Group: Members
  • Posts: 3,430
  • Joined: 04-May 04

Posted 26 August 2008 - 04:25 PM

fahmed said:

How abt a quick javascript ?

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<META name="GENERATOR" content="IBM WebSphere Studio">
<TITLE>test.html</TITLE>
<script type="text/javascript">
<!--
function convert() {
var lines;
var TA=document.form1.ta.value;
var TAout="";
var out="";
var color="";
if(document.all) { // IE
lines=TA.split("rn");
}
else { //Mozilla
lines=TA.split("n");
}
for(var i=0; i<lines.length; i++) {
if(i%2==0){
color="Red";
}else{
color="Blue";
}
var name = lines[i].substr(0, lines[i].indexOf(":"));
var txt = lines[i].substr(lines[i].indexOf(":")+1, lines[i].length);
out = out+"[color="+color+[COLOR=#2a00ff]"]"[/COLOR]+name+[COLOR=#2a00ff]"[/color]"[/COLOR]+[COLOR=#2a00ff]":"[/COLOR]+[COLOR=#2a00ff]""[/COLOR]+txt+[COLOR=#2a00ff]""[/COLOR]+[COLOR=#2a00ff]"n"[/COLOR];
[COLOR=#7f0055]}[/COLOR]
[COLOR=#3f5fbf]//alert(out);[/COLOR]
document.form1.outputtxt.value=out;
}
[COLOR=#3f5fbf]//-->[/COLOR]
[COLOR=#008080]</[/COLOR][COLOR=#3f7f7f]script[/COLOR][COLOR=#008080]>[/COLOR]
[COLOR=#008080]</[/COLOR][COLOR=#3f7f7f]script[/COLOR][COLOR=#008080]>[/COLOR]
[COLOR=#008080]</[/COLOR][COLOR=#3f7f7f]HEAD[/COLOR][COLOR=#008080]>[/COLOR]
[COLOR=#008080]<[/COLOR][COLOR=#3f7f7f]BODY[/COLOR][COLOR=#008080]>[/COLOR]
[COLOR=#008080]<[/COLOR][COLOR=#3f7f7f]form [/COLOR][COLOR=#7f007f]action[/COLOR]=[COLOR=#2a00ff]"#" [/COLOR][COLOR=#7f007f]name[/COLOR]=[COLOR=#2a00ff]"form1"[/COLOR][COLOR=#008080]>[/COLOR]
[COLOR=#008080]<[/COLOR][COLOR=#3f7f7f]P[/COLOR][COLOR=#008080]>[/COLOR]Put convo here : [COLOR=#008080]<[/COLOR][COLOR=#3f7f7f]TEXTAREA [/COLOR][COLOR=#7f007f]rows[/COLOR]=[COLOR=#2a00ff]"20" [/COLOR][COLOR=#7f007f]cols[/COLOR]=[COLOR=#2a00ff]"50" [/COLOR][COLOR=#7f007f]name[/COLOR]=[COLOR=#2a00ff]"ta"[/COLOR][COLOR=#008080]></[/COLOR][COLOR=#3f7f7f]TEXTAREA[/COLOR][COLOR=#008080]></[/COLOR][COLOR=#3f7f7f]P[/COLOR][COLOR=#008080]>[/COLOR]
[COLOR=#008080]<[/COLOR][COLOR=#3f7f7f]button [/COLOR][COLOR=#7f007f]type[/COLOR]=[COLOR=#2a00ff]"button" [/COLOR][COLOR=#7f007f]onclick[/COLOR]=[COLOR=#2a00ff]"return convert();"[/COLOR][COLOR=#008080]>[/COLOR]convert[COLOR=#008080]</[/COLOR][COLOR=#3f7f7f]button[/COLOR][COLOR=#008080]>[/COLOR]
[COLOR=#008080]<[/COLOR][COLOR=#3f7f7f]br[/COLOR][COLOR=#008080]>[/COLOR]
[COLOR=#008080]<[/COLOR][COLOR=#3f7f7f]p[/COLOR][COLOR=#008080]><[/COLOR][COLOR=#3f7f7f]textarea [/COLOR][COLOR=#7f007f]rows[/COLOR]=[COLOR=#2a00ff]"20" [/COLOR][COLOR=#7f007f]cols[/COLOR]=[COLOR=#2a00ff]"50" [/COLOR][COLOR=#7f007f]name[/COLOR]=[COLOR=#2a00ff]"outputtxt"[/COLOR][COLOR=#008080]></[/COLOR][COLOR=#3f7f7f]textarea[/COLOR][COLOR=#008080]></[/COLOR][COLOR=#3f7f7f]p[/COLOR][COLOR=#008080]>[/COLOR]
[COLOR=#008080]</[/COLOR][COLOR=#3f7f7f]form[/COLOR][COLOR=#008080]>[/COLOR]
[COLOR=#008080]</[/COLOR][COLOR=#3f7f7f]BODY[/COLOR][COLOR=#008080]>[/COLOR]
[COLOR=#008080]</[/COLOR][COLOR=#3f7f7f]HTML[/COLOR][COLOR=#008080]>[/COLOR]

[COLOR=#008080]--------------[/COLOR]
[COLOR=#008080]Just put the above code in a html file and try.[/COLOR]


Excellent. You are the man. Now just make it work for MSN convos as well. :look:
0

Share this topic:


  • (5 Pages)
  • +
  • 1
  • 2
  • 3
  • 4
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users