Index: trunk/src/tmcsim/application.properties
===================================================================
--- trunk/src/tmcsim/application.properties	(revision 242)
+++ trunk/src/tmcsim/application.properties	(revision 246)
@@ -1,5 +1,5 @@
-#Wed, 20 Dec 2017 05:21:29 -0800
+#Thu, 07 Feb 2019 15:47:33 -0800
 
-Application.revision=240
+Application.revision=242
 
-Application.buildnumber=88
+Application.buildnumber=91
Index: trunk/src/atmsdriver/TrafficEventsAnimator.java
===================================================================
--- trunk/src/atmsdriver/TrafficEventsAnimator.java	(revision 232)
+++ trunk/src/atmsdriver/TrafficEventsAnimator.java	(revision 246)
@@ -53,4 +53,8 @@
     private List<String> history;
     /**
+     * name of events file obtained from properties
+     */
+    private String events_file = ""; 
+    /**
      * Creates the JPanel and builds the highways and events. 
      */
@@ -69,13 +73,13 @@
                  + CONFIG_FILE_NAME;
         Properties props = TrafficModelManager.loadProperties(propertiesFile);
-
+        events_file = props.getProperty("Events_File");
         FileInputStream fis = null;
         try
         {
-            fis = new FileInputStream(props.getProperty("Events_File"));
+            fis = new FileInputStream(events_file);
         } catch (FileNotFoundException ex)
         {
             Logger.getLogger(TrafficModelManager.class.getName()).log(Level.SEVERE, null, 
-                    "Missing Traffic Events file " + props.getProperty("Events_File"));
+                    "Missing Traffic Events file " + events_file);
             System.exit(-1);
         }
@@ -87,5 +91,5 @@
     public void load()
     {
-        txtDisplay.setText("Loading ...");
+        txtDisplay.setText("Loading traffic events from: " + events_file);
         history = new ArrayList<String>();
         // If we have any events left to process
