How to add the "cut" command to this script?

Hi

I use Textwrangler.

This is a script that selects a block of text.

Once selected, i want Textwrangler to “cut” the text selected.

Please help me

Thanks to all

Zen

gidday

try

 cut selection

or something like

tell application "TextWrangler"
    activate
select text 1 of text window 1
    cut selection
end tell