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

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:
  #1  
Old September 27th, 2005, 08:54 AM
elijathegold's Avatar
elijathegold elijathegold is offline
Senior Fire Wizard
Click here for more information
 
Join Date: Feb 2005
Location: Ashford, Kent. England
Posts: 5,651 elijathegold User rank is Captain (20000 - 30000 Reputation Level)elijathegold User rank is Captain (20000 - 30000 Reputation Level)elijathegold User rank is Captain (20000 - 30000 Reputation Level)elijathegold User rank is Captain (20000 - 30000 Reputation Level)elijathegold User rank is Captain (20000 - 30000 Reputation Level)elijathegold User rank is Captain (20000 - 30000 Reputation Level)elijathegold User rank is Captain (20000 - 30000 Reputation Level)elijathegold User rank is Captain (20000 - 30000 Reputation Level)elijathegold User rank is Captain (20000 - 30000 Reputation Level)  Folding Points: 1722506 Folding Title: Super Ultimate Folder - Level 4Folding Points: 1722506 Folding Title: Super Ultimate Folder - Level 4Folding Points: 1722506 Folding Title: Super Ultimate Folder - Level 4Folding Points: 1722506 Folding Title: Super Ultimate Folder - Level 4Folding Points: 1722506 Folding Title: Super Ultimate Folder - Level 4Folding Points: 1722506 Folding Title: Super Ultimate Folder - Level 4Folding Points: 1722506 Folding Title: Super Ultimate Folder - Level 4Folding Points: 1722506 Folding Title: Super Ultimate Folder - Level 4Folding Points: 1722506 Folding Title: Super Ultimate Folder - Level 4
Time spent in forums: 2 Months 2 Weeks 2 Days 4 h 21 m 19 sec
Reputation Power: 301
X-Browser Web Safe Color Picker + Demo

I have decided to post this here in case anyone can
use it


save this code as cw.asp
Code:
 <%
	function createColourCube()
		dim arrWebSafe(5)
		dim strHTML, strHTMLColour
		dim lngRed, lngGreen, lngBlue
		
		arrWebSafe(0) = "00"
		arrWebSafe(1) = "33"
		arrWebSafe(2) = "66"
		arrWebSafe(3) = "99"
		arrWebSafe(4) = "CC"
		arrWebSafe(5) = "FF"
		
		strHTML = "<table style=""padding: 0px; border: 0px;"" cellspacing=""0"">" & vbcrlf
		
		for lngRed = 0 to uBound(arrWebSafe)
			strHTML = strHTML & "<tr>" & vbcrlf
			for lngGreen = 0 to uBound(arrWebSafe)
				for lngBlue = 0 to uBound(arrWebSafe)
					strHTMLColour = arrWebSafe(lngRed) & arrWebSafe(lngGreen) & arrWebSafe(lngBlue)
					strHTML = strHTML & "<td class=""colour"" id=""h" & strHTMLColour & """ style=""width: 5px; height: 5px; cursor: pointer; background-color: #" & strHTMLColour & """ colour=""#" & strHTMLColour & """>&nbsp;</td>" & vbcrlf
				next
			next
			strHTML = strHTML & "</tr>" & vbcrlf
		next
		
		strHTML = strHTML & "</table>" & vbcrlf
		
		createColourCube = strHTML
	end function
	
	function createPreview()

		dim strHTML
		
		strHTML = strHTML & "<table style=""padding: 0px; border: 1px solid black; margin-top: 10px; float: left; text-align: center; ertical-align: middle;"" cellspacing=""0"">" & vbcrlf
		strHTML = strHTML & "<tr>" & vbcrlf
		strHTML = strHTML & "<td id=""preview"" style=""width: 150px; height: 50px;"">&nbsp;</td>" & vbcrlf
		strHTML = strHTML & "</tr>" & vbcrlf
		strHTML = strHTML & "</table>" & vbcrlf
		
		createPreview = strHTML
	end function
