PDA

View Full Version : Tile Tutorial - Slow to load - always on top



jasarius
July 21st, 2005, 08:18 PM
Quick question:

Tutorial works great. I only changed the size from 34 x 34 to 10 x 10. Everything else remained the same. I'm not sure if this is supposed to happen, but it literally takes almost a minute to load/publish preview.

One other thing. I have it on the very first layer. I have some simple text on top and it doesn't show.

My expertiese in AS is vast. I know enought AS to make a button. :pleased:

Any ideas?

Thank you.

kirupa
July 21st, 2005, 08:27 PM
Your SWF loaded almost instantly for me jasarius. Regarding the text, it is a depth issue. Simply make your text a movie clip and add the following code to the movieclip:

onClipEvent(load) {
this.swapDepths(1000);
}:P

jasarius
July 21st, 2005, 08:55 PM
Thank you.