Copy file name

Hello!
This is my question:
I´ve made a droplet script for copying a column from an excel doc to a bbedit new doc. and everything was great until i´ve decided that i need that the bbedit file have the same name as the excel file.
This is my script:

tell application “Microsoft Excel”
select (range “E:E”)
copy range range “E:E”
end tell

tell application “BBEdit”
activate
make new text document with properties {contents:current clipboard}
save text document 1 to file “Produção:Deitados:Ed.32”
close text window 1
quit
end tell
tell application “Microsoft Excel”
quit without saving
end tell

I need some help with this, please.

save text document 1 to (aPathToSomewhere as text) & theName