I use the screen command line program in Linux all the time, and I looked through the man page but didn't find the answer to this (although maybe I just missed it):
What I want to do is have a single command that splits the current region, tabs to the new region, and opens a new screen in it. I hoped there was some way to maybe go into command (colon) mode and do something like split; focus down; screen but that doesn't work. Any ideas? Is it possible to maybe bind a series of commands to a single C-a binding?

bind ^s split focus down screen? – DaveParillo Jan 11 '10 at 22:59split focus down screen(I also tried binding it toC-a e), gives an error:split: no arguments required. I've read through most of the man page again and still see no way to execute multiple commands series; there appears to be no macro or multiple-command capability. – dirtside Jan 11 '10 at 23:32