Hi all, I have been wondering about this for a while I would like some opinions on this. I did search for this, with no luck, so If there is another thread on this I apologise, please direct me to it!
What is the best way to structure a complete Flash site?
here’s how I have been doing it:
Index.html - which holds holder.swf (blank holder - level0)
holder.swf then loads my main.swf to level50 (just so I have 49 levels to play with if needed) which has a blank layer where all content is placed and other lower levels will be seen.
all other sections are loaded into lower levels than level50
For smooth trasitions between each loaded level requires alot of checking actionscipt routines.
This is why I ask is there another/better way? or am I doing it right!
usually i have my index swf load all my other movies. it’s a good way if you plan on having transitions. your transition and navigation would be your index.swf and that can load ther movies from there
Hi Digitalosophy, do you load your other movies into the index.swf into different levels? or do you load them into an empty movieclip like I have seen mentioned here before? if so what is the difference/benefits between using levels and empty MC’s
well at first i was using levels, now i use a movieclip. as far as the benefits, its really only cleaner code
let me explain. let’s say you have 7 movies to be loaded. if you load onto levels, you’ll ned to make sure each button unload 6 of the movies, that means
Ah yes I see, do you have an example of the placeholder(movieclip) way. I have never done it that way, so when you load another movie into the place holder it just over writes the one that was there previously? Is that correct?