Flash lockscreen
Posted: Tue 10. Jul 2012, 19:02
Hi, ich bin Flash Anfänger und wollte ein lockscreen machen bei dem man einen slider bis zu einem bestimmten Punkt zieht, damit der Bildschirm entsperrt wird. Wenn ich dies tue passiert allerdings nichts. Der Code ist:
{
import com.osp.flashextension.LockScreen;
import flash.display.MovieClip;
import flash.events.Event;
import flash.events.MouseEvent;
import flashx.textLayout.formats.Float;
var sliderBind:Rectangle = new Rectangle(28, 682, 355, 0);
addEventListener(MouseEvent.MOUSE_DOWN, sliderDragF);
stage.addEventListener(MouseEvent.MOUSE_UP, sliderStopF);
addEventListener(Event.ENTER_FRAME, checkSliderX);
addEventListener(Event.ENTER_FRAME, checkSliderXx);
function sliderDragF(event:MouseEvent):void{
sliderBtn_mc.startDrag(false, sliderBind);
}
function sliderStopF(event:MouseEvent):void{
sliderBtn_mc.stopDrag();
}
function checkSliderX(event:Event):void{
if(sliderBtn_mc.x >= 115){
slidetounlock_mc.visible = false;
}
}
function checkSliderXx(event:Event):void{
if(sliderBtn_mc.x < 115){
slidetounlock_mc.visible = true;
}
}
function checkUnlock(event:Event):void{
if (sliderBtn_mc.x >= 340)
{
var lockScreen:LockScreen = new LockScreen();
lockScreen.launchCallLogApp("previous");
}
}
}
Es funktioniert alles außer das der Bildschirm entsperrt wird. Ich hoffe ihr könnt mir
helfen. Danke schon mal im voraus
.
{
import com.osp.flashextension.LockScreen;
import flash.display.MovieClip;
import flash.events.Event;
import flash.events.MouseEvent;
import flashx.textLayout.formats.Float;
var sliderBind:Rectangle = new Rectangle(28, 682, 355, 0);
addEventListener(MouseEvent.MOUSE_DOWN, sliderDragF);
stage.addEventListener(MouseEvent.MOUSE_UP, sliderStopF);
addEventListener(Event.ENTER_FRAME, checkSliderX);
addEventListener(Event.ENTER_FRAME, checkSliderXx);
function sliderDragF(event:MouseEvent):void{
sliderBtn_mc.startDrag(false, sliderBind);
}
function sliderStopF(event:MouseEvent):void{
sliderBtn_mc.stopDrag();
}
function checkSliderX(event:Event):void{
if(sliderBtn_mc.x >= 115){
slidetounlock_mc.visible = false;
}
}
function checkSliderXx(event:Event):void{
if(sliderBtn_mc.x < 115){
slidetounlock_mc.visible = true;
}
}
function checkUnlock(event:Event):void{
if (sliderBtn_mc.x >= 340)
{
var lockScreen:LockScreen = new LockScreen();
lockScreen.launchCallLogApp("previous");
}
}
}
Es funktioniert alles außer das der Bildschirm entsperrt wird. Ich hoffe ihr könnt mir
helfen. Danke schon mal im voraus
