Laman

Senin, 23 April 2012


TUTORIAL
Membuat Kuis Pilihan Ganda dengan Flash

Langkah-Langkah:
1.  Aktifkan program Macromedia Flash anda. Pada Creat New, pilih Flash Document.
2.Opsional: Pada Frame 1 Layer 1, buat background dengan rectangle tool. Klik kanan frame 7, pilh Insert Keyframe. Kunci Layer 1.
3.Klik Insert Layer (sudut kiri bawah timeline) untuk membuat Layer baru (layer 2).
4.                Klik Frame 1 Layer 2, buat judul kuis dengan Static Text. Di bawah judul, buatlah kotak nama dengan Input Text (aktifkan ‘Show border around text’). Pada Var, ketik ‘nama’. Tambahkan petunjuk pengisian kotak nama di atas Input Text. Sejauh ini hasilnya seperti gambar di bawah.
5.Klik kanan Frame 2 Layer 2, pilih Insert Blank Keyframe. Buat soal beserta pilihan jawabannya dengan tipe teks Static.
6. Klik Frame 2 Layer 2, kemudian tekan F6 pada Keyboard untuk meng-copy frame sampai dengan Frame 6. Klik Frame 3, ganti soal beserta jawabannya. Demikian seterusnya sampai dengan soal nomor lima yang ada di Frame 6.
7.Klik kanan Frame 7 Layer 2, pilih Insert Blank Keyframe. Sampai di sini, kunci Layer 2 dan simpan dulu dengan nama file LATIHAN1.
8.                Buat Layer baru (Layer 3). Klik Frame 1, Buat teks ‘MULAI’ dengan  Static Text, letakkan di bawah kotak nama. Klik Selection Tool (tanda panah kanan atas pada Tools), Klik kanan pada teks ‘MULAI’ tersebut, Pilih Convert  to Symbol, Type-nya pilih Button, lalu klik OK. Pastikan Panel Properties aktif, pada kotak Instance Name ketik ‘startbutton’.
9.  Klik kanan Frame 2 layer 3, pilih Insert Blank Keyframe. Buat object kotak dengan Rectangle Tool tepat di atas pilihan jawaban A. Tekan F8 (Klik kanan Convert to Symbol), pada Type pilih ‘Button’, klik OK. Klik ganda Kotak yang telah dikonversi menjadi button tersebut. Klik kanan pada Frame Up, pilih Cut Frames, klik kanan pada Frame Hit, pilih Paste Frames. Kemudian klik Scene 1 pada Timeline.
10.            Pastikan button kotak terseleksi, Ketik ‘button_a’ pada kotak Instance Name pada Panel properties.
11.              Kopi button kotak tadi (klik kanan, Copy Paste 3 kali) dan masing-masing letakkan tepat di atas pilihan B, C, dan D. Seleksi button di atas pilihan jawaban B, Ubah Instance Name-nya menjadi ‘button_b’, di atas pilihan jawaban C menjadi ‘button_c’, dan di atas pilihan jawaban D menjadi ‘button_d’. Sampai di sini, simpan dulu (tekan Ctrl+S).
12.             Klik Frame 2 Layer 3, tekan F6 4 kali untuk men-copy frame. Klik kanan Frame 7 Layer 3, pilih Insert Blank Keyframe. Kunci Layer 3.
13.             Buat Layer baru (Layer 4). Klik Frame 1 . Tekan F7 6 kali. Masih di Layer 7, kembali klik Frame 1, lalu tekan F9 untuk menampilkan panel Action dan masukkan ActionScript berikut (bisa dengan Copy-Paste):
stop();
score = 0;
startbutton.onPress = function() {
     nextFrame();
};
14.            Klik Frame 2 Layer 4, masukkan ActionScript berikut:
stop();
onEnterFrame = function () { skor = +score;};
button_a.onPress = function() {
     nextFrame();
};
button_b.onPress = function() {
     score += 20;
     nextFrame();
};
button_c.onPress = function() {
     nextFrame();
};
button_d.onPress = function() {
     nextFrame();
};
Keterangan: Soal no. 1 kunci jawabannya B. Jika button_b (pilihan jawaban B) diklik skor bertambah 20 dan menuju frame berikutnya yang berisi soal berikutnya.
15.             Klik Frame 3 (masih di Layer 4), masukkan ActionScript berikut:
stop();
onEnterFrame = function () { skor = +score;};
button_a.onPress = function() {
     score += 20;
     nextFrame();
};
button_b.onPress = function() {
     nextFrame();
};
button_c.onPress = function() {
     nextFrame();
};
button_d.onPress = function() {
     nextFrame();
};
Keterangan: Soal no. 2 kunci jawabannya A. Jika button_a (pilihan jawaban A) diklik skor bertambah 20 dan menuju frame berikutnya yang berisi soal berikutnya.
16.             Klik Frame 4 (masih di Layer 4), masukkan ActionScript berikut:
stop();
onEnterFrame = function () { skor = +score;};
button_a.onPress = function() {
     score += 20;
     nextFrame();
};
button_b.onPress = function() {
     nextFrame();
};
button_c.onPress = function() {
     nextFrame();
};
button_d.onPress = function() {
     nextFrame();
};
Keterangan: Soal no. 3 kunci jawabannya A. Jika button_a (pilihan jawaban A) diklik skor bertambah 20 dan menuju frame berikutnya yang berisi soal berikutnya.
17.             Klik Frame 5 (masih di Layer 4), masukkan ActionScript berikut:
stop();
onEnterFrame = function () { skor = +score;};
button_a.onPress = function() {
     nextFrame();
};
button_b.onPress = function() {
     nextFrame();
};
button_c.onPress = function() {
     score += 20;
     nextFrame();
};
button_d.onPress = function() {
     nextFrame();
};
Keterangan: Soal no. 4 kunci jawabannya C. Jika button_c (pilihan jawaban C) diklik skor bertambah 20 dan menuju frame berikutnya yang berisi soal berikutnya.
18.            Klik Frame 6 (masih di Layer 4), masukkan ActionScript berikut:
stop();
onEnterFrame = function () { skor = +score;};
button_a.onPress = function() {
     nextFrame();
};
button_b.onPress = function() {
     score += 20;
     nextFrame();
};
button_c.onPress = function() {
     nextFrame();
};
button_d.onPress = function() {
     nextFrame();
};
Keterangan: Soal no. 5 kunci jawabannya B. Jika button_b (pilihan jawaban B) diklik skor bertambah 20 dan menuju frame berikutnya.
Sampai di sini, simpan dulu (tekan Ctrl+S).
19.             Selanjutnya, buka kunci Layer 2 dengan cara klik tanda gambar gembok di Layer tersebut. Klik kanan kotak Input Text yang telah dibuat di Frame 1 Layer 2, Copy dan Paste-kan di Frame 7 (masih di Layer 2). Klik ganda kotak Input Text dan ketik ‘tanpa nama’.
Di bawah kotak Input Text, ketik ‘Nilai anda:’ dengan ukuran Font 15 (Type Text-nya Static Text). Di bawah teks ‘Nilai anda:’, buat Dynamic Text  kosong dengan  cara klik Text Tool (A) pada panel Tools, pastikan panel Properties aktif, kemudian pilih Dynamic Text dengan ukuran font 50, klik di bawah teks ‘Nilai anda:’ dan drag ke kanan. Pada kotak ‘Var’, ketik ‘skor’.
Di bawah ‘Dynamic Text’ dengan nama Variable ‘skor’, ketik dengan tipe teks Static Text ‘Kriteria ketuntasan Minimal (KKM): 80’
Di bawah teks ‘Kriteria ketuntasan Minimal (KKM): 80’, buat lagi Dynamic Text kosong dengan nama variable ‘keterangan’. Kembali kunci Layer 2.
Tampilan Stage pada Frame 7 Layer 2 seperti Gambar di bawah.
20.           Selanjutnya, buka kunci Layer 3. Klik Frame 7 Layer 3. Ketik ‘ULANGI’ dengan tipe teks Static. Klik kanan teks tersebut, pilih Convert to Symbol, tipenya Button. Pastikan panel Properties aktif dan pada kotak Instance Name ketik ‘restart_button’. Kembali kunci Layer 3.
21.             Klik Frame 7 Layer 4 (pastikan Layer 4 tidak terkunci) kemudian tekan F9 untuk mengaktifkan panel Action dan masukkan ActionScript berikut:
if (score>=80) {
     keterangan = "Bagus! Pertahankan Prestasi!";
}
if (score<=60) {
     keterangan = "Anda belum tuntas. Belajar lagi, ya!";
}
restart_button.onPress = function() {
     gotoAndStop(1);
};
22.           Selesai dan tekan Ctrl+S untuk menyimpan. Di bawah adalah tampilan akhir jendela Flash Ducument frame terakhir (7).

