If _alpha Statement

[AS]mywork.onEnterFrame = function(){
if(this._alpha<0){
this.loadMovie(_root.nextMovie);
trace(‘movie loaded’)
}else{
trace(‘movie not loaded’)
}
}[/AS]
Can anyone explain to me why this is not loading the movie or tracing what it says the the if or else statement?