Web Design Forums

General Web Design Discussion

Have general questions about web design? Need help figuring out how to lay your site out, what style to use or how to make an image? Need help picking between photos for your homepage? Post your question here!

Is there a site for nice color schemes?



Site of the Month Voting - Now Open. CAST YOUR VOTE NOW!

Reply
 
LinkBack Thread Tools
Old July 20 '03, 07:02 PM (#1)
x5productions is offline
New Member!
 
x5productions's Avatar
 
Join Date: July 2003
Location: Dale City
Posts: 2
x5productions
Send a message via AIM to x5productions
Is there a site for nice color schemes?

I have layouts, just dont have color schemes...any sites?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old July 20 '03, 07:14 PM (#2)
Brak is offline
Rockstar
 
Brak's Avatar
 
Join Date: April 2003
Location: San Francisco, CA
Posts: 3,413
Brak will become famous soon enough
Send a message via ICQ to Brak Send a message via AIM to Brak Send a message via MSN to Brak Send a message via Yahoo to Brak
http://www.colorschemer.com/online.html

Although I suggest learning more about color in general... color scheme generators can only give you a formulated loook... can't give you that extra edge given from a custom scheme, not to mention the different feelings invoked from different colors... (whens the last time you saw a mcdonalds ad in dull greys and blues )
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old July 20 '03, 07:16 PM (#3)
x5productions is offline
New Member!
 
x5productions's Avatar
 
Join Date: July 2003
Location: Dale City
Posts: 2
x5productions
Send a message via AIM to x5productions
Thanks man
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old July 20 '03, 09:11 PM (#4)
smoseley is online now
WDF Moderator
 
smoseley's Avatar
 
Join Date: March 2003
Location: Miami, FL
Posts: 8,719
smoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud of
OMG !!! They stole my color table script (the color table along the bottom)!!! What do I do ?!?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old July 20 '03, 09:14 PM (#5)
smoseley is online now
WDF Moderator
 
smoseley's Avatar
 
Join Date: March 2003
Location: Miami, FL
Posts: 8,719
smoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud of
For the record...