23.           Untuk melihat hasilnya, tekan Ctrl+Enter.

SELAMAT MENCOBA DAN MEMODIFIKASINYA.
SAMPAI JUMPA LAGI PADA TUTORIAL BERIKUTNYA.
Salam Kreatif!
Baguez.Satanic.Corps
2012





Selasa, 14 Februari 2012


Grand Theft Auto III - Mediafire

Grand Theft Auto III
Grand Theft Auto III | 129 Mb

Mob bosses need favors, crooked cops need help, the street gangs want you dead; so to compensate you'll have to rob, steal, and kill in order to stay alive, while using your resources to track down the woman who betrayed you and earn your rightful revenge. But that's all in a day's work in Rockstar Games' ambitious PS2 sequel, Grand Theft Auto III. Developed by DMA Design, GTA3 is the first installment of the series to utilize a fully three-dimensional living city with open environments and non-linear gameplay.Additional features include a cast of hundreds of different characters, more than 50 types of vehicles, three hours of professionally recorded music, and a huge array of deadly street weapons.

Game Features :
  • Third installment in the series
  • First game in the series to be in full 3D
  • Awesome visuals and intense action
  • Live out your wildest crime syndicate fantasies

System Requirement :
  • Pentium III 450 CPU
  • 96MB RAM
  • 16MB Direct3D Video Card
  • Fully DirectX compatible Sound Card
  • 8X CD-Rom
  • 500MB free hard disk space
  • Win 98/ME/2000/XP
  • Direct X 8.1




