private List<Action> rewriteActions(SWFUrlRewriter rw, List<Action> actions) {
ArrayList<Action> newActions = new ArrayList<Action>();
for (Action action : actions) {
if (action instanceof Table) {
Table table = (Table) action;
table.setValues(rewriteStringValues(rw, table.getValues()));
newActions.add(table);
} else if (action instanceof Push) {
Push push = (Push) action;