[Help!] Do ASC files cache?
Hi!
I have FMS 3.x developer version installed on my machine and it is working fine.. till.. I start using ASC files.
As long as I am with client side code, I have no issues. For some functionality addition, I needed to use an ASC file. To test the connection, I created an ASC file which has the following code:
application.onAppStart = function() {
this.allowDebug = true;
}
application.onConnect = function(client){
application.acceptConnection(client);
client.callFromClient = function(clientStr) {
return "Hello "+clientStr;
}
}
If I make any change to the above code, it doesnt reflect until I restart my FMS server. For example, if I am changing the return "Hello".. to return "Hi".. I need to restart FMS to see it work!
Pls help!
