/**
  * Opens a recording file, adding all nodes in it to the context.
  *
  * @param theFile The file to open.
  * @return The created player node.
  */
 public CCOpenNIPlayer openFileRecording(String theFile) {
   try {
     return new CCOpenNIPlayer(_myContext.openFileRecordingEx(CCIOUtil.dataPath(theFile)));
   } catch (GeneralException e) {
     throw new CCOpenNIException(e);
   }
 }