[flexcoders] Sprite memory footprint versus array+Shape

2008-01-28 Thread cohcoloco
I have a lot of sprites on my screen, as i started using them as containers, but i noticed when too many of them are on the screen, things start to slow down. I thought it might be useful to instead of using the Sprite container, to create a Shape container, as this might increase performance.

[flexcoders] Re: remove a single lineTo() of many lineTo()'s from graphics class?

2007-11-17 Thread cohcoloco
PROTECTED] On Behalf Of cohcoloco Sent: Friday, November 16, 2007 11:34 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] remove a single lineTo() of many lineTo()'s from graphics class? is it possible to remove a line after ive drawn it to the sprite.graphics or am I forced

[flexcoders] remove a single lineTo() of many lineTo()'s from graphics class?

2007-11-16 Thread cohcoloco
is it possible to remove a line after ive drawn it to the sprite.graphics or am I forced to redraw the entire thing if one piece changes? i know i can store each line as a seperate DisplayObject, but how then would set a fill to it?

[flexcoders] accessing public properties from loaded mxml swf (flex 2.01)

2007-11-13 Thread cohcoloco
I'm trying to access the public properties from an swf that I've loaded, but I get the error: ReferenceError: Error #1069: Property test_property not found on _test_app_mx_managers_SystemManager and there is no default value. I load an as3 swf using the same technique, with the same variable

[flexcoders] possible bug in loading mxml swf's in vista64

2007-11-13 Thread cohcoloco
I posted earlier that I was having trouble accessing public variables from a loaded swf that was compiled from mxml, but worked fine if it was pure as3, and this problem only seems to exist on my vista64 machine. it seems to work fine on linux and winxp :/ is this a known bug?

[flexcoders] Re: accessing public properties from loaded mxml swf (flex 2.01)

2007-11-13 Thread cohcoloco
ok, in testing this with a few other boxes, I believe this to be a bug in Vista64, where the bug was showing itself. The code works fine in linux and xp. i'll send this to Adobe as a bug report. --- In flexcoders@yahoogroups.com, cohcoloco [EMAIL PROTECTED] wrote: I'm trying to access