> How do people add copyright notices to their code? When they create a > new file?
I've only ever done manual copy/paste at the top of each file. > > What if the notice changes? Do they use ant to add it before > compilation to each file? There's no point in adding copright notices before compilation. Comments are stripped from compiled code. > > Does compiling Flex remove the copyright notice? If so, should one > worry about having a copyright notice in the code for if/when it is > decompiled? Again, all comments are stripped, so there's no point. And if someone is decompiling your code, chances are they know that they don't own the copyright :) they just probably don't care. Doug

