Saturday 26 February 2011

Membuat teks bergulir dengan menggunakan tag marquee

This is cool!

Membuat teks Anda gulir di seluruh halaman Anda menggunakan html sederhana, yang beban cepat. Di sini saya menggunakan tag <marquee>. Kode ini di bawah ini.

Menggulir ke atas teks atau teks vertikal.
Anda dapat menggunakan tag html marquee untuk membuat teks Anda gulir ke atas. Tag ini tidak bekerja di browser Netscape.

Di sini saya telah menggunakan html sederhana untuk membuat teks gulir ke atas. Karena hal ini hanya html lurus, maka beban sangat cepat dan mudah ditempatkan ke halaman apapun pada server apapun.

Berikut adalah contoh bagaimana dapat digunakan.


THIS IS A COOL WAY
TO MAKE YOUR TEXT
SCROLL UPWARDS

IT IS EASY
AND FAST LOADING


Dan di sini adalah kode yang saya gunakan. Cukup copy dan paste kode ke dalam dokumen html Anda di mana Anda ingin teks bergulir untuk menunjukkan.

(Homesteaders, gunakan "insert html" elemen dan tarik snippett html di mana Anda ingin teks bergulir untuk muncul pada halaman Anda.)

Anda dapat mengubah warna font dan warna latar belakang sesuai. Anda dapat membuatnya lebih luas jika diperlukan dan Anda dapat mengatur kecepatan gulir dengan mengubah "scrollamount" variabel. Semakin tinggi jumlahnya, semakin cepat kecepatan gulir.

Handy petunjuk.
Untuk memilih semua kode pada kotak teks, klik di dalam kotak dan tekan ctrl + a. keyboard Anda Untuk menyalin teks ctrl + c dan untuk menyisipkan ke dalam dokumen html Anda ctrl + v

Bootlace 2.1: panduan Install Android 2.2.1 Froyo di iPhone 2G – 3G

Step by Step Guide:
Langkah 1. Setelah Anda berhasil Jailbreak iPhone dan Cydia sudah terinstall. Pertama Anda  harus menambahkan repositori Menginstal Bootlace 2.1. pilih Cydia -> Sentuh 'Manage' Tab di bawah ini - 'Sources'> Pilih dan di sudut kanan atas Klik 'Edit' dan kemudian Klik 'Tambah' dan Enter URL ini: http://repo.neonkoala.co.uk dan kemudian Tekan 'Sumber Tambahkan'

Langkah 2. Setelah Anda berhasil menambahkan atas repositori. Cukup Cari Bootlace 2.1 di Cydia dan Instalasi itu.

Langkah 3. Setelah Bootlace terinstal pada iPhone anda. Cukup Tekan ikon dan untuk menjalankan. Dan Anda harus menginstal 'OpeniBoot' Cukup Tekan di atasnya di bar bawah dan Install.
Langkah 4. Setelah Anda menginstal OpeniBoot Selanjutnya install 'iDroid' dengan mengklik icon di bar Bawah dan Install.
Langkah 5. Setelah Anda menginstal 'iDroid' Tekan pada ikon 'QuickBoot' di bagian bawah layar. Sentuh dan Android Logo seperti ditunjukkan pada gambar di bawah. Ini akan reboot iPhone dengan Android 2.2.1 Froyo. enjoy your android

Friday 25 February 2011

Cara Install Android ke Personal Computer (PC)

Apakah Anda ingin tahu cara menginstal Android ke komputer pribadi Anda? Dan sekarang, Anda bisa melakukannya! Google memberi Anda kesempatan untuk merasakan fitur Android dengan aplikasi bernama LIVE Android.
Anda dapat menggunakan Live Android sebagai LiveCD atau LiveUSB. Hanya men-download dan membakar ke CD Anda. Dan membuat CD bootable. Dan Anda bisa merasakan Android seperti Nexus one pengguna di PC Anda.

langkahnya
1. Download Live Android
di live-android.googlecode.com/files/liveandroidv0.3.iso.002 dan live-android.googlecode.com/files/liveandroidv0.3.iso.001. Setelah didownload langsung bisa digabung pakai software hjsplit.
2. Setelah download, gabungkan hasil download ke dalam satu file dengan menggunakan software HJSplit
3. Anda akan mendapatkan file ISO. Anda dapat membakarnya ke CD atau Anda dapat men-download Microsoft Virtual PC.
4. Nikmati Android Anda pada PC!

Wednesday 23 February 2011

Install the Android Market on Android SDK


