View Single Post
  #38  
Old 02-27-2008, 04:10 AM
Tolnaftate2004 Tolnaftate2004 is offline
penguin.
Join Date: Jul 2004
Location: Berkeley, CA
Posts: 534
Tolnaftate2004 is a jewel in the roughTolnaftate2004 is a jewel in the rough
Send a message via AIM to Tolnaftate2004
Quote:
Originally Posted by Inverness View Post
If you return in a with() block crazy stuff happens.
This is true, but I meant that dynamic functions are treated more like inline functions.

PHP Code:
//#CLIENTSIDE
function onCreated() {
  
temp.var = new TStaticVar();
  
with (temp.var) {
    
this.test_func = function () {
      echo(
"I win!");
    };
  }

  
temp.var.test_func(); // Doesn't work

__________________
◕‿‿◕ · pfa · check yer syntax! · src

Killa Be: when i got that locker in 6th grade the only thing in it was a picture of a midget useing a firehose :/
Reply With Quote