Their script:
Code:
function DrawPalette()
{
  var outer, middle, inner=255;
  
  document.write('<div ID="palette">');
  document.write('<table cellpadding=0 cellspacing=1 border=0 bgcolor="#000000">');
  document.write('<tr>');
    
  for (outer = 255; outer >= 0; outer-=51)
  {
    for (middle = 255; middle >= 0; middle-=51)
    {
      for (inner = 255; inner >= 0; inner-=51)
      {
        tR=HEXCodes[255 - outer];
            tG=HEXCodes[255 - middle];
            tB=HEXCodes[255 - inner];
  
        document.write('<td height="11" width="11" bgcolor="#'+tR+tG+tB+'"><a href="#" 
                onClick="ChangeColors('+(255 - outer)+','+(255 - middle)+','+(255 - inner)+'); 
                return false;"><img src="clear.gif" border="0" width="11" height="11" 
                /></a></td>');
      }
    }
    if(outer!=0) document.write('</tr><tr>');
  }
  document.write('</tr>');
  document.write('</table>');
  document.write('</div>');
}
My script:
Code:
function loadColorPicker(color) {
    document.writeln('<TABLE CELLPADDING=0 CELLSPACING=10 BORDER=0>');
    document.writeln('<TR>');
    document.writeln('<TD COLSPAN=3>');
    document.writeln('<TABLE CELLPADDING=0 CELLSPACING=1 BORDER=0 BGCOLOR="#000000">');
    for (var x=0; x<=255; x=x+51) {
        for (var y=0; y<=255; y=y+51) {
            for (var z=0; z<=255; z=z+51) {
                if (((x/51*36)+(y/51*6)+z/51)%36 == 0) document.writeln('<TR>');
                document.writeln('<TD BGCOLOR="#' + getHexValue(x) + getHexValue(y) + getHexValue(z) + 
                        '"><IMG SRC="/images/spacer.gif" STYLE="cursor:hand" 
                        ONMOUSEOVER="highlightColor(' + x + ',' + y + ',' + z + ')" 
                        ONCLICK="saveColor(' + x + ',' + y + ',' + z + ')" WIDTH=10 HEIGHT=10 
                        BORDER=0 ALT="#' + getHexValue(x) + getHexValue(y) + getHexValue(z) + '"></A></TD>');
                if (((x/51*36)+(y/51*6)+z/51)%36 == 35) document.writeln('</TR>');
            }
        }
    }
    document.writeln('</TABLE>');
    document.writeln('</TD>');
    document.writeln('</TR>');
    document.writeln('</TABLE>');
}
Am I crazy or does anyone else see the similarity ?!?

They can't have done it before mine, either... that script is 2 years old!!!

Last edited by smoseley; July 20 '03 at 09:19 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old July 20 '03, 09:21 PM (#6)
smoseley is online now
WDF Moderator
 
smoseley's Avatar
 
Join Date: March 2003
Location: Miami, FL
Posts: 8,719
smoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud of
The way I know they stole it is this line:
Code:
document.write('<table cellpadding=0 cellspacing=1 border=0 bgcolor="#000000">');
Every other line of their script uses quotes on all attributes... this line, however, uses the same formatting that mine does (no quotes EXCEPT on the bgcolor)... they only made it all lowercase.

Please someone tell me I'm crazy !!!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old July 20 '03, 09:29 PM (#7)
Grommet is offline
WDF Masa
 
Grommet's Avatar
 
Join Date: July 2003
Location: Stuart, Fl
Posts: 459
Grommet
Send a message via AIM to Grommet
*Sniff Sniff* *Sniff Sniff* I smell lawsuite
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old July 20 '03, 09:29 PM (#8)
smoseley is online now
WDF Moderator
 
smoseley's Avatar
 
Join Date: March 2003
Location: Miami, FL
Posts: 8,719
smoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud of
For the record... here's what my script looks like:

http://www.transio.com/color_picker.htm
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old July 20 '03, 09:48 PM (#9)
splufdaddy is offline
WDF Veteran Member
 
splufdaddy's Avatar
 
Join Date: February 2003
Location: Boston, MA
Posts: 4,488
splufdaddy is on a distinguished road
Wow, that's interesting...where was your code posted for them to take?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old July 20 '03, 09:53 PM (#10)
Brak is offline
Rockstar
 
Brak's Avatar
 
Join Date: April 2003
Location: San Francisco, CA
Posts: 3,413
Brak will become famous soon enough
Send a message via ICQ to Brak Send a message via AIM to Brak Send a message via MSN to Brak Send a message via Yahoo to Brak
Perhaps you were.. but the script has many practical applications, and is not explicitly copyrighted... I think it would fall under the same catagory as claiming this site ripped mine because it uses the <body> tag.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old July 20 '03, 10:08 PM (#11)
smoseley is online now
WDF Moderator
 
smoseley's Avatar
 
Join Date: March 2003
Location: Miami, FL
Posts: 8,719
smoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud of
spluf, it used to be on http://www.anewhorizon.org. It was a part of the content editor I made for that site. They recently redesigned the site, though.

Brak, you don't have to "explicitly" copyright something for a copyright to be legally binding. It's still illegal to rip scripts that you didn't write... and even WORSE to profit off them !!! These people actually SELL their product that apparently uses my script !!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old July 20 '03, 10:16 PM (#12)
Brak is offline
Rockstar
 
Brak's Avatar
 
Join Date: April 2003
Location: San Francisco, CA
Posts: 3,413
Brak will become famous soon enough
Send a message via ICQ to Brak Send a message via AIM to Brak Send a message via MSN to Brak Send a message via Yahoo to Brak
Yeah I know what you mean... however, I'm saying this falls into the catagory of near impossible to prove. Personally I've used tons of people's codes.... however, I always moify them to a major extent. I find it's the best way to learn (view source).

Also... you mentioned you built it into a control panel that you sold a site to someone... wouldnt' it in turn be the person you sold it to's copyright, and not yours anymore?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old July 20 '03, 10:43 PM (#13)
smoseley is online now
WDF Moderator
 
smoseley's Avatar
 
Join Date: March 2003
Location: Miami, FL
Posts: 8,719
smoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud ofsmoseley has much to be proud of
I sold them a license to use the software, not the rights to the source code. It's in the contract.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old September 1 '03, 07:53 AM (#14)
Logik is offline
WDF Member
 
Logik's Avatar
 
Join Date: August 2003
Location: Boston
Posts: 28
Logik
Send a message via AIM to Logik
if you still have that contract, along with the code that it goes along with, you got yourself a case then...

otherwise, you got screwed.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old October 3 '05, 11:08 PM (#15)
T1Oracle is offline
WDF Member
 
T1Oracle's Avatar
 
Join Date: July 2005
Posts: 39
T1Oracle is on a distinguished road
Javascript is so easy to take there really isn't any point in trying to copywrite it. If you get ripped just make sure your next version is better than theirs. Copywrites are for Server Side technologies, not client side IMO. I'm working on a big javascript project right now, and I intend on releasing it for free on DynamicDrive.com. After that, I will use that for self promotion and as evidence that I am the original source of it. If I get ripped Dynamic Drive would probably take care of that since they copywrite that stuff. I won't involve myself in such chases though, its too much time and effort for that kind of stuff.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old October 4 '05, 10:34 AM (#16)
Rince is offline
WDF Regular
 
Rince's Avatar
 
Join Date: November 2004
Posts: 183
Rince is on a distinguished road
Wow - waking up an old thread here.

Looking at the code transio posted - they did not steel his script. There are many fundamental differances that proove they were authored seperatly. For example, the sequence of if statements have different logic to them. It's a bit more than just changing the variable names. It's fundamentally a different script cause it does the if statements in a different order.

As for the lack of " marks on the line:

document.write('<table cellpadding=0 cellspacing=1 border=0 bgcolor="#000000">');

Probably cause the html code was copy pasted out a html editor like dreaweaver which defaults to this styling.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old October 11 '05, 08:53 PM (#17)
MoRpHeUs is offline
D.W.C. Desginer........toi
 
MoRpHeUs's Avatar
 
Join Date: April 2005
Location: UHS-VILLE
Posts: 139
MoRpHeUs is on a distinguished road
Send a message via Yahoo to MoRpHeUs
some people use tidy as well which has a unique style to itself and layout
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

  Web Design Forums » Web Design Help » General Web Design Discussion

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

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

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


 
User Infomation
Your Avatar

Site Of The Month
Nominate Your Site Now!

Advertisement
WolfCMS.org

Latest Articles
- by RickM
- by bfsog

Advertisement

Partner Links



All times are GMT -4. The time now is 02:09 PM.


WebDesignForums.net is Copyright © 2010 RikeMedia.

SEO by vBSEO

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164