I'm using Flash CS5 with AS3. It's a bit of a weird situation. I have a Dynamic Text in a MovieClip with an instance name of 'message_text'. That text initially holds the value "Loading...".

Then I have a VideoLoader class that loads and controls an external SWF video:

public function loadVideo (video, beginframe, endframe, isanswer, container)
{
   ...
   this.messagePanel = new MessagePanel();
   this.container.addChild(messagePanel);
   loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, onProgressHandler);
   loader.contentLoaderInfo.addEventListener(Event.COMPLETE, loadHandler);
   loader.load(new URLRequest(video));      
}

function onProgressHandler(event:ProgressEvent)
{           
    var percent:Number = Math.round(event.bytesLoaded/event.bytesTotal*100);
    var st_percent:String = String(percent);
    this.messagePanel.message_text.text = st_percent+"% loaded";
    if (percent == 100)
    {
        this.container.removeChild(this.messagePanel);
    }
}   

This works PERFECT when I test it in flash and when I export the SWF and try it on my computer. BUT when I upload it to the server, the messagePanel movieclip doesn't show the text I add in the onProgressHandler() method. It does show text if I add it directly on the stage.

What could be the problem here? I don't understand. Fonts are already embedded. Even if I try with a font like Arial, still doesn't work. The value of percent is correct since it removes the child when it reaches 100 in the server too. And again, the text functionality works perfect in localhost, but not in the server.

Thank you very much for your help.

link|improve this question

1  
Perhaps you have forget to upload your videofile to the server? If not, then you might have forget to upload crossdomain.xml More info about crossdomain.xml -> adobe.com/devnet/articles/crossdomain_policy_file_spec.html – Jarno Dec 14 '11 at 17:43
Do I need to upload a crossdomain file only to change a dynamic text of a movieclip from as3 all within the same app? – Vika Dec 14 '11 at 17:50
no you dont.. sorry my comment wasnt too good :) But it might be the reason why your onProgressHandler doesnt fire.. you know, if there is error before that.. another messy comment :) my brains are still sleeping – Jarno Dec 14 '11 at 17:54
Actually the event does fire, since it removes the child when the percentage is 100. So I have no clue what's going on here. The only part that doesn't work is setting the text. Anyway, I'll keep trying later. Thank you for your comments :) – Vika Dec 14 '11 at 18:03
When and where are you setting the text to Loading... is there a chance that is firing after the event finishes? – nhutto Dec 14 '11 at 20:37
show 1 more comment
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.