Grand Theft Auto III
Grand Theft Auto III
Grand Theft Auto III
Grand Theft Auto III






isalgames.blogspot.com





Dynasty Warriors 4 Hyper RIP - Mediafire

Dynasty Warriors 4 Hyper (PC/ENG)
Dynasty Warriors 4 Hyper | 750 Mb


For the first time ever, the highly-acclaimed Dynasty Warriors series is coming to a whole new battlefield - the PC. With a host of graphical and gameplay enhancements, Dynasty Warriors 4 Hyper is the definitive version of this best-selling tactical action game.

The 400-year reign of the Han Empire has been brought to an end. The once noble Chinese empire has crumbled into three warring states, all vying for control of a land ruled by chaos. In the fires of battle, legends will be made by those who strive to forge a new dynasty.
Eligibility: 13 and above only.
Descriptors: Mild Language, Violence

PC Exclusive Features
The most graphically superior version of the series yet, optimized for PC and featuring higher resolution, anti-aliasing, texture filtering, and more.
New dynamic shadows enhance the realism of each battlefield.
Twice as many onscreen characters and double the draw distance of previous versions.
Bilingual voice option lets you experience the original Japanese dialogue.
Improved enemy AI - enemies are fiercer and attack more frequently.
Intense tactical action that pits you against hundreds of deadly warriors in epic battles.
An advanced melee fighting system lets you perform powerful moves and dazzling combos.
Over 40 playable characters, each with their own unique fighting styles and stories, as well as the ability to create your own officers.
Elephants, battering rams, catapults, fire-breathing tiger tanks - each battlefield presents a different challenge.
Over 50 stages across 17 unique maps, all based on historical locales.
Two-player versus and co-op modes.
Fierce one-on-one duels between generals.
A weapon experience system adds RPG elements to the action-packed gameplay.
Using a multiple scenario system, new victory conditions will emerge and different events will occur as each battle unfolds.
Based on Luo Guanzhong’s novel “Romance of the Three Kingdoms.”

Minimum System Requirement
Supported OS: Windows® 2000/XP
Processor: Pentium® IV 1.6 GHz
Ram: 256 MB
Video Card: 64 MB VRAM, DirectX® 8.0 or higher compatible, supporting hardware shader
Sound Card: DirectX® 9.0 or higher compatible
Middleware: DirectX® 9.0 or higher, Windows® Media Format 9 or higher
Hard Drive Space: 2.4 GB or more
Note: DirectX® 9.0 compatible 12-button gamepad recommended.









isalgames.blogspot.com




Battle Rage: The Robot Wars


Battle Rage: The Robot Wars
Battle Rage: The Robot Wars | 316 Mb


