Question : Scaling Issues

I have been working on this for almost two days now and I still can't seem to fix this issue.  I created a chart in php here:
http://thefringesf.com/chart.php

but when I open it in the swf file that I want to load into my flash site I get this:
http://thefringesf.com/graphing.swf

How do I stop this swf file from scaling, I want it set to (689,134)  or how can I get the php file to load in a mc on my flash site?
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
import flash.display.StageScaleMode;
stage.scaleMode = StageScaleMode.NO_SCALE;
var graphLoader:Loader = new Loader();
var theURL:String = "http://thefringesf.com/open-flash-chart.swf?data=http%3A%2F%2Fthefringesf.com%2Fchart-data.php";

var graphRequest = new URLRequest(theURL);
graphRequest.method = URLRequestMethod.GET;

graphLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete);
graphLoader.load(graphRequest);


//graphLoader.width = 689;
//graphLoader.height = 134;

function onComplete(evt:Event) {
	                        
addChild(graphLoader);

}

Answer : Scaling Issues

Try embedding the main swf that calls the other swf into an html page.
Random Solutions  
 
programming4us programming4us