• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Calling all flash experts...

Tab

Lifer
1 - My preloader

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..
 
Back
Top