%><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
	<head>
		<title>Colour Safe</title>
		<script type="text/javascript" language="ECMAScript">
		
			window.onload=function WindowLoad(event) {
				if (!document.getElementsByTagName) return;
				var csc = document.getElementsByTagName("td");
				for (var i=0; i<csc.length; i++) {
					var cs = csc[i];
					if (cs.className == "colour") {
						cs.onmouseover = doPreview;
						cs.onmouseout = clearPreview;
						cs.onclick = applyValue;
					}
				}
				
				document.getElementById("closeButton").onclick = function() { window.close(); }
			}
			
			function doPreview(event) {
			
			   	//read IE event:
			   	if ((typeof event == "undefined")||(!event))
			   		event = window.event;
			      
			   	//read sender element:
			   	var objSender=event.target||event.srcElement;
			      
			   	//maybe non IE and non standard browser:
			   	if (!objSender)
			   		return false;
			      
			   	//read attributes:
			   	var strValue=objSender.attributes["colour"].value;
			   	
			   	document.getElementById("preview").style.background = strValue;
			   	document.getElementById("preview").innerHTML = strValue;
			}
			
			function clearPreview(event) {
			
			   	//read IE event:
			   	if ((typeof event == "undefined")||(!event))
			   		event = window.event;
			      
			   	//read sender element:
			   	var objSender=event.target||event.srcElement;
			      
			   	//maybe non IE and non standard browser:
			   	if (!objSender)
			   		return false;
			      
			   	document.getElementById("preview").style.background = "#FFFFFF";
			   	document.getElementById("preview").innerHTML = "&nbsp;";
			}
			
			function applyValue(event) {
			
			   	//read IE event:
			   	if ((typeof event == "undefined")||(!event))
			   		event = window.event;
			      
			   	//read sender element:
			   	var objSender=event.target||event.srcElement;
			      
			   	//maybe non IE and non standard browser:
			   	if (!objSender)
			   		return false;
			      
			   	//read attributes:
			   	var strValue=objSender.attributes["colour"].value;
			   	
			   	window.opener.setColour(strValue);
			   	window.close();
			}
		</script>
	</head>
	<body style="margin: 0px;">
		<div style="width: 240px;">
			<%= createColourCube() %>
			<%= createPreview() %>
				<button id="closeButton" style="float: right; margin-top: 10px; height: 50px;">Close</button><br />
		</div>
	</body>
</html>
 


Save this as test.html and open it in the browser
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
<html>
<head>
	<title>New document</title>
	<script type="text/javascript" language="ECMAScript">
		function setColour(theColour) {
			document.body.style.background = theColour;
			alert(theColour);
		}
		
		function doColour() {
			window.open("cw.asp","cw","width=240,height=200");
		}
	</script>
</head>

<body>
<a href="javascript: doColour();">Go on then</a>


</body>
</html>
__________________
And he picked it all up... in his pick-up.





Friends of Shemzilla

Reply With Quote
  #2  
Old September 27th, 2005, 09:13 AM
nofriends's Avatar
nofriends nofriends is offline
Senior Water Wizard
ASP Free God 11th Plane (10000 - 10499 posts)
 
Join Date: Aug 2004
Location: Cape Town, RSA
Posts: 10,186 nofriends User rank is Brigadier General (60000 - 70000 Reputation Level)nofriends User rank is Brigadier General (60000 - 70000 Reputation Level)nofriends User rank is Brigadier General (60000 - 70000 Reputation Level)nofriends User rank is Brigadier General (60000 - 70000 Reputation Level)nofriends User rank is Brigadier General (60000 - 70000 Reputation Level)nofriends User rank is Brigadier General (60000 - 70000 Reputation Level)nofriends User rank is Brigadier General (60000 - 70000 Reputation Level)nofriends User rank is Brigadier General (60000 - 70000 Reputation Level)nofriends User rank is Brigadier General (60000 - 70000 Reputation Level)nofriends User rank is Brigadier General (60000 - 70000 Reputation Level)nofriends User rank is Brigadier General (60000 - 70000 Reputation Level)nofriends User rank is Brigadier General (60000 - 70000 Reputation Level)nofriends User rank is Brigadier General (60000 - 70000 Reputation Level)  Folding Points: 107805 Folding Title: Super Ultimate Folder - Level 1Folding Points: 107805 Folding Title: Super Ultimate Folder - Level 1Folding Points: 107805 Folding Title: Super Ultimate Folder - Level 1Folding Points: 107805 Folding Title: Super Ultimate Folder - Level 1Folding Points: 107805 Folding Title: Super Ultimate Folder - Level 1Folding Points: 107805 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 3 Months 2 Weeks 2 Days 7 h 36 m 24 sec
Reputation Power: 699
nice

