: >
: |> hi all,
: |> one question,
: |> if i am to keep a list of all openframe in an array like
: |> suggested above, can someone please tell me, how much memory
: |> i am putting aside for each frameexec object.
: Check Chapter 4 of the Language Reference Manual - objects are accessed
: through reference variables, thus the global array of FrameExec's is
: actually an array of FrameExec reference variables not of the FrameExec
: objects themselves. Storage therefore should not be an issue.
Of course, you need to be careful to remove the FrameExec from the
array when the frame exits; otherwise you're keeping the FrameExec and
everything it points to in memory unecessarily (by having a reference to it);
this *is* expensive.
Mike