http://www.nirinc.com/
I mean this two ways preloader…
I know that that’s simple, but i dont know how…
BTW, ow can i make this preloader like who’s we did, on www.infiniumlabs.com, i mean this digital prealoader, wth big digits…
i no it’s unethical, and in no way do I promote this, but I ripped the action script off of the sprite of the SFW on NIR, and this is what is contained:
[AS]
// Action script…
// [onClipEvent of sprite 1 in frame 6]
onClipEvent (load)
{
time = getTimer() + 250;
}
onClipEvent (enterFrame)
{
t = getTimer();
if (t < time)
{
if (_root.LoadCheck == true)
{
_parent.gotoAndPlay(“static”);
}
else
{
_parent.gotoAndPlay(“go”);
} // end if
} // end if
}
// [onClipEvent of sprite 1 in frame 7]
onClipEvent (load)
{
_parent.dynBar._width = 0;
_root.vLoaded = 0;
_root.vToLoad = 0;
_parent.loadNum = 0;
}
onClipEvent (enterFrame)
{
t = Math.round(_root.vLoaded / _root.vToLoad * 100);
_parent.dynBar._width = t;
if (t >= 1)
{
_parent.loadNum = t;
} // end if
if (_root.vLoaded >= _root.vToLoad && _root.vToLoad != 0 && _root.LoadCheck == true)
{
_parent.gotoAndPlay(“out”);
} // end if
}
// [onClipEvent of sprite 2 in frame 13]
onClipEvent (load)
{
this._width = 1;
}
// [onClipEvent of sprite 2 in frame 20]
onClipEvent (load)
{
this._width = 1;
}
// [Action in Frame 1]
stop();
// [Action in Frame 2]
play();
// [Action in Frame 6]
stop();
// [Action in Frame 7]
play();
// [Action in Frame 13]
stop();
// [Action in Frame 14]
play();
// [Action in Frame 21]
_root.vLoaded = 0;
_root.vToLoad = 0;
_root.LoadCheck = false;
if (_root.HomeLoad == true)
{
_root.HomeLoad = false;
_root.gotoAndStop(2);
}
else
{
_root.loadClip.gotoAndStop(2);
} // end if
stop();
[/AS]
I never do this unless, it is for learning purposes, please do not copy this action script and use it for yourself, since it is under copyright law.
As for the digital one, u need to make a fainted looking digital panel, and then use a digital font, basically its all simple action script, like loadText in the preloader tutorials here. Hope this helped
Wow … that’s on hellova script.
For the two side preloader, you could also just follow the tutorial on kirupa.com (here), but instead of setting the registration point to the left, keep it in the middle. And then of course, also change the value in the as to the double width.
yea, registration points are very nifty when it comes to animation, i totally forgot to mention that, thx Voetsjoeba :A+: