Visual SceneMaker is an authoring tool for creating interactive presentations aimed to non-programming experts. It supports the modeling of verbal and non-verbal behavior of Virtual Characters and robots. Therefore, it provides users with a graphical interface and a simple scripting language that allows them to create rich and compelling content.
Our solution: On TEdge.java modify setTimeout function with and exception ( which is already caught at the view) when the timeout value is invalid.
public void setTimeout(long value) throws Exception { if(value >= 0){ mTimeout = value; }else{ throw new Exception("Invalid Time Out Egde Value"); } }