문제

I am use flash based live video chat application in my site and someone make text flood in chat . How can I disable paste text in TextBox ?

도움이 되었습니까?

해결책

Off the top of my head, you would have to listen for the KeyboardEvent.KEY_DOWN event, and in your handler, determine if the control key and the "V" keycode are in the event. If so, you would have to invoke "event.preventDefault()". Something like this.

public function stopCopying(event:KeyboardEvent):void
{
    var controlActive:Boolean = event.controlKey;
    // Is the control buttton down?
    if( controlActive )
    {
        //[v keycode = 86][1]
        if( event.keyCode == 86 )
        {
           event.preventDefault();
        }
    }
}

That's pretty much the best I can do off the top of my head, I haven't ever used this in practice.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top