Results 1 to 5 of 5

Thread: credits/copyright question

  1. #1
    Join Date
    Nov 2009
    Posts
    8
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default credits/copyright question

    1) Script Title:
    copyright question
    2) Script URL (on DD):
    http://www.dynamicdrive.com/dynamici...ashdotmenu.htm
    3) Describe problem:
    First I'm totally new here, first post and obviously I'm bound to ask silly questions.

    Second, I want to thank everyone at DD, I'm learning loads!!

    And third...

    I found the sdmenu script which is triggered by the onload event, however, I have some other objects initialized at the same time. I therefore need to merge the scripts into one js file.

    I want to keep the author's credits in the section of the file where the sdmenu code is located. Can I do this in the js file or must I keep the credits in the html file?

    To complicate things further, I have taken some interest in the window widget (http://www.dynamicdrive.com/dynamici...ndow/index.htm) script which I'd like to use in the same page. Again, how can I go about giving the credits to the authors. Also, can I modify these scripts?

    Sorry about the questions, but I am in the shadows on this, and I always give credits to authors regardless of requirements.

    Code:
    /***********************************************
    * Slashdot Menu script- By DimX
    * Submitted to Dynamic Drive DHTML code library: http://www.dynamicdrive.com
    * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
    ***********************************************/

  2. #2
    Join Date
    Nov 2009
    Posts
    8
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    In cases like these, should I try contacting the authors directly?
    Regards,
    Ivan

  3. #3
    Join Date
    Mar 2005
    Location
    SE PA USA
    Posts
    30,495
    Thanks
    82
    Thanked 3,449 Times in 3,410 Posts
    Blog Entries
    12

    Default

    It really doesn't matter what you do with the scripts as far as combining them goes. However, each script that you use, it's credit must be able to be viewed in the source code of all pages using the script.

    So lets say, just to simplify things a bit, that you have script X and script Y.

    Script X's credit is:

    /* Hey I'm Script X */

    Script Y's credit is:

    /* Hey I'm Script Y */

    But you've combined them into one script file that you call xy.js and add to your page via an external script tag:

    HTML Code:
    <script type="text/javascript" src="xy.js"></script>
    Just make that tag look like so:

    HTML Code:
    <script type="text/javascript" src="xy.js">
    
    /* Hey I'm Script X */
    
    /* Hey I'm Script Y */
    
    </script>
    - John
    ________________________

    Show Additional Thanks: International Rescue Committee - Donate or: The Ocean Conservancy - Donate or: PayPal - Donate

  4. The Following User Says Thank You to jscheuer1 For This Useful Post:

    ivan.x (11-19-2009)

  5. #4
    Join Date
    Aug 2004
    Posts
    10,143
    Thanks
    3
    Thanked 1,008 Times in 993 Posts
    Blog Entries
    16

    Default

    In a nutshell, if you have multiple DD scripts on the same page, yes, you can combine the credit notice for each one into just a single one within the chosen DD script, ie:

    Code:
    <script type="text/javascript" src="haccordion.js">
    
    /***********************************************
    * Horizontal Accordion and Ultimate Slideshow script- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
    * This notice MUST stay intact for legal use
    * Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
    ***********************************************/
    
    </script>
    DD Admin

  6. The Following User Says Thank You to ddadmin For This Useful Post:

    ivan.x (11-19-2009)

  7. #5
    Join Date
    Nov 2009
    Posts
    8
    Thanks
    2
    Thanked 0 Times in 0 Posts

    Default

    Sorry guys for not replying or sending a thank note, but in my country we're having power cuts of up to 4hrs a day due to the mental retardation of bureaucrats, so as you can imagine, I'm having some trouble trying to do some work.

    Hopefully I'll soon be doing some contributions myself and would certainly like them to be credited. I'm working on a scrollable table with fixed headers to simulate listview controls like those you find in MS OS. I am taking a slightly different approach to the alternatives I've seen so far which heavily rely on IE css hacks (valid and invalid filters), or that are rendered differently accross browsers, but that is another story.

    Thx anyhow.
    IVAN

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •