
Untitled
By: a guest on
Feb 2nd, 2011 | syntax:
None | size: 0.46 KB | hits: 60 | expires: Never
on (press) {
startDrag(this);
this.swapDepths(1);
}
on (release) {
stopDrag();
}
onClipEvent (load) {
bottomLeft = false;
}
onClipEvent (enterFrame) {
if (_root.blspot.hitTest(this.BLhit)) {
_root.textbox.text = "hitTest = True";
_root.bottomLeft = true;
}
else {
_root.textbox.text = "";
_root.bottomLeft = false;
}
if (bottomLeft = (false)) {
_root.variableOne.text = "bottomLeft= False";
}
else {
_root.variableOne.text = "bottomLeft= True";
}
}