did you write it yourself?
__________________
Look! Its a ShemZilla



Reply With Quote
  #3  
Old September 27th, 2005, 09:15 AM
elijathegold's Avatar
elijathegold elijathegold is offline
Senior Fire Wizard
Click here for more information
 
Join Date: Feb 2005
Location: Ashford, Kent. England
Posts: 5,651 elijathegold User rank is Captain (20000 - 30000 Reputation Level)elijathegold User rank is Captain (20000 - 30000 Reputation Level)elijathegold User rank is Captain (20000 - 30000 Reputation Level)elijathegold User rank is Captain (20000 - 30000 Reputation Level)elijathegold User rank is Captain (20000 - 30000 Reputation Level)elijathegold User rank is Captain (20000 - 30000 Reputation Level)elijathegold User rank is Captain (20000 - 30000 Reputation Level)elijathegold User rank is Captain (20000 - 30000 Reputation Level)elijathegold User rank is Captain (20000 - 30000 Reputation Level)  Folding Points: 1722506 Folding Title: Super Ultimate Folder - Level 4Folding Points: 1722506 Folding Title: Super Ultimate Folder - Level 4Folding Points: 1722506 Folding Title: Super Ultimate Folder - Level 4Folding Points: 1722506 Folding Title: Super Ultimate Folder - Level 4Folding Points: 1722506 Folding Title: Super Ultimate Folder - Level 4Folding Points: 1722506 Folding Title: Super Ultimate Folder - Level 4Folding Points: 1722506 Folding Title: Super Ultimate Folder - Level 4Folding Points: 1722506 Folding Title: Super Ultimate Folder - Level 4Folding Points: 1722506 Folding Title: Super Ultimate Folder - Level 4
Time spent in forums: 2 Months 2 Weeks 2 Days 4 h 21 m 19 sec
Reputation Power: 301
Quote:
Originally Posted by nofriends
nice

did you write it yourself?


Yeah... mostly while eating my lunch yesterday

Reply With Quote
  #4  
Old September 27th, 2005, 04:51 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,737 Shadow Wizard User rank is General 14th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 14th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 14th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 14th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 14th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 14th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 14th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 14th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 14th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 14th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 14th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 14th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 14th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 14th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 14th Grade (Above 100000 Reputation Level)Shadow Wizard User rank is General 14th Grade (Above 100000 Reputation Level)  Folding Points: 377762 Folding Title: Super Ultimate Folder - Level 1Folding Points: 377762 Folding Title: Super Ultimate Folder - Level 1Folding Points: 377762 Folding Title: Super Ultimate Folder - Level 1Folding Points: 377762 Folding Title: Super Ultimate Folder - Level 1Folding Points: 377762 Folding Title: Super Ultimate Folder - Level 1Folding Points: 377762 Folding Title: Super Ultimate Folder - Level 1
Time spent in forums: 3 Months 2 Weeks 5 h 41 m 46 sec
Reputation Power: 1914
interesting, many great invetions (e.g. RSA) were invented (at least in the inventor's mind)
at lunch time, or something similar. well done Elija, looks like usefull thing to have!!

Reply With Quote
Reply

Viewing: ASP Free ForumsProgrammingCode Bank > X-Browser Web Safe Color Picker + Demo


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 5 hosted by Hostway
Stay green...Green IT