Hey, I'm trying to make it so that the word 'info' is equal to a bunch of commands that will take place so that I don't have to rewrite all these commands in each frame to save space. This is what i have.

info = ((_root.stream.streaming.gotoAndPlay(2)), (songplaying="true"), (_root.clock.active = 1));

But it isn't doing anything? You can see what i'm trying to make it do, Each part in Parenthesee's is a command I want it to do instead of writing all of this in hundreds of frames.

_root.stream.streaming.gotoAndPlay(2);
songplaying="true";
_root.clock.active = 1;

Thanx in advance