I’m trying to do a reflection like this:
http://www.flashden.net/item/reflection-preloader/10737
I created a text box with the variable “upright”. Then I created a duplicate, except this one had a -100% height transform and held the variable “reflected”. I only had success changing the value of the upright one. The reflected one was blank…
bytes_loaded = this.getBytesLoaded();
bytes_total = this.getBytesTotal();
getPercent = bytes_loaded/bytes_total;
this.loadText = Math.round(getPercent*100)+"%";
this.reflected = Math.round(getPercent*100)+"%";
if (bytes_loaded == bytes_total) {
this.gotoAndPlay("doneLoad");
}