I am updating my Error Reporting script to include all variable information (Local, Global, etc) and I am wondering how I would get the contents of a variable who's name is held within a variable?

Just analyze the script below and you'll see what I mean...

  -- Globals
  put cr&cr& "Global Variables..." &cr after theMessage
  put globalNames() into varNames
  repeat with x=1 to the number of items in varNames
    put "     " & line x of varNames after theMessage
    put variableContents(line x of varNames) &cr after theMessage
  end repeat


Derek Bump
Dreamscape Software
_______________________________________________
Compress Images Easily with JPEGCompress 2.6.1
http://www.dreamscapesoftware.com/
_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to