On Jan 17, 2006, at 2:49 PM, Frank Di Luzio wrote:
Maybe your adding stuff to the actorlist and not disposing them?
Maybe you are creating new cast members and not disposing of them properly?

Try to free some memory by using the memory inspector window. This will
unload any stuff that is loaded in RAM and not being used.

Frank

i'm using the window only to read the image from its' stage.
there's no reference to the window apart from the one variable 'player'.

this is the lingo;

--
on startMovie
  _global.player = window().new("player.dir")
  _global.player.rect = rect( -1000,-1000,-520,-360 )
  _global.player.open()
  _global.player.moveToBack()
  _global.pinch = script("pinch").new()
  _movie.useFastQuads = TRUE
end


on stopMovie
  _global.pinch.destroy()
  _global.pinch = void
  _global.player.close()
  _global.player.forget()
  -- _global.player = void
end
--


i've tried all combinations of voiding the variable or not,
closing before forget or not, not moving to back etc..


thanks
\rri




[To remove yourself from this list, or to change to digest mode, go to 
http://www.penworks.com/lingo-l.cgi  To post messages to the list, email 
[email protected]  (Problems, email [EMAIL PROTECTED]). Lingo-L is for 
learning and helping with programming Lingo.  Thanks!]

Reply via email to