Index: /trunk/src/scriptbuilder/structures/SimulationScript.java
===================================================================
--- /trunk/src/scriptbuilder/structures/SimulationScript.java	(revision 182)
+++ /trunk/src/scriptbuilder/structures/SimulationScript.java	(revision 194)
@@ -274,5 +274,6 @@
      */
     private void createAudioDirectory(Path path){
-        File f = new File(path.toString()+"/audio");
+        String separator = System.getProperty("file.separator");
+        File f = new File(path.toString()+separator+"audio");
         if(!f.exists())
         {
@@ -285,5 +286,5 @@
             {
                 String name = ((Integer) i.number).toString();
-                File incidentFolder = new File(path.toString()+"/audio/"+name);
+                File incidentFolder = new File(path.toString()+separator+"audio"+separator+name);
                 if(!incidentFolder.exists())
                 {
@@ -306,5 +307,13 @@
                             String output = radioEvent.toScriptFile();
                             //optimally, this line should use the ID, but to account for files being read in, it needs to be the radiofile name
-                            File newAudioScript = new File(path.toString()+"/audio/"+name+"/"+radioEvent.radioFile.replaceAll(".mp3","")+".txt");
+                            File newAudioScript = new File(
+                                    path.toString()+
+                                            separator+
+                                            "Audio"+
+                                            separator+
+                                            name+
+                                            separator+
+                                            radioEvent.radioFile.replaceAll(".mp3","")+
+                                            ".txt");
                             
                             try
@@ -317,5 +326,6 @@
                             }catch(Exception e)
                             {
-                                System.err.println("there was a problem creating your text files");
+                                //to find the bug that triggers this Exception, we need to print out the lines that 
+                                System.err.println("there was a problem creating your text files for: " + radioEvent.radioFile + "\n" + e.getMessage());
                             }
 
