I’ll try to explain better exactly what I’m trying to figure out.
I have one main.swf which contains the navigation of the site. Each of these buttons will load for instance “aboutme.swf” which can contain text and images. So I have one main site and all pages in their own .swf files.
Now say that main.swf is 600400px in size. And the information in aboutme.swf is only 200300px. Do I have to use 600400px for aboutme.swf in order to get the information to load in the position I like in main.swf? Or can I make aboutme.swf 200300px in window size and somehow decide where it should appear in main.swf with actionscript?.
In short, this is how I’d like it.
When pressing aboutme button, loadMC aboutme.swf to (x: 200, y: 320) in main.swf.
The way I’ve been doing is simply using the size for every page. This is what the book “ActionScript For Dummies” thought me.