Hmm... Impressive, but not exactly user-friendly. :-) I know, myself, I'd like something that is always handy in the system tray and, when invoked, offers multiple interfaces for picking colors, like a color wheel, a swatch pallette, fader/scroll bars, direct entry of the RGB/CMYK values, etc, as well as conversion between the various RGB/CMYK/LAB systems, conversion between hex and decimal, etc.
- Vieth > -----Original Message----- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] > Sent: Friday, May 28, 2004 1:36 PM > To: [EMAIL PROTECTED] > Subject: Re: [ASP] Color picking application > > You are a programmer. Just build one... > > http://www.thehighlandergolf.com/utilities/ColorChart.asp > > <% > Response.Write "<table > style='border-style:outset;border-width:5px;' > cellpadding='0' celspacing='0'>" > > Cols = 0 > Cell = 0 > For Red = 0 to 256 step 16 > For Green = 0 to 256 step 16 > For Blue = 0 to 256 Step 16 > > If Red = 256 Then > HRed = Hex(255) > Else > HRed = Hex(Red) > If Len(HRed) < 2 Then > HRed = "0" & CStr(HRed) > End If > End IF > > > If Green = 256 Then > HGreen = Hex(255) > Else > HGreen = Hex(Green) > If Len(HGreen) < 2 Then > HGreen = "0" & CStr(HGreen) > End If > End IF > > If Blue = 256 Then > HBlue = Hex(255) > Else > HBlue = Hex(Blue) > If Len(Blue) < 2 Then > HBlue = "0" & CStr(HBlue) > End If > End IF > > If Cols = 0 Then > Response.Write "<tr > style='font-size:9pt;font-family:arial;'>" > End If > > Cell = Cell + 1 > > Response.Write "<td > style='border-style:inset;border-width:3px;padding:2px;border- > color:#" & HRed & HGreen & HBlue & "'>" & _ > "<div > style='background-color:#" & HRed & HGreen & HBlue & > ";'> </div>" & _ > "<div style='color:#" & HRed > & HGreen & HBlue & ";'>"& HRed & HGreen & HBlue & "</div>" & _ > "<div > style='background-color:#" & HRed & HGreen & HBlue & > ";'> </div>" & _ > "</td>" > > Cols = Cols + 1 > If Cols = 17 Then > Response.Write "</tr>" > Cols = 0 > End If > > Next > Next > Next > > Response.Write "</table>" > > %> > > > > > > > > BobFilipiak <[EMAIL PROTECTED]> > 05/28/2004 11:17 > Please respond to active-server-pages > > To: [EMAIL PROTECTED] > cc: > Subject: Re: [ASP] Color picking application > > > Take a look at http://www.pagetutor.com/pagetutor/makapage/picker/ > > Bob Filipiak > A question not asked > is a lost opportunity to learn. > ----- Original Message ----- > From: "Ray at work" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Friday, May 28, 2004 10:07 AM > Subject: [ASP] Color picking application > > > > Hi list, > > > > Whenever I need to get a hex color code, I open Photoshop > and get the > code > > from the color selector on there. This is a bit inefficient, since > > Photoshop takes as long to load as an operating system and > all that. > Does > > anyone know of a simple color-picking application that I > can install > that > > would run in my system tray or something like that that I could use > instead? > > > > I'm aware of the various sites out there with color charts, but I'm > looking > > for something that I can install and will not be limited to web-safe > colors > > only. > > > > Thank you, > > > > Ray at work > > > > > > > --------------------------------------------------------------------- > Home : http://groups.yahoo.com/group/active-server-pages > --------------------------------------------------------------------- > Post : [EMAIL PROTECTED] > Subscribe : [EMAIL PROTECTED] > Unsubscribe: [EMAIL PROTECTED] > --------------------------------------------------------------------- > Yahoo! Groups Links > > > > > > > > > [Non-text portions of this message have been removed] > > > > ------------------------ Yahoo! Groups Sponsor > --------------------~--> > Yahoo! Domains - Claim yours for only $14.70 > http://us.click.yahoo.com/Z1wmxD/DREIAA/yQLSAA/17folB/TM > -------------------------------------------------------------- > ------~-> > > -------------------------------------------------------------- > ------- > Home : http://groups.yahoo.com/group/active-server-pages > --------------------------------------------------------------------- > Post : [EMAIL PROTECTED] > Subscribe : [EMAIL PROTECTED] > Unsubscribe: [EMAIL PROTECTED] > --------------------------------------------------------------------- > Yahoo! Groups Links > > > > > > > ------------------------ Yahoo! Groups Sponsor --------------------~--> Yahoo! Domains - Claim yours for only $14.70 http://us.click.yahoo.com/Z1wmxD/DREIAA/yQLSAA/17folB/TM --------------------------------------------------------------------~-> --------------------------------------------------------------------- Home : http://groups.yahoo.com/group/active-server-pages --------------------------------------------------------------------- Post : [EMAIL PROTECTED] Subscribe : [EMAIL PROTECTED] Unsubscribe: [EMAIL PROTECTED] --------------------------------------------------------------------- Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/active-server-pages/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/
