> Is it possible for the script of one object to set/get a script local
> variable value of another object?  If yes, how?

Not directly, as far as I know. You have to write getter & setter
routines in the object containing the script local:

local sLocalVar

command setLocalVar pNewValue
   put pNewValue into sLocalVar
end setLocalVar

function getLocalVar
   return sLocalVar
end getLocalVar


Cheers,
Sarah

Rodeo discussion:
http://rodeoapps.com/rodeo-discuss-among-yourselves
_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to