Halaman

Selasa, 30 Agustus 2011

Mencari Upload file.swf

Rencananya, pengen blog saya bisa menampilkan file swf.
Barusan coba upload file di:
http://www.swfcabin.com

setelah di upload, dapat link ini:
http://www.swfcabin.com/open/1314690992

tapi kok pas di coba link nya, masih kurang pas seperti yang saya inginkan
Jadi, coba cari yang lain deh..


Ketemu http://www.swfup.com
tapi kok masih belum pas.
pengennya http://www.swfup.com/file.swf
tapi yang dapat link: http://www.swfup.com/view/tvs2

ternyata file swf nya cuma tinggal ditambahin .swf aja.


Testing 1
-----------



Testing 2
-----------





Testing 3
-----------


Testing 4
-----------
"http://www.swfup.com/view/tvs2.swf" height="120" type="application/x-shockwave-flash">

Kamis, 18 Agustus 2011

Menggunakan getBounds()

programnya:
this.createEmptyMovieClip("square_mc", 1);
square_mc._x = 10;
square_mc._y = 10;
square_mc.beginFill(0xFF0000);
square_mc.moveTo(0, 0);
square_mc.lineTo(100, 0);
square_mc.lineTo(100, 100);
square_mc.lineTo(0, 100);
square_mc.lineTo(0, 0);
square_mc.endFill();

var bounds_obj:Object = square_mc.getBounds(this);
   for (var i in bounds_obj) {
   trace(i+" --> "+bounds_obj[i]);
}

hasilnya:
yMax --> 110
yMin --> 10
xMax --> 110
xMin --> 10

sumber:
http://help.adobe.com/en_US/as2/reference/flashlite/WS5b3ccc516d4fbf351e63e3d118ccf9c47f-7cef.html