Loading Levels only for looks? Depends…

Using 2004 to test loading some levels on this … *ahem*, “app” I’m working on. It seems that although the level does stream in via the bandwidth profiler, getBytesLoaded and getBytesTotal are returning the full values. Interestingly, if you hardcode the level, you get the correct results. Check it, this gives me the full bytes even though I’m “streaming” in Flash:
<code>
var mc = eval(“_level ” + this._parent.MOVIE_LEVEL);
var l = mc.getBytesLoaded();
var t = mc.getBytesTotal();
</code>
This gives me the correct streaming results:
<code>
var l = _level1.getBytesLoaded();
var t = _level1.getBytesTotal();
</code>

Alllllllllllllllllllllllllllllll righty then.