# Swf only partially loads

**URL:** https://forum.kirupa.com/t/swf-only-partially-loads/116866
**Category:** Uncategorized
**Created:** [July 21, 2004, 11:43pm UTC](https://forum.kirupa.com/t/swf-only-partially-loads/116866 "2004-07-21T23:43:13Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![pr0fess0r](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/pr0fess0r/32/480_2.png) [@pr0fess0r](https://forum.kirupa.com/u/pr0fess0r)
#### Post date: [July 21, 2004, 11:43pm UTC](https://forum.kirupa.com/t/swf-only-partially-loads/116866/1 "2004-07-21T23:43:13Z")

</div>

Hi Guys  
I have a movie that sometimes only seems to load some of the elements on the stage when viewed in a browser, a refresh usually fixes it. It’s especially a problem in IE. I’m saving it in flash player 7 format. I wonder if it is because of the way I have it working:  
Frame 1. A bg movie clip plays while the actionscript tries to load data using sendandload. The movie essentially stops until the data is loaded (it keeps trying) then progresses to the nest frame.:

```auto
stop();
_root.loader.loadingtext.text="Please wait...";
var popupData = new LoadVars();
getData = function () {
	popupData.onLoad = function(success) {
		if (success) {
			_global.tickertext = popupData.tickertext;
                // Other data gets populated into variables here
                nextFrame();
		}else{
			getData();
		}
	};
	popupData.sendAndLoad("http://blah/flash_popup.php", popupData, "POST");
};
getData();

```

Then on frame 2 are all the movie clips and stage elements. Is there a way maybe to force these to load first?  
Thanks in advance

Lucas