INFO
BATTLE RAGE: THE ROBOT WARS the third person shooter with elements of a beat’em'up game that allows a player to control giant robots. Battles between the robots take place on carefully selected battlegrounds (so called “arenas”) and they are short, quick, brutal skirmishes. The player can fight alone (versus one, two or even three opponents) or in a team against a common foe. Every robot has its own weapons (for melee and distance combat), additional weapon types can be collected on the arena. The player can modify a robot’s parameters in the single player mode as well as in the multiplayer to fit its possibilities to his/her own fighting style. Also many new, powerful robots will wait for the player to unlock in the story mode. The Tournament has begun.

Features
* Single player and Multiplayer modes.
* Arcade mode with a separate Storyline for each of the robots characters.
* Robot Customization.
* Compelling mechanics (Rage, Rush, Power Triangle).
* Specials (push, stun and other unique abilities for each robot).
* Robots allowed to fight with 3 weapons at the same time (two ranged and one melee).
* 8 different robots.
* 20 weapons.
* 10 arenas.

Minimum System Requirements
Operating System: Windows XP or Vista
Processor: Intel Pentium® IV 2 GHz (Athlon 1.6 GHz)
Memory: 1 GB RAM
Video card: Geforce 4Ti
Sound card: DirectX compatible soundcard
Hard disc: 800 MB HDD
CD ROM: PC CD-ROM














www.netkingvn.com



Blood Omen 2 - Mediafire


Blood Omen 2 - Mediafire
Blood Omen 2 | 1.2 Gb


Info:
Blood Omen 2, the fourth installment in the Legacy of Kain Series is a 3rd person 3D action/combat game in which you assume the role of the vampire Kain. A compelling story drives you through huge lushly detailed 3D environments and challenges game play skills in combat, puzzle solving, stealth and exploration.

General Features
You are the vampire Kain - the most evil figure to grace a video game console; Move through crowds unseen cloaked in stealth, travel stories above the peasant herds on which you feed leaping from roof-top to roof-top, and use mind-control on hapless fools to help you overcome vampire-proof inventions; Combat choreography unfolds with dance-like precision as Kain engages armies of demons and humans alike; The comprehensive menu of unstoppable attacks, nimble combos, and special moves will satiate even the hardened of fighting game fans.

Minimum System Requirements:
  • System: PIII 450 or equivalent
  • RAM:128 MB RAM
  • CD-ROM: 8X CD-ROM
  • Video Memory: 16 MB VRAM
  • Hard Drive Space: 1650 MB
  • Mouse: Yes
  • Sound Board: Yes
  • DirectX: DirectX v8.1

Recommended:
  • System: PIII 600 or equivalent
  • RAM: 128 MB RAM
  • CD-ROM: 4X CD-ROM
  • Video Memory: 32 MB VRAM
  • Hard Drive Space: 1900 MB











isalgames.blogspot.com

Transformer The Game RIP - Mediafire


Transformer The Game RIP - Mediafire | 206 Mb



Description
Control the outcome in the battle for Earth this summer with Transformers, the official game of the blockbuster film. Protect the earth as Autobots or destroy it as Decepticons as you lead the Transformers in the epic battle for control of planet Earth! Make a choice: Protect Earth as Autobots or destroy it as Decepticons. With dual campaigns, the fate of the world is in your hands.

System Requirement
  • 3D hardware accelerator card required — 100% DirectX® 9.0c-compliant 64MB video card and drivers
  • Microsoft® Windows® XP/Vista
  • Pentium® 4 2.0GHz or Athlon® 2.0GHz or higher processor
  • 256MB of RAM (1GB for Windows® Vista)
  • 4 GB of uncompressed hard disk space (plus 300 MB for the Windows(R) swap file and 1MB free for saved games
  • DirectX 9.0c (Included)
  • 100% DirectX 9.0c-compliant true 16-bit sound card and drivers
  • 100% Windows XP-compatible mouse, keyboard and drivers
  • 100% Windows XP-compatible quad speed DVD-ROM drive (600 K/sec sustained transfer rate)
  • All NVIDIA® GeForce® 4 Ti 4200 64MB and better chipsets
  • All ATI® Radeon® 8500 64MB and better chipsets

Install Notes
  1. Extract files
  2. Run Install-Transformers.bat
  3. Play the game









isalgames.blogspot.com