Thursday, May 18, 2017

Drag & Drop, Yearbook, Portfolio

DO NOW:
  1. Read my comments to your blog from yesterday.
  2. Read the objectives and reply to this blog with what you plan on getting done. (Finish drag & drop)

OBJECTIVES:
  1. Finish and submit Drag & Drop Rubric (See video links from Monday)
  2. Start adding text and images to Yearbook Page (See video links from yesterday) in Google Classroom
  3. May Research
  4. Add or edit a Portfolio page to your blog to include Choose your adventure, Soundboard and Drag & Drop Game. Be sure to include objectives from rubrics, image representing the project and tools used/learned. (SEE VIDEO)
  5. Submit Projects to STUDENT ART SHOW
**Make sure to document ALL you do in your blog...include images or link to .SWF file

***Jersey Shore Festival this weekend, bring in pictures or video for $50

Wednesday, May 17, 2017

Drag & Drop, Yearbook, Portfolio

DO NOW:
  1. Read my comments to your blog from yesterday.
  2. Publish Drag & Drop Game, Upload to Google Drive and share me the link to .SWF file
  3. Read the objectives and reply to this blog with what you plan on getting done. (Finish drag & drop)

WHY DIDN'T ANYONE DO THIS YESTERDAY?

OBJECTIVES:
  1. Finish and submit Drag & Drop Rubric (See video links from Monday)
  2. Start adding text and images to Yearbook Page (See video links from yesterday) in Google Classroom
  3. May Research
  4. Add or edit a Portfolio page to your blog to include Choose your adventure, Soundboard and Drag & Drop Game. Be sure to include objectives from rubrics, image representing the project and tools used/learned. (SEE VIDEO)
  5. Submit Projects to STUDENT ART SHOW
**Make sure to document ALL you do in your blog...include images or link to .SWF file

CAPE MAY TRIP is TOMORROW for 2nd year students. You need to come on AM bus or drive and get picked-up here at 4:00!!

***Jersey Shore Festival this weekend, bring in pictures or video for $50


Monday, May 15, 2017

Graduation Video, Drag& Drop, Yearbook

DO NOW:
Download and print Drag & Drop Rubric
Read the objectives and reply to this blog with what you plan on getting done. (Finish drag & drop)

OBJECTIVES:
Finish and submit Drag & Drop Game (See video links from yesterday)
Start adding text and images to Yearbook Page (See video links from yesterday) in Google Classroom
May Research 
Submit Projects to STUDENT ART SHOW

**Make sure to document ALL you do in your blog...include images or link to .SWF file
***Jersey Shore Festival this weekend, bring in pictures or video for $50

CODE FOR 4 Items:
//Coding for potato head demo. The names of the objects can easily be changed to a,b,c...etc. :)
sto();
var orig1X:Number=item1.x;
var orig1Y:Number=item1.y;

var orig2X:Number=item2.x;
var orig2Y:Number=item2.y;

var orig3X:Number=item3.x;
var orig3Y:Number=item3.y;

var orig4X:Number=item4.x;
var orig4Y:Number=item4.y;

var myBoing:boing  = new boing ();

item1.addEventListener(MouseEvent.MOUSE_DOWN, dragTheObject);
item1.addEventListener (MouseEvent.MOUSE_UP, itemRelease);
item2.addEventListener(MouseEvent.MOUSE_DOWN, dragTheObject);
item2.addEventListener (MouseEvent.MOUSE_UP, itemRelease);
item3.addEventListener(MouseEvent.MOUSE_DOWN, dragTheObject);
item3.addEventListener (MouseEvent.MOUSE_UP, itemRelease);
item4.addEventListener(MouseEvent.MOUSE_DOWN, dragTheObject);
item4.addEventListener (MouseEvent.MOUSE_UP, itemRelease);


function dragTheObject(event:MouseEvent):void {
var item:MovieClip=MovieClip(event.target);
item.startDrag();
var topPos:uint=this.numChildren-1;
this.setChildIndex(item, topPos);
}

function itemRelease(event:MouseEvent):void {
var thisItem:MovieClip=MovieClip(event.target);
thisItem.stopDrag();
myBoing.play();
};

function reset(event:MouseEvent):void {
     item1.x=orig1X;
     item1.y=orig1Y;
item2.x=orig2X;
     item2.y=orig2Y;
item3.x=orig3X;
     item3.y=orig3Y;
item4.x=orig4X;
     item4.y=orig4Y;
}
           
item1.buttonMode = true;
item2.buttonMode = true;
item3.buttonMode = true;
item4.buttonMode = true;

reset_btn.addEventListener(MouseEvent.CLICK, reset);
reset_btn.buttonMode = true;

Graduation Video, Drag& Drop, Yearbook

DO NOW:
Upload photos and videos for Monday meeting. Share with me (Jdusza@ocvts.org) for $60

OBJECTIVES:
Reset button and drop sound demo
EXAMPLE  HIT SOUND
Video importing and editing demo
Yearbook Page discussion

Code to copy/paste into actions:
stop();
//Coding for potato head demo. The names of the objects can easily be changed to a,b,c...etc. :)

var orig1X:Number=item1.x;
var orig1Y:Number=item1.y;

var myBoing:boing  = new boing ();

item1.addEventListener(MouseEvent.MOUSE_DOWN, dragTheObject);
item1.addEventListener (MouseEvent.MOUSE_UP, itemRelease);


function dragTheObject(event:MouseEvent):void {
var item:MovieClip=MovieClip(event.target);
item.startDrag();
var topPos:uint=this.numChildren-1;
this.setChildIndex(item, topPos);
}

function itemRelease(event:MouseEvent):void {
var thisItem:MovieClip=MovieClip(event.target);
thisItem.stopDrag();
myBoing.play();
};

function reset(event:MouseEvent):void {
     item1.x=orig1X;
     item1.y=orig1Y;

}
           
item1.buttonMode = true;


reset_btn.addEventListener(MouseEvent.CLICK, reset);
reset_btn.buttonMode = true;