ASP Free Lounge
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsOtherASP Free Lounge

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
  #16  
Old September 16th, 2005, 09:58 AM
Shadow Wizard's Avatar
Shadow Wizard Shadow Wizard is offline
Moderator From Beyond
ASP Free God 46th Plane (27500 - 27999 posts)
 
Join Date: Sep 2004
Location: Israel
Posts: 27,932 Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)  Folding Points: 391471 Folding Title: Super Ultimate Folder - Level 1Folding Points: 391471 Folding Title: Super Ultimate Folder - Level 1Folding Points: 391471 Folding Title: Super Ultimate Folder - Level 1Folding Points: 391471 Folding Title: Super Ultimate Folder - Level 1Folding Points: 391471 Folding Title: Super Ultimate Folder - Level 1Folding Points: 391471 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 3 Months 2 Weeks 12 h 17 m 53 sec
Reputation Power: 2002
CONGRATULATIONS
Dragon Rider
and HAPPY BIRTHDAY!!!
(this was created using this code:
Code:
<html>
<head>
<title>Colorful Text Generator</title>
<script type="text/javascript">
function MakeRandom(objForm)
{
	var strText=objForm.elements["text"].value;
	var strRandom="";
	for (var i=0; i<strText.length; i++)
	{
		strRandom += "[Color="+GetRandomColor()+"]"+strText.charAt(i)+"[/Color]";
	}
	objForm.elements["result"].value = strRandom;
	PutPreview(strRandom);
	return false;
}

function PutPreview(strText)
{
	var strHtml=strText;
	strHtml = strHtml.replace(/\[Color=/g, "<span style=\"color: ");
	strHtml = strHtml.replace(/\[\/Color\]/g, "</span>");
	strHtml = strHtml.replace(/\]/g, ";\">");
	document.getElementById("Preview").innerHTML = strHtml;
}

function GetRandomColor()
{
	var R=GetRandom(0, 256);
	var G=GetRandom(0, 256);
	var B=GetRandom(0, 256);
	R = IntToHex(R);
	G = IntToHex(G);
	B = IntToHex(B);
	return "#"+R+G+B;
}

function IntToHex(num)
{
	if (num < 0)
		return "-"+(-1*num);
	if (num < 10)
		return num;
	switch (num)
	{
		case 10:
			return "a";
		case 11:
			return "b";
		case 12:
			return "c";
		case 13:
			return "d";
		case 14:
			return "e";
		case 15:
			return "f";
	}
	return IntToHex(parseInt(num/16))+IntToHex(num % 16);
}

function GetRandom(min, max)
{
	return parseInt(Math.random()*(max-min)+min);
}
</script>
</head>
<body>
<form onsubmit="return MakeRandom(this);">
Text: <input type="text" name="text" /><br />
Result: <input type="text" name="result" readonly="readonly" />&nbsp;&nbsp;&nbsp;&nbsp;<span id="Preview" style="font-weight: bold;"></span><br />
<button type="submit">Put Colors!</button>
</form>
</body>
</html>


)
Comments on this post
elijathegold agrees: And you say I have too much free time
Dragon Rider agrees: WOW! What a great gift! I owe you some wizi!
RadioactiveFrog agrees: Very Posh SW!! But you do have too much time !!
leuvenaar agrees: cooooooooooolllllllllll

Reply With Quote
  #17  
Old September 18th, 2005, 07:06 AM
micky's Avatar
micky micky is offline
Couch Potato Wizard
Click here for more information. Click here for more information
 
