1 - My preloader
This is what I have on frame 1, on frame 2 I have....
No, my problem is it doesn't seem to be work. What I want to happen is once my flash movie is done loading is to goto another scene that I've named "Intro". Doesn't seem to be working...
2 - Line Tool issuses..
a - It seems you are not able to apply a mask effect to anything created with the line tool, is there away around this?
b - It seems you are not able to resize the lines you've created without making the lines themselves thicker? Is there away around this?
I figure there has to be someone on ATOT that knows flash very well..
bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
this.loadBar._width = getPercent*100;
this.loadText = Math.round(getPercent*100)+"%";
if (bytes_loaded == bytes_total) {
this.gotoAndPlay("Intro", 1);
}
This is what I have on frame 1, on frame 2 I have....
this.gotoAndPlay(1);
No, my problem is it doesn't seem to be work. What I want to happen is once my flash movie is done loading is to goto another scene that I've named "Intro". Doesn't seem to be working...
2 - Line Tool issuses..
a - It seems you are not able to apply a mask effect to anything created with the line tool, is there away around this?
b - It seems you are not able to resize the lines you've created without making the lines themselves thicker? Is there away around this?
I figure there has to be someone on ATOT that knows flash very well..