You can purge stacks from memory like this:

on purgeStack x
    put the mainStack of x into tS
    put cr & the subStacks of x after tS
    repeat for each line l in tS
      close stack l
    end repeat
    delete stack x
end purgeStack

Greetings,
WA

Correction, copied the wrong handler, sorry

on purge x
  put  x into tS
  put cr & the subStacks of stack x after tS
  repeat for each line l in tS
    close stack l
  end repeat
  delete stack x
end purge

Greetings,
WA

_______________________________________________
use-revolution mailing list
[EMAIL PROTECTED]
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to