Join Date: Jan 2005
Location: India
Posts: 11,183 micky User rank is General 14th Grade (Above 100000 Reputation Level)micky User rank is General 14th Grade (Above 100000 Reputation Level)micky User rank is General 14th Grade (Above 100000 Reputation Level)micky User rank is General 14th Grade (Above 100000 Reputation Level)micky User rank is General 14th Grade (Above 100000 Reputation Level)micky User rank is General 14th Grade (Above 100000 Reputation Level)micky User rank is General 14th Grade (Above 100000 Reputation Level)micky User rank is General 14th Grade (Above 100000 Reputation Level)micky User rank is General 14th Grade (Above 100000 Reputation Level)micky User rank is General 14th Grade (Above 100000 Reputation Level)micky User rank is General 14th Grade (Above 100000 Reputation Level)micky User rank is General 14th Grade (Above 100000 Reputation Level)micky User rank is General 14th Grade (Above 100000 Reputation Level)micky User rank is General 14th Grade (Above 100000 Reputation Level)micky User rank is General 14th Grade (Above 100000 Reputation Level)micky User rank is General 14th Grade (Above 100000 Reputation Level)  Folding Points: 1480 Folding Title: Novice Folder
Time spent in forums: 4 Months 1 Week 5 Days 6 h 1 m 6 sec
Reputation Power: 1892
Quote:
Originally Posted by Dragon Rider
Oh! Thank you mesie!

whos mesie???
__________________
Laziness is my religion and Sunday is my God

Get the Mantra!

Reply With Quote
  #18  
Old September 18th, 2005, 09:02 AM
Dragon Rider's Avatar
Dragon Rider Dragon Rider is offline
off-topic trolless
ASP Free Loyal (3000 - 3499 posts)
 
Join Date: Jun 2005
Posts: 3,126 Dragon Rider User rank is Captain (20000 - 30000 Reputation Level)Dragon Rider User rank is Captain (20000 - 30000 Reputation Level)Dragon Rider User rank is Captain (20000 - 30000 Reputation Level)Dragon Rider User rank is Captain (20000 - 30000 Reputation Level)Dragon Rider User rank is Captain (20000 - 30000 Reputation Level)Dragon Rider User rank is Captain (20000 - 30000 Reputation Level)Dragon Rider User rank is Captain (20000 - 30000 Reputation Level)Dragon Rider User rank is Captain (20000 - 30000 Reputation Level)Dragon Rider User rank is Captain (20000 - 30000 Reputation Level) 
Time spent in forums: 1 Month 10 h 52 m 50 sec
Reputation Power: 265
Quote:
Originally Posted by micky
whos mesie???

Do you prefer "senior"?
__________________
I'm smarter in my mother tongue.

Reply With Quote
  #19  
Old September 19th, 2005, 06:37 PM
Shadow Wizard's Avatar
Shadow Wizard Shadow Wizard is offline
Moderator From Beyond
ASP Free God 46th Plane (27500 - 27999 posts)
 
Join Date: Sep 2004
Location: Israel
Posts: 27,932 Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)  Folding Points: 391471 Folding Title: Super Ultimate Folder - Level 1Folding Points: 391471 Folding Title: Super Ultimate Folder - Level 1Folding Points: 391471 Folding Title: Super Ultimate Folder - Level 1Folding Points: 391471 Folding Title: Super Ultimate Folder - Level 1Folding Points: 391471 Folding Title: Super Ultimate Folder - Level 1Folding Points: 391471 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 3 Months 2 Weeks 12 h 17 m 53 sec
Reputation Power: 2002
Quote:
Comments on this post
elijathegold agrees: And you say I have too much free time
Dragon Rider agrees: WOW! What a great gift! I owe you some wizi!
RadioactiveFrog agrees: Very Posh SW!! But you do have too much time !!
leuvenaar agrees: cooooooooooolllllllllll

wow that's lots of points for little script... feel free to use it yourself, everyone!

Reply With Quote
  #20  
Old September 19th, 2005, 06:57 PM
RadioactiveFrog's Avatar
RadioactiveFrog RadioactiveFrog is offline
Senior Glowing Wizard
ASP Free God 7th Plane (8000 - 8499 posts)
 