1. Download and install Android SDK.
After that, set up a new emulator. (You may want to learn how to set up an Android Emulator
2. Go to …….\android-sdk_r08-windows\android-sdk-windows\platforms\android-9\images (this is the default folder for SDK Platform Android 2.3, API 9, revision 1), copy system.img and paste it to C:\Users\Username\.android\avd\Emulator’s name.avd


3. Download three files: Vending.apk, GoogleServicesFramework.apk and ADB.zip (unzip the file after downloaded). After that, put all these files into …….\android-sdk_r08-windows\android-sdk-windows\tools, we will need them later. (In Android 2.3 SDK, adb files have been removed so that’s why we need them. If you use Android 2.2 SDK, you may not need to download the file)
3. Press Winkey+R, type cmd and press Enter. In command prompt, change the directory to …….\android-sdk_r08-windows\android-sdk-windows\tools (I kept the default folder structure but it is recommended that you change it).

4. Type the following: emulator –avd tech-recipes –partition-size 100 and hit Enter (please replace tech-recipes with your emulator’s name). This command will launch your emulator. Please don’t try to launch it from SDK manager, otherwise, it won’t work.

5. Launch another command prompt window, switch to …….\android-sdk_r08-windows\android-sdk-windows\tools , type in: adb -s emulator-5554 shell and hit Enter
(Please make sure that the emulator is fully loaded, and replace 5554 with your emulator’s serial code which you can find at the top of emulator’s window.) After that, type mount and hit Enter again. You will see something like below, and look for the line: /dev/block/mtdblock0 /system yaffs2 ro 00.


6. Now, type in:  mount -o remount,rw -t yaffs2 /dev/block/mtdblock0 /system and hit Enter. This will remount the /system in read-write mode. Because we will copy some files to /system/app later, we must set read-write permission to that directory. To do it, type the following: chmod 777 /system/app , hit Enter. After that, you need to exit. Type exit, hit Enter again. The whole step will look like this:

7. In this step, we will copy two files: Vending.apk and GoogleServicesFramework.apk into /system/app. To do this, from the second command prompt window, type: adb -s emulator-5554 push Vending.apk /system/app/. and hit Enter. Similar to that, to copy the next file, type: adb -s emulator-5554 push GoogleServicesFramework.apk /system/app/. , hit Enter again. If sucess, it will look like this:

8. Now, you need to remove SdkSetup.apk from /system/app (if it is not removed, the SDK will be restore in next session). In the second command prompt window, type: adb shell rm /system/app/SdkSetup.apk , hit Enter.

9. Close your emulator.
10. Go to C:\Users\Username\.android\avd\Emulator’s name.avd and delete these two files: userdata-qemu.img and cache.img. Launch your emulator in the normal way and then, you will see Android Market from the list.






Using Facebook:


Note: Some applications and games may not work because they need real hardware. Angry Birds and Youtube are such examples. With these you can hear the sounds but not see any video.

source http://www.tech-recipes.com/rx/10004/accessing-android-market-from-android-sdk/

Instalasi Android emulator

1. Download Android SDK, AVD Manager (Windows, Mac dan Linux)
Link Android SDK, AVD Manager:

http://developer.android.com/sdk/index.html


2. Ekstrak file dan jalankan "SDK Setup.exe"


3. Jika Anda dapet pesan kesalahan yang menyatakan "Failed to fetch url…BLA..BLA..BLA.." maka anda harus keluar dari program Setup.
gambar errornya:


Ikuti langkah-langkah:
-Close the “Refresh Sources” window(tinggal di-close aja eror yg tadi).
-Cancel the “Choose Packages to Install” window.

klik cancel !:



-Pilih “Settings” yang ada disisi kiri tuh,, “Android SDK and AVD Manager” window.
-Check the box labeled “Force https://… sources to be fetched using http://…”

gambarnya:



-Click “Save and Apply”
Close and restart the SDK Setup program
klik dua lagi file "SDK Setup.exe" yang ada di folder point no.1 diatas


4. Pilih paket-paket yang ingin anda instal. Pilih hanya paket yang anda butuhkan.
gambar paket2nya.. :






kalo anda2 hanya tertarik untuk mencoba Android 2,1 (eclair) Emulator.
Tolak semuanya kecuali "Platform Android SDK 2.1. API 7, revisi 2 "dengan memilih masing-masing item kemudian memilih opsi Tolak/reject.
trus Klik "Instal".


cara menseleksi mana yg mau diinstalnya:


5. Biarkan paket terpilih untuk men-download dan menginstal kemudian tutup "Installing Archives" window.
prosesnya yang pertama:

prosesnya yang kedua:

prosesnya yang ketiga:

 

prosesnya yang selesai:



6. Buat Android Virtual Device (AVD) Baru dengan memilih "Virtual Device" dari sidebar, sekarang klik pada NEW.

Cara Buat AVD:




Masukkan Nama
Pilih Target (Android 2.1 - API Tingkat 7)
Masukkan ukuran untuk SD Card
Pilih atau masukkan Skin contoh : Resolusi 800 × 600 (pilihan ini untuk tanpa skin handphone yah.. )
Biarkan nilai default dari "Hardware" atau memilih dukungan SD Card dll
Klik "Create AVD"
masukan data dan selesai AVD:


7. Mulai membuat Device Virtual Anda.
Pilih Device Virtual dari daftar.
Klik "Start"

Membuat Device Virtual:



Klik "Launch" di new windows.

launch:




8. Lagi BOOTING !!








KALO DI LOCK Tekan F2 AJA YAH...
9. Nikmati OS Android 2,1 pada Windows, Mac atau Linux anda2 sekalian.

HORE BERHASIL