Quote:
Originally Posted by zokemon
That's not true Ziro. Here's a perfect case:
PHP Code:
//#CLIENTSIDE
function onCreated() {
this.myobj = new TStaticVar();
this.myobj.join("myclass");
}
You wouldn't be able to do that serverside as your object doesn't exist over there  .
|
I did this serverside and it works fine?
PHP Code:
case "accessClass": {
temp.access = new TStaticVar();
temp.access.join(params[1]);
temp.access.(@ params[2])(@ params[3]);
temp.access.destroy();
return true;
}
Or isn't that what you ment?