Neler yeni

Yeni mesajlar Yeni konular En çok mesaj En çok tepki En çok görüntülenen

Arkadaş Bi Flashda Loading Nasıl Yaparım

seliim

🌱Yeni Üye🌱
Katılım
20 Tem 2007
Mesajlar
23
Tepkime puanı
0
arkadaşlar flash yükleniyor ( loading ) nasıl yaparım Şimdiden Saolun
 

Androit

⭐Deneyimli Tasarımcı⭐
Katılım
17 Ağu 2007
Mesajlar
185
Tepkime puanı
0
öncelikle action script yazmayi bilmen gerekliyo ben basitten anlatayim sayfanın içerisine boş bi tane move clip ac adini ttt koy sonra birtane text box koyup var kısmına Bolum yaz B büyük.. sonra bu text boxın icine % işaretı koy bırak. sonra birtanede yine text box koy bununda var kısmına yuklenen yaz.
sonra onun ilk framesine su kodları yapıstır...

https://rapidshare.com/files/51206624/preloader.rar
onClipEvent (load) {total = int(_root.getBytesTotal());}

onClipEvent (enterFrame) {
StatusColor = new Color(_root.Bar);
yuklenen= int(_root.getBytesLoaded());
bolum= int(yuklenen/total*100);

if (bolum>20) {
_level0.load = "yazı 1";
StatusColor.setRGB( 0xf6f6f6 );
}

if (bolum>40) {
_level0.load = "yazı2";
StatusColor.setRGB( 0xf6f6f6 );
}

if (bolum>60) {
_level0.load = "yazı3";
StatusColor.setRGB( 0xf6f6f6 );
}
if (bolum>80) {
_level0.load = "yazı4";
StatusColor.setRGB( 0xf6f6f6 );
}

if (bolum==90) {
_level0.load = "yazı5";
StatusColor.setRGB( 0xFFFFFF );
}

_root.yuklenen= yuklenen+ " %";
setProperty ("_root.Bar", _xscale, yuklenen);

if (yuklenen>= 100) {tellTarget ("_root") {play();}}

}
birtanede bar isimli bir movie klipyap bununda içine dikdortgen bişe ciz buda load barın olacak bununda adini Bar yaz simdi çalışır örnegi de atiyorum kullanırsın denersin oke?
biraz acemi işi oldu ama derlersin :D
 

Androit

⭐Deneyimli Tasarımcı⭐
Katılım
17 Ağu 2007
Mesajlar
185
Tepkime puanı
0
tabi istedigin farklı bi loader varsa elinden gelen yardimi yaparim kolay gele
 

Androit

⭐Deneyimli Tasarımcı⭐
Katılım
17 Ağu 2007
Mesajlar
185
Tepkime puanı
0
haaaaa :D androit
unuttum kusura bakma
 

Androit

⭐Deneyimli Tasarımcı⭐
Katılım
17 Ağu 2007
Mesajlar
185
Tepkime puanı
0
tabi bide insan teşkkur eder...
 

mc_mrt

⭐Deneyimli Tasarımcı⭐
Katılım
17 Ağu 2007
Mesajlar
244
Tepkime puanı
4
Web sitesi
www.gravideo.org
Step 1

Create a new flash document. Select Modify > Document (shortcut key: Ctrl+J ). Set the width of your document to130 pixels and the height to 80 pixels. Select #252525 as background color. Set your Flash movie's frame rate to 22 and click ok.

3761219_img1.gif


Step 2

Take the Rectangle Tool (R). In the Colors portion of the Tool panel, block the Stroke color by clicking on the little pencil icon and then on the small square with the red diagonal line. For Fill color choose black color and draw a "rectangle" about 105x45px.

361220_img2.gif

1361220_img3.gif


Step 3

While the rectangle is still selected, go to the Align Panel (Shortcut key:Ctrl+K) and do the following:

1. Make sure that the Align/Distribute to Stage button is turned on,
2. Click on the Align horizontal center button and
3. Click the Align vertical center button.

5661220_img4.gif


Now, you have aligned the rectangle with the background.

Step 4

Take the Text Tool (A) and go to the Properties Panel below the stage. Then, choose the following options:

1. Select a Static Text field.
2. Select MGI Archon as font
3. Choose 13 as font size.
4. Select white as color.
5. As the rendering option, select Anti-alias for readability.

3061221_img5.gif


Then, type within the black rectangle, on the left side "LOADING.....". See the picture below.
4261221_img6.gif


Step 5

Take the Selection Tool (V) and select the text ("LOADING...") and black rectangle. Then, press F8 key (Convert to Symbol) to convert this rectangle and text into a Movie Clip Symbol

261222_img7.gif


Step 7

Click on frame 100 and press F5 key. After that, create a new layer above the layer 1 and name it percent.

Step 8

Select perecent layer and Take the Text tool (T). Then, go to the Properties Panel (Ctrl+F3) below the stage, and select the following options:

a) Select a Dynamic Text field.
b) Select MGI Archon as font.
c) Choose 13 as font size and bold it.
d) Select white as color.
e) As the rendering option, select Anti - alias for readability.
f) For Var: type "perc1"

261223_img9.gif


Then, type after "LOADING....." 99%. see the picture below.

4461223_img10.gif


Step 9

Go back on the main scene (Scene1)
361224_img11.gif

Step 10

Take the Selection Tool (V), click once on the "preloader" to select it and open the Action Script Panel (F9). Then, enter the following Action Script code:

onClipEvent (load) {
total = _root.getBytesTotal();
}

onClipEvent (enterFrame) {
loaded = _root.getBytesLoaded();
percent = int(loaded/total*100);
perc1 = ""+percent+"%";
gotoAndStop(percent);
if (loaded == total) {
_root.gotoAndPlay(2);
}
}

We're done with the prelaoder. To see how it works, click on the first frame and go again to the A.S.panel. Then, enter this script inside the Actions panel:

stop();

After that, create a new layer above the prelaoder layer. click on the second frame and press F6 key. After that, Import, place, create any animation, image, movie on the second frame.Then, click again on the second frame and type again:

stop();

inside the Actions panel.

DOWN (fla) :
https://www.flashfridge.com/img/661226_BlackAndWhitePreloader.fla

İngilizce Oldu :( Ama İşini Görür Heralde.
 

Androit

⭐Deneyimli Tasarımcı⭐
Katılım
17 Ağu 2007
Mesajlar
185
Tepkime puanı
0
hmmm güzel anlatım olmuş eline sağlık.
 

Ali Emre

👑Efsanevi Grafiker👑
Katılım
30 Tem 2007
Mesajlar
2,141
Tepkime puanı
85
Web sitesi
gncart.com
sağol ingilizce ama resimler herşeyi anlatıyor zaten
 

Ali Emre

👑Efsanevi Grafiker👑
Katılım
30 Tem 2007
Mesajlar
2,141
Tepkime puanı
85
Web sitesi
gncart.com
sağol ingilizce ama resimler herşeyi anlatıyor zaten
 
Üst