diff --git a/examples/addVoxelOnMouseClickExample.js b/examples/addVoxelOnMouseClickExample.js
index 244a017ae4..4fa175577c 100644
--- a/examples/addVoxelOnMouseClickExample.js
+++ b/examples/addVoxelOnMouseClickExample.js
@@ -1,13 +1,15 @@
 //
 //  addVoxelOnMouseClickExample.js
-//  hifi
+//  examples
 //
 //  Created by Brad Hefta-Gaub on 2/6/14.
-//  Copyright (c) 2014 HighFidelity, Inc. All rights reserved.
+//  Copyright 2014 High Fidelity, Inc.
 //
 //  This is an example script that demonstrates use of the Camera and Voxels class to implement
 //  clicking on a voxel and adding a new voxel on the clicked on face
 //
+//  Distributed under the Apache License, Version 2.0.
+//  See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
 //
 
 function mousePressEvent(event) {
diff --git a/examples/audioBall.js b/examples/audioBall.js
index 0889d9eb31..2a77a0999f 100644
--- a/examples/audioBall.js
+++ b/examples/audioBall.js
@@ -1,14 +1,17 @@
 //
 //  audioBall.js
-//  hifi
+//  examples
 //
 //  Created by Athanasios Gaitatzes on 2/10/14.
-//  Copyright (c) 2014 HighFidelity, Inc. All rights reserved.
+//  Copyright 2014 High Fidelity, Inc.
 //
 //  This script creates a particle in front of the user that stays in front of
 //  the user's avatar as they move, and animates it's radius and color
 //  in response to the audio intensity.
 //
+//  Distributed under the Apache License, Version 2.0.
+//  See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
+//
 
 var sound = new Sound("https://s3-us-west-1.amazonaws.com/highfidelity-public/sounds/Animals/mexicanWhipoorwill.raw");
 var CHANCE_OF_PLAYING_SOUND = 0.01;
diff --git a/examples/audioDeviceExample.js b/examples/audioDeviceExample.js
index 1ee00a1582..959b21f848 100644
--- a/examples/audioDeviceExample.js
+++ b/examples/audioDeviceExample.js
@@ -1,13 +1,15 @@
 //
 //  audioDeviceExample.js
-//  hifi
+//  examples
 //
 //  Created by Brad Hefta-Gaub on 3/22/14
-//  Copyright (c) 2013 HighFidelity, Inc. All rights reserved.
+//  Copyright 2013 High Fidelity, Inc.
 //
 //  This is an example script that demonstrates use of the Menu object
 //
-
+//  Distributed under the Apache License, Version 2.0.
+//  See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
+//
 
 var outputDevices = AudioDevice.getOutputDevices();
 var defaultOutputDevice = AudioDevice.getDefaultOutputDevice();
diff --git a/examples/bot.js b/examples/bot.js
index ccbc24bc3d..f7a0429c53 100644
--- a/examples/bot.js
+++ b/examples/bot.js
@@ -1,13 +1,15 @@
 //
 //  bot.js
-//  hifi
+//  examples
 //
 //  Created by Stephen Birarda on 2/20/14.
 //  Modified by Philip on 3/3/14
-//  Copyright (c) 2014 HighFidelity, Inc. All rights reserved.
+//  Copyright 2014 High Fidelity, Inc.
 //
 //  This is an example script that demonstrates an NPC avatar.
 //
+//  Distributed under the Apache License, Version 2.0.
+//  See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
 //
 
 function getRandomFloat(min, max) {
diff --git a/examples/cameraExample.js b/examples/cameraExample.js
index 6e3c51a348..332cc0fbca 100644
--- a/examples/cameraExample.js
+++ b/examples/cameraExample.js
@@ -1,12 +1,14 @@
 //
 //  cameraExample.js
-//  hifi
+//  examples
 //
 //  Created by Brad Hefta-Gaub on 2/6/14.
-//  Copyright (c) 2014 HighFidelity, Inc. All rights reserved.
+//  Copyright 2014 High Fidelity, Inc.
 //
 //  This is an example script that demonstrates use of the Camera class
 //
+//  Distributed under the Apache License, Version 2.0.
+//  See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
 //
 
 var damping = 0.9;
diff --git a/examples/clipboardExample.js b/examples/clipboardExample.js
index 4972505dfe..e9f581f581 100644
--- a/examples/clipboardExample.js
+++ b/examples/clipboardExample.js
@@ -1,12 +1,14 @@
 //
 //  clipboardExample.js
-//  hifi
+//  examples
 //
 //  Created by Brad Hefta-Gaub on 1/28/14.
-//  Copyright (c) 2014 HighFidelity, Inc. All rights reserved.
+//  Copyright 2014 HighFidelity, Inc. All rights reserved.
 //
 //  This is an example script that demonstrates use of the Clipboard class
 //
+//  Distributed under the Apache License, Version 2.0.
+//  See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
 //
 
 var selectedVoxel = { x: 0, y: 0, z: 0, s: 0 };
diff --git a/examples/collidingParticles.js b/examples/collidingParticles.js
index 95520df757..1f1899c8f2 100644
--- a/examples/collidingParticles.js
+++ b/examples/collidingParticles.js
@@ -1,14 +1,16 @@
 //
 //  collidingParticles.js
-//  hifi
+//  examples
 //
 //  Created by Brad Hefta-Gaub on 12/31/13.
-//  Copyright (c) 2013 HighFidelity, Inc. All rights reserved.
+//  Copyright 2013 High Fidelity, Inc.
 //
 //  This is an example script that creates a couple particles, and sends them on a collision course.
 //  One of the particles has a script that when it collides with another particle, it swaps colors with that particle.
 //  The other particle has a script that when it collides with another particle it set's it's script to a suicide script.
 //
+//  Distributed under the Apache License, Version 2.0.
+//  See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
 //
 
 var currentIteration = 0;
diff --git a/examples/controllerExample.js b/examples/controllerExample.js
index ebb013913e..66a9e40c56 100644
--- a/examples/controllerExample.js
+++ b/examples/controllerExample.js
@@ -1,12 +1,14 @@
 //
 //  controllerExample.js
-//  hifi
+//  examples
 //
 //  Created by Brad Hefta-Gaub on 1/28/14.
-//  Copyright (c) 2014 HighFidelity, Inc. All rights reserved.
+//  Copyright 2014 High Fidelity, Inc.
 //
 //  This is an example script that demonstrates use of the Controller class
 //
+//  Distributed under the Apache License, Version 2.0.
+//  See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
 //
 
 // initialize our triggers
diff --git a/examples/count.js b/examples/count.js
index e04bc2c94b..1a59d6af36 100644
--- a/examples/count.js
+++ b/examples/count.js
@@ -1,12 +1,16 @@
 //
 //  count.js
-//  hifi
+//  examples
 //
 //  Created by Brad Hefta-Gaub on 12/31/13.
-//  Copyright (c) 2013 HighFidelity, Inc. All rights reserved.
+//  Copyright 2013 High Fidelity, Inc. All rights reserved.
 //
 //  This is an example script that runs in a loop and displays a counter to the log
 //
+//  Distributed under the Apache License, Version 2.0.
+//  See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
+//
+//
 
 var count = 0;
 
diff --git a/examples/crazylegs.js b/examples/crazylegs.js
index 19a171dbdf..6311aea6e4 100644
--- a/examples/crazylegs.js
+++ b/examples/crazylegs.js
@@ -1,9 +1,12 @@
 //
 //  crazylegs.js
-//  hifi
+//  examples
 //
 //  Created by Andrzej Kapolka on 3/6/14.
-//  Copyright (c) 2014 High Fidelity, Inc. All rights reserved.
+//  Copyright 2014 High Fidelity, Inc.
+//
+//  Distributed under the Apache License, Version 2.0.
+//  See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
 //
 
 var FREQUENCY = 5.0;
diff --git a/examples/defaultScripts.js b/examples/defaultScripts.js
index 722b21844f..ede2d0f6b6 100644
--- a/examples/defaultScripts.js
+++ b/examples/defaultScripts.js
@@ -1,5 +1,12 @@
+//
 //  defaultScripts.js
-//  Copyright (c) 2013 HighFidelity, Inc. All rights reserved.
+//  examples
+//
+//  Copyright 2014 High Fidelity, Inc.
+//
+//  Distributed under the Apache License, Version 2.0.
+//  See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
+
 Script.include("lookWithTouch.js");
 Script.include("editVoxels.js");
 Script.include("selectAudioDevice.js");
diff --git a/examples/editParticleExample.js b/examples/editParticleExample.js
index b632e0229b..54c94d0ef3 100644
--- a/examples/editParticleExample.js
+++ b/examples/editParticleExample.js
@@ -1,12 +1,15 @@
 //
 //  editParticleExample.js
-//  hifi
+//  examples
 //
 //  Created by Brad Hefta-Gaub on 12/31/13.
-//  Copyright (c) 2013 HighFidelity, Inc. All rights reserved.
+//  Copyright 2014 High Fidelity, Inc.
 //
 //  This is an example script that demonstrates creating and editing a particle
 //
+//  Distributed under the Apache License, Version 2.0.
+//  See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
+//
 
 var count = 0;
 var moveUntil = 2000;