I am currently broadcasting to a child scope(from one parent controller to a child controller). In the $scope.$on
app.controller('myCtrl')
$scope.$on('broadcastName', function(e, d){
//I want to be able to access myCtrl's scope here even though
//the broadcast comes from another controller
});
I want to have access to the current controllers scope that catches the broadcast with in my $scope.$on function, not the parent controller that emitted the broadcast.
I figured the answer out as I was writing up the question.