Just relized that my links next to the screen movies wasn't working here is the source files for both Sothink and Flash8:
It's very easy to add just past the code and name the object, remeber to have 5 frames to the start of your swf movie.
For the toolpath screen name the instance: machscreen_mov
For the Gcode screen name the instance: GCODE_mov
Past the code below,but it's already set up in the below files:
////////Send stage size/////////
   _root.Stagesize = (Stage.width+" X "+Stage.height);
   fscommand("StageW", Stage.width);
   fscommand("StageH", Stage.height);
   //Toolpathscreen/////
   
   //keeping track getting property
   // X Y positioning
   _root.ToolX = getProperty(machscreen_mov, _x);
   _root.ToolY = getProperty(machscreen_mov, _y);
   // find height width
   _root.ToolWidth = getProperty(machscreen_mov, _width);
   _root.ToolHeight = getProperty(machscreen_mov, _height);
   //find scale factor
   _root.xscale = getProperty(machscreen_mov, _xscale);
   _root.yscale = getProperty(machscreen_mov, _yscale);
   //Sending Fscommand add what ever we can control here
   fscommand("ToolX", _root.ToolX);
   fscommand("ToolY", _root.ToolY);
   fscommand("ToolWidth", _root.ToolWidth);
   fscommand("ToolHeight", _root.ToolHeight);
   ////End script/////////////
   
   //////GCode watch//////////
   
   //keeping track getting property
   //X Y position
   _root.GCODEX = getProperty(GCODE_mov, _x);
   _root.GCODEY = getProperty(GCODE_mov, _y);
   //Movie size
   _root.GCODEHeight = getProperty(GCODE_mov, _height);
   _root.GCODEWidth = getProperty(GCODE_mov, _width);
   //Movi scale factor
   _root.GCODExscale = getProperty(GCODE_mov, _xscale);
   _root.GCODEyscale = getProperty(GCODE_mov, _yscale);
   //Sending Fscommand add what ever we can control here
   fscommand("GCODEX", _root.GCODEX);
   fscommand("GCODEY", _root.GCODEY);
   fscommand("GCODEWidth", _root.GCODEWidth);
   fscommand("GCODEHeight", _root.GCODEHeight);
   ////////end script///////////