QUOTE(kanderson @ Dec 29 2005, 06:37 PM)

As posted, we tried to run a swf with a similar script. It will crash the flash player on the xbox. I am guessing it's due to the fonts in the dynamic textfields.
How about if trying to creating textfield object on the fly
Hence.. instead of doing _root.textLabel.text += "string" all the time
We try to do this instead
CODE
var i = 1;
for (var propName in _global )
{
_root.createTextField("txtLabel" + i, i, 0, i * 15, 1000, 15);
_root[ "txtLabel" + i ].text = propName;
i++;
}
instead? They might have restriction of how much characters can a textfield has, but certainly they don't have
limits on how many objects we can made (hopefull?)
Regards.
Note:
If this is also not possible, it is entirely possible to create a timer object that swaps the context of textfields
on the fly. Or if we're really desperate we can create 27 movieclips that represent each alphabet letter. And create a function that attaches movieclips of the passed argument. I.e. display( "propName" );
The movieclipe p, r, o, p, n, a, m, e (we can use alternate background color to indentify capital or small letter). Sounds farfetch, but I don't think MS/Macromedia restrict attaching movies
