# Scaling a loader

**URL:** https://forum.kirupa.com/t/scaling-a-loader/293362
**Category:** flash
**Created:** [July 27, 2009, 11:41pm UTC](https://forum.kirupa.com/t/scaling-a-loader/293362 "2009-07-27T23:41:25Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![pixel\_chick](https://avatars.discourse-cdn.com/v4/letter/p/eada6e/32.png) [@pixel\_chick](https://forum.kirupa.com/u/pixel_chick)
#### Post date: [July 27, 2009, 11:41pm UTC](https://forum.kirupa.com/t/scaling-a-loader/293362/1 "2009-07-27T23:41:25Z")

</div>

I have a Flash site that is set to full screen using the swfobject like so:

var so = new SWFObject(‘main.swf’, ‘main’, ‘100%’, ‘100%’, ‘9’, ‘#FFFFFF’);  
so.addParam(“scale”, “noscale”);  
so.addParam(“menu”, “false”);  
so.addParam(“allowFullScreen”,“true”);  
so.write(“flashcontent”);

This works great and resizes the swf as its supposed to. However, I am loading some external swfs into a loader in that main file. Once a swf is loaded, the whole thing reverts back to actual size. Is there a way to scale the loader so it is the same as the main swf?
