Publically readable hashtables

What is the best way to access hashtables from other scripts? Assuming I'm using javascript should I just declare the hashtable as a static var and simply refer to it the same way as I would other public variables, or is there a better way to do it?

Thanks, Dave

You wouldn't want to declare it as static. Just doing `var mytable : Hashtable` should make it a public member variable by default and therefore accessible through other scripts.