integer Switch = FALSE; default { touch_start(integer total_number) { if(Switch == FALSE) { Switch = TRUE; llSay(0, "On"); //turn on stuff here llSetText("Please touch again when the movie is finished. \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ",<1,1,1>,1); llSetTextureAnim(FALSE | LOOP, 0,4,4,1,16,16); } else { Switch = FALSE; llSay(0, "Off"); //turn off stuff here llSetText("Please touch the screen first to watch the movie correctly. \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ",<1,1,1>,1); llSetTextureAnim(ANIM_ON | LOOP, 0,4,4,1,16,16); } } }