Join Date: May 2005
Location: Sussex
Posts: 8,223 RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)  Folding Points: 160711 Folding Title: Super Ultimate Folder - Level 1Folding Points: 160711 Folding Title: Super Ultimate Folder - Level 1Folding Points: 160711 Folding Title: Super Ultimate Folder - Level 1Folding Points: 160711 Folding Title: Super Ultimate Folder - Level 1Folding Points: 160711 Folding Title: Super Ultimate Folder - Level 1Folding Points: 160711 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 3 Weeks 4 Days 3 h 46 m 30 sec
Reputation Power: 326
Send a message via MSN to RadioactiveFrog
Facebook
Quote:
Originally Posted by Shadow Wizard
wow that's lots of points for little script... feel free to use it yourself, everyone!

Thanks Shadow, i have hosted it here to make it really easy for people

Reply With Quote
  #21  
Old September 19th, 2005, 06:58 PM
RadioactiveFrog's Avatar
RadioactiveFrog RadioactiveFrog is offline
Senior Glowing Wizard
ASP Free God 7th Plane (8000 - 8499 posts)
 
Join Date: May 2005
Location: Sussex
Posts: 8,223 RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)  Folding Points: 160711 Folding Title: Super Ultimate Folder - Level 1Folding Points: 160711 Folding Title: Super Ultimate Folder - Level 1Folding Points: 160711 Folding Title: Super Ultimate Folder - Level 1Folding Points: 160711 Folding Title: Super Ultimate Folder - Level 1Folding Points: 160711 Folding Title: Super Ultimate Folder - Level 1Folding Points: 160711 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 3 Weeks 4 Days 3 h 46 m 30 sec
Reputation Power: 326
Send a message via MSN to RadioactiveFrog
Facebook
nowwecanallhavecolourfulpoststhankstoshadow!!

Reply With Quote
  #22  
Old September 19th, 2005, 07:04 PM
gecko36 gecko36 is offline
Contributing User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Aug 2005
Location: Where I sleep
Posts: 207 gecko36 User rank is Private First Class (20 - 50 Reputation Level)gecko36 User rank is Private First Class (20 - 50 Reputation Level) 
Time spent in forums: 1 Day 22 h 10 m 25 sec
Reputation Power: 4
Send a message via ICQ to gecko36
Froggie, can you make the background of that web page darker so that it's easier to read the text that'd be Gr0o0o0o0o0o0o0ovy

Reply With Quote
  #23  
Old September 19th, 2005, 07:10 PM
Shadow Wizard's Avatar
Shadow Wizard Shadow Wizard is offline
Moderator From Beyond
ASP Free God 46th Plane (27500 - 27999 posts)
 
Join Date: Sep 2004
Location: Israel
Posts: 27,932 Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 15th Grade (Above 100000 Reputation Level)  Folding Points: 391471 Folding Title: Super Ultimate Folder - Level 1Folding Points: 391471 Folding Title: Super Ultimate Folder - Level 1Folding Points: 391471 Folding Title: Super Ultimate Folder - Level 1Folding Points: 391471 Folding Title: Super Ultimate Folder - Level 1Folding Points: 391471 Folding Title: Super Ultimate Folder - Level 1Folding Points: 391471 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 3 Months 2 Weeks 12 h 17 m 53 sec
Reputation Power: 2002
Quote:
Originally Posted by Me
HelloWorld!

hmm...
1. blank space bug - the code also add color tags to blank spaces, it should not do that.
2. challenge: add code that auto-select all the text in the Result box once it get focus. easier to Copy and Paste this way....
3. challenge2: add textbox to define the size... this will add [Size=x] tag around the whole Result.
(12 points for each challenge)

thanks for hosting!

Last edited by Shadow Wizard : September 19th, 2005 at 07:13 PM. Reason: another challenge

Reply With Quote
  #24  
Old September 19th, 2005, 07:33 PM
markisdee's Avatar
markisdee markisdee is offline
on a diet
ASP Free Newbie (0 - 499 posts)
 
