Index: lams_common/src/flash/org/lamsfoundation/lams/common/DebugDialog.as =================================================================== diff -u -r4a59bc06c4e01c867533da0757fe0f2f9aa13d45 -rd4df84272df92c6262ca35f6183299127406df45 --- lams_common/src/flash/org/lamsfoundation/lams/common/DebugDialog.as (.../DebugDialog.as) (revision 4a59bc06c4e01c867533da0757fe0f2f9aa13d45) +++ lams_common/src/flash/org/lamsfoundation/lams/common/DebugDialog.as (.../DebugDialog.as) (revision d4df84272df92c6262ca35f6183299127406df45) @@ -25,6 +25,7 @@ private var load_btn:Button; private var assign_btn:Button; //Assign property private var serialize_btn:Button; //Serialize an object and trace + private var sendData_btn:Button; //Send Data to an object to send it to the server private var showProps_btn:Button; //Serialize an object and trace private var clear_btn:Button; //Clear text area @@ -110,6 +111,7 @@ assign_btn.addEventListener('click',Delegate.create(this, assignProperty)); serialize_btn.addEventListener('click',Delegate.create(this, serialize)); + sendData_btn.addEventListener('click',Delegate.create(this, crashDumpToServer)); showProps_btn.addEventListener('click',Delegate.create(this, showProperties)); clear_btn.addEventListener('click',Delegate.create(this, clearText)); load_btn.addEventListener('click',Delegate.create(this, loadHandler)); @@ -227,6 +229,11 @@ } } + private function crashDumpToServer(){ + Debugger.crashDataDump(); + + } + /** * Shows the properties of the object entered into the textInput */