Lloyd's Classroom Observation Tool Prototype

Educational Research Icon    

Script for Button "Teacher Gives a Direction":

global gActor, gActivity, gTimeStamp

global gTeacherFreq

global gVarTimeStart

//Note: the global variable gTeacherFreq is not yet used anywhere; but we will use it during the workshop.

on mouseUp

put "Teacher" into gActor

put "Gives Direction" into gActivity

//record data

put the date&","&the time into gTimeStamp

put the seconds into gVarTimeStart

put gTimeStamp&","&gActor&","&gActivity&","&gVarTimeStart into line (the number of lines of field "data" on card "data" +1) of field "data" on card "data"

end mouseUp


Script for Button "All Students":

global gActor

on mouseUp

put "All Students" into gActor

end mouseUp


Script for Button "Answers Question":

global gActor, gActivity, gTimeStamp

global gVarTimeStart

on mouseUp

put "Answers Question" into gActivity

//record data

put the date&","&the time into gTimeStamp

put the seconds into gVarTimeStart

put gTimeStamp&","&gActor&","&gActivity&","&gVarTimeStart into line (the number of lines of field "data" on card "data" +1) of field "data" on card "data"

end mouseUp