Join Date: May 2005
Posts: 178 markisdee User rank is Lance Corporal (50 - 100 Reputation Level)markisdee User rank is Lance Corporal (50 - 100 Reputation Level)markisdee User rank is Lance Corporal (50 - 100 Reputation Level) 
Time spent in forums: 2 Days 4 h 4 m 49 sec
Reputation Power: 4
Send a message via AIM to markisdee
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title>Colorful Text Generator</title>
<script type="text/javascript">
function MakeRandom(objForm)
{
	var strText=objForm.elements["text"].value;
	var strRandom="";
	for (var i=0; i<strText.length; i++)
	{
		if (strText.charAt(i)==' '){strRandom +=' '}
		else {strRandom += "[Color="+GetRandomColor()+"]"+strText.charAt(i)+"[/Color]";}
	}
	objForm.elements["result"].value = '[size=' + objForm.elements["size"].value + ']' + strRandom + '[/size]';
	PutPreview(strRandom);
	return false;
}

function PutPreview(strText)
{
	var strHtml=strText;
	strHtml = strHtml.replace(/\[Color=/g, "<span style=\"color: ");
	strHtml = strHtml.replace(/\[\/Color\]/g, "</span>");
	strHtml = strHtml.replace(/\]/g, ";\">");
	document.getElementById("Preview").innerHTML = strHtml;
}

function GetRandomColor()
{
	var R=GetRandom(0, 256);
	var G=GetRandom(0, 256);
	var B=GetRandom(0, 256);
	R = IntToHex(R);
	G = IntToHex(G);
	B = IntToHex(B);
	return "#"+R+G+B;
}

function IntToHex(num)
{
	if (num < 0)
		return "-"+(-1*num);
	if (num < 10)
		return num;
	switch (num)
	{
		case 10:
			return "a";
		case 11:
			return "b";
		case 12:
			return "c";
		case 13:
			return "d";
		case 14:
			return "e";
		case 15:
			return "f";
	}
	return IntToHex(parseInt(num/16))+IntToHex(num % 16);
}

function GetRandom(min, max)
{
	return parseInt(Math.random()*(max-min)+min);
}
</script>
</head>
<body>
<form onsubmit="return MakeRandom(this);" action=".">
<p>
Text: <textarea name="text"></textarea><br />
Size: <input type="text" name="size" size="1" value="3" /><br />
Result: <textarea name="result" readonly="readonly" onfocus="this.select();"></textarea>&nbsp;&nbsp;&nbsp;&nbsp;<span 

id="Preview" style="font-weight: bold;"></span><br />
<button type="submit">Put Colors!</button>
</p>
</form>
</body>
</html>
Done.

[edit]Highlighted changes[/edit]

[edit again]Made into textareas for multiple-line copy and paste.
Comments on this post
Shadow Wizard agrees: this is given for the 1st challange...

Last edited by markisdee : September 19th, 2005 at 07:41 PM.

Reply With Quote
  #25  
Old September 20th, 2005, 02:55 AM
RadioactiveFrog's Avatar
RadioactiveFrog RadioactiveFrog is offline
Senior Glowing Wizard
ASP Free God 7th Plane (8000 - 8499 posts)
 
Join Date: May 2005
Location: Sussex
Posts: 8,223 RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)RadioactiveFrog User rank is Major (30000 - 40000 Reputation Level)  Folding Points: 160711 Folding Title: Super Ultimate Folder - Level 1Folding Points: 160711 Folding Title: Super Ultimate Folder - Level 1Folding Points: 160711 Folding Title: Super Ultimate Folder - Level 1Folding Points: 160711 Folding Title: Super Ultimate Folder - Level 1Folding Points: 160711 Folding Title: Super Ultimate Folder - Level 1Folding Points: 160711 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 3 Weeks 4 Days 3 h 46 m 30 sec
Reputation Power: 326
Send a message via MSN to RadioactiveFrog
Facebook
Quote:
Originally Posted by gecko36
Froggie, can you make the background of that web page darker so that it's easier to read the text that'd be Gr0o0o0o0o0o0o0ovy
Background made darker hopefully there is not any text that colour i have tested it and there doesn't seem to be any!!

RF