Re: [PHP] Making an interactive RGB color picker

2008-03-04 Thread tedd
At 4:42 PM -0500 3/3/08, Daniel Brown wrote: On Mon, Mar 3, 2008 at 3:13 PM, Keikonium [EMAIL PROTECTED] wrote: This may not be exactly what you think, but I didn't know how else to word the title. I basically need to make a script that will go through every possible color combination and

Re: [PHP] Making an interactive RGB color picker

2008-03-04 Thread Daniel Brown
On Tue, Mar 4, 2008 at 10:44 AM, tedd [EMAIL PROTECTED] wrote: While people are giving demo's, check this out: http://webbytedd.com/c/access-color/ The code is there, it's javascript. Ooh, it's purdy and shiny and I like it. -- /Dan Daniel P. Brown Senior Unix Geek ? while(1) { $me

Re: [PHP] Making an interactive RGB color picker

2008-03-04 Thread Jim Lucas
Along the lines of tedd, I will share this one. http://www.colourlovers.com/blog/2008/01/16/free-advanced-dhtml-color-picker/ -- Jim Lucas Some men are born to greatness, some achieve greatness, and some have greatness thrust upon them. Twelfth Night, Act II, Scene V by William

Re: [PHP] Making an interactive RGB color picker

2008-03-04 Thread Richard Lynch
for ($red = 0; $red 256; $red++){ for ($green = 0; $green 256; $green++){ for ($blue = 0; $blue 256; $blue++){ $output = EOC \$drawrect(\$get... EOC; } } } On Mon, March 3, 2008 2:13 pm, Keikonium wrote: This may not be exactly what you think, but I didn't know how else to

Re: [PHP] Making an interactive RGB color picker

2008-03-04 Thread Casey
On 3/3/08, Keikonium [EMAIL PROTECTED] wrote: This may not be exactly what you think, but I didn't know how else to word the title. I basically need to make a script that will go through every possible color combination and print them to look just like (or similar) to the windows color picker.

Re: [PHP] Making an interactive RGB color picker

2008-03-03 Thread Daniel Brown
On Mon, Mar 3, 2008 at 3:13 PM, Keikonium [EMAIL PROTECTED] wrote: This may not be exactly what you think, but I didn't know how else to word the title. I basically need to make a script that will go through every possible color combination and print them to look just like (or similar) to