Sabtu, 24 Maret 2012

regional

<a href='http://openx.tribunnews.com/www/delivery/ck.php?n=ae8d7d9c&cb=INSERT_RANDOM_NUMBER_HERE' target='_blank'><img src='http://openx.tribunnews.com/www/delivery/avw.php?campaignid=52&cb=INSERT_RANDOM_NUMBER_HERE&n=ae8d7d9c' border='0' alt='' /></a>
CLOSE <a href='http://www.tribunnews.com/openx2/www/delivery/ck.php?n=afc144d1&cb=INSERT_RANDOM_NUMBER_HERE' target='_blank'><img src='http://www.tribunnews.com/openx2/www/delivery/avw.php?campaignid=45&cb=INSERT_RANDOM_NUMBER_HERE&n=afc144d1' border='0' alt='' /></a>

Kamis, 22 Maret 2012

menambah tulisan berjalan pada tab blog

untuk menambar tulisan berjalan pada tab blog dapat dilakukan dengan cara :
1. masuk ke blogger anda
2. klik pada rancangan
3. klik tambah gagget, pilih HTML/kode java scrip
4. kemudian copy paste kode java scrip di bawah ini :


<script language="JavaScript">
<!--
/*****TITLE JALAN*****/

function tb5_makeArray(n){
this.length = n;
return this.length;
}

tb5_messages = new tb5_makeArray(5);
tb5_messages[0] = "Yulianaga";
tb5_messages[1] = "Wellcome in informasingeblog ";
tb5_messages[2] = "Semoga Ada Yang Bermanfaat";
tb5_messages[3] = "Terima Kasih Atas Kunjungannya";
tb5_messages[4] = "Kasih Comment ya.....";
tb5_rptType = 'infinite';
tb5_rptNbr = 10;
tb5_speed = 50;
tb5_delay = 2000;
var tb5_counter=1;
var tb5_currMsg=0;
var tb5_stsmsg="";
function tb5_shuffle(arr){
var k;
for (i=0; i<arr.length; i++){
k = Math.round(Math.random() * (arr.length - i - 1)) + i;
temp = arr[i];arr[i]=arr[k];arr[k]=temp;
}
return arr;
}
tb5_arr = new tb5_makeArray(tb5_messages[tb5_currMsg].length);
tb5_sts = new tb5_makeArray(tb5_messages[tb5_currMsg].length);
for (var i=0; i<tb5_messages[tb5_currMsg].length; i++){
tb5_arr[i] = i;
tb5_sts[i] = "_";
}
tb5_arr = tb5_shuffle(tb5_arr);
function tb5_init(n){
var k;
if (n == tb5_arr.length){
if (tb5_currMsg == tb5_messages.length-1){
if ((tb5_rptType == 'finite') && (tb5_counter==tb5_rptNbr)){
clearTimeout(tb5_timerID);
return;
}
tb5_counter++;
tb5_currMsg=0;
}
else{
tb5_currMsg++;
}
n=0;
tb5_arr = new tb5_makeArray(tb5_messages[tb5_currMsg].length);
tb5_sts = new tb5_makeArray(tb5_messages[tb5_currMsg].length);
for (var i=0; i<tb5_messages[tb5_currMsg].length; i++){
tb5_arr[i] = i;
tb5_sts[i] = "_";
}
tb5_arr = tb5_shuffle(tb5_arr);
tb5_sp=tb5_delay;
}
else{
tb5_sp=tb5_speed;
k = tb5_arr[n];
tb5_sts[k] = tb5_messages[tb5_currMsg].charAt(k);
tb5_stsmsg = "";
for (var i=0; i<tb5_sts.length; i++)
tb5_stsmsg += tb5_sts[i];
document.title = tb5_stsmsg;
n++;
}
tb5_timerID = setTimeout("tb5_init("+n+")", tb5_sp);
}
function tb5_randomizetitle(){
tb5_init(0);
}
tb5_randomizetitle();

//-->
</script>

5. gantilah tulisan yang berwar

Menambah Tulisan Diujung Mouse Pointer Pada Blog

 
Memiliki suatu blog yang kurang modifikasi akan membuat kita malas blogging,
karena dengan memodifikasi blog memiliki kepuasan tersendiri, maka dari itu saya memberi sedikit inspirasi kepada anda tentang memodifikasi blog.

Kali ini saya akan berbagi tentang cara membuat tulisan melingkar pada kursor

  1. log in ke blogger anda
  2. pilih tata letak
  3. tambah gadget anda dan plih java script
  4. copy paste aja code berikut menambah wiget HTML/java script
<style type="text/css">
/* Circle Text Styles */
#outerCircleText {
/* Optional - DO NOT SET FONT-SIZE HERE, SET IT IN THE SCRIPT */
font-style: italic;
font-weight: bold;
font-family: 'comic sans ms', verdana, arial;
color: #999;



/* End Optional */

/* Start Required - Do Not Edit */
position: absolute;top: 0;left: 0;z-index: 3000;cursor: default;}
#outerCircleText div {position: relative;}
#outerCircleText div div {position: absolute;top: 0;left: 0;text-align: center;}
/* End Required */
/* End Circle Text Styles */
</style>
<script type="text/javascript">

/* Circling text trail- Tim Tilton
Website: http://www.tempermedia.com/
Visit: http://www.dynamicdrive.com/ for Original Source and tons of scripts
Modified Here for more flexibility and modern browser support
Modifications as first seen in http://www.dynamicdrive.com/forums/
username:jscheuer1 - This notice must remain for legal use
*/

;(function(){

// Your message here (QUOTED STRING)
var msg = "master web bla..bla";

/* THE REST OF THE EDITABLE VALUES BELOW ARE ALL UNQUOTED NUMBERS */

// Set font's style size for calculating dimensions
// Set to number of desired pixels font size (decimal and negative numbers not allowed)
var size = 24;

// Set both to 1 for plain circle, set one of them to 2 for oval
// Other numbers & decimals can have interesting effects, keep these low (0 to 3)
var circleY = 0.75; var circleX = 2;

// The larger this divisor, the smaller the spaces between letters
// (decimals allowed, not negative numbers)
var letter_spacing = 5;

// The larger this multiplier, the bigger the circle/oval
// (decimals allowed, not negative numbers, some rounding is applied)
var diameter = 10;

// Rotation speed, set it negative if you want it to spin clockwise (decimals allowed)
var rotation = 0.4;

// This is not the rotation speed, its the reaction speed, keep low!
// Set this to 1 or a decimal less than one (decimals allowed, not negative numbers)
var speed = 0.3;

////////////////////// Stop Editing //////////////////////

if (!window.addEventListener && !window.attachEvent || !document.createElement) return;

msg = msg.split('');
var n = msg.length - 1, a = Math.round(size * diameter * 0.208333), currStep = 20,
ymouse = a * circleY + 20, xmouse = a * circleX + 20, y = [], x = [], Y = [], X = [],
o = document.createElement('div'), oi = document.createElement('div'),
b = document.compatMode && document.compatMode != "BackCompat"? document.documentElement : document.body,

mouse = function(e){
e = e || window.event;
ymouse = !isNaN(e.pageY)? e.pageY : e.clientY; // y-position
xmouse = !isNaN(e.pageX)? e.pageX : e.clientX; // x-position
},

makecircle = function(){ // rotation/positioning
if(init.nopy){
o.style.top = (b || document.body).scrollTop + 'px';
o.style.left = (b || document.body).scrollLeft + 'px';
};
currStep -= rotation;
for (var d, i = n; i > -1; --i){ // makes the circle
d = document.getElementById('iemsg' + i).style;
d.top = Math.round(y[i] + a * Math.sin((currStep + i) / letter_spacing) * circleY - 15) + 'px';
d.left = Math.round(x[i] + a * Math.cos((currStep + i) / letter_spacing) * circleX) + 'px';
};
},

drag = function(){ // makes the resistance
y[0] = Y[0] += (ymouse - Y[0]) * speed;
x[0] = X[0] += (xmouse - 20 - X[0]) * speed;
for (var i = n; i > 0; --i){
y[i] = Y[i] += (y[i-1] - Y[i]) * speed;
x[i] = X[i] += (x[i-1] - X[i]) * speed;
};
makecircle();
},

init = function(){ // appends message divs, & sets initial values for positioning arrays
if(!isNaN(window.pageYOffset)){
ymouse += window.pageYOffset;
xmouse += window.pageXOffset;
} else init.nopy = true;
for (var d, i = n; i > -1; --i){
d = document.createElement('div'); d.id = 'iemsg' + i;
d.style.height = d.style.width = a + 'px';
d.appendChild(document.createTextNode(msg[i]));
oi.appendChild(d); y[i] = x[i] = Y[i] = X[i] = 0;
};
o.appendChild(oi); document.body.appendChild(o);
setInterval(drag, 25);
},

ascroll = function(){
ymouse += window.pageYOffset;
xmouse += window.pageXOffset;
window.removeEventListener('scroll', ascroll, false);
};

o.id = 'outerCircleText'; o.style.fontSize = size + 'px';

if (window.addEventListener){
window.addEventListener('load', init, false);
document.addEventListener('mouseover', mouse, false);
document.addEventListener('mousemove', mouse, false);
if (/Apple/.test(navigator.vendor))
window.addEventListener('scroll', ascroll, false);
}
else if (window.attachEvent){
window.attachEvent('onload', init);
document.attachEvent('onmousemove', mouse);
};

})();

</script>

ket: ganti tulisan yang berwarna merah dengan text yang anda inginkan


lalu simpan,selesai deh dan coba lihat hasilnya

cara mengganti Pointer Pada Blogger

Bagi anda yang bosen dengan tampilan Kursor/Pointer standar, tidak ada salahnya apabila anda mengganti jenis pointer yang lebih menarik dan bervariasi yang anda sukai.
caranya adalah sebagai berikut :
1. masuk ke blogger anda
2. klik pada rancangan
3. klik tambah gagget dan pilih HTML/Java Scrip
4. copy paste java scrip di bawah ini :


<style type="text/css">body {cursor:url("http://i1216.photobucket.com/albums/dd367/yulinaga/untuk%20blog/apple-tmani.gif"),default}</style>

5. gantilah alamat gambar di atas sesuai dengan gambar yang anda inginkan.




http://i1216.photobucket.com/albums/dd367/yulinaga/untuk%20blog/mec61.gif



http://i1216.photobucket.com/albums/dd367/yulinaga/untuk%20blog/foo514.png




http://i1216.photobucket.com/albums/dd367/yulinaga/ani1135.gif



http://i1216.photobucket.com/albums/dd367/yulinaga/cur841.png



http://i1216.photobucket.com/albums/dd367/yulinaga/untuk%20blog/foo258.gif

 
 http://i1216.photobucket.com/albums/dd367/yulinaga/untuk%20blog/foo268.gif



http://i1216.photobucket.com/albums/dd367/yulinaga/oth756.png



http://i1216.photobucket.com/albums/dd367/yulinaga/too1004.gif











Pasang Ikon/Icon Twitter Burung Terbang

Bagi pengguna Blogger yang ingin menampilkan animasi twitter-nya di blog dapat melakukan langkah-langkah sebagai berikut :


untuk pengguna Blogger :
1. Masuk (Login) ke Dashboard Blogger anda.
2. Pilih Tab Design, lalu Page Elelement.
3. Kemudian Tambahkan Gadged/Widget, pilih HTML/JavaScript.
4. Silahkan copy script “JavaScript” dibawah: (tanpa title/judul/tanpa memasukkan nama untuk gadged/widgetnya) letakkan di HTML/JavaSript Anda.

untuk Pengguna Wordpress :
1. Masuk (Login) ke Dashboard Wordpress anda.
2. Pilih Tab Widget
3. Kemudian Tambahkan Text ke Sidebar.
4. Silahkan copy script “JavaScript” dibawah: (tanpa title/judul/tanpa memasukkan nama untuk gadged/widgetnya) letakkan di Text Anda.



Copy script berikut ini kemudian paste di blog atau situs anda.

1. Untuk Burung Berwarna Biru


<script type="text/javascript" src="http://imemovaz.googlecode.com/files/tripleflap.js"></script>
<script type="text/javascript">
var birdSprite="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi5R4196fnqR_0gG8TKiFlNMrahFBkAQRzATo6sSNsMmheyPou7JSSxUjAUiyJZyMtyBzeFemG1onJXNsi29mVovCwf5KldOv6FoI5NURUYyF0T_5tJE8myuwJ_0zIwABPT42Luxj5d_gYa/s1600/birdsprite.png"; var targetElems=new Array("img","hr","table","td","div","input","textarea","button","select","ul","ol","li","h1","h2","h3","h4","p","code","object","a","b","strong","span"); var twitterAccount = "http://twitter.com/NamaTwitterAnda";var tweetThisText = "Twitter - NamaTwitterAnda http://UrlSitusAnda/";tripleflapInit();
</script>


2. Untuk Burung berwarna Ungu




<script type="text/javascript" src="http://imemovaz.googlecode.com/files/tripleflap.js"></script>
<script type="text/javascript">
var birdSprite="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEikbhNyey7HGdqexRkTjBHXqSPXc9X6zkR9Qnq2kfX0LGenycTWHMP5mXqHoWQ1vtM3fcDQ6rytqQj-4H10zvQ1GTfltl_Lfu7LHIfGmxkAvfiZRtk33nZtIB-x-ok4ApdpyWmimbPjQz0/"; var targetElems=new Array("img","hr","table","td","div","input","textarea","button","select","ul","ol","li","h1","h2","h3","h4","p","code","object","a","b","strong","span"); var twitterAccount = "http://twitter.com/NamaTwitterAnda";var tweetThisText = "Twitter - NamaTwitterAnda http://UrlSitusAnda/";tripleflapInit();
</script>


3. Untuk burung berwarna Kuning




<script type="text/javascript" src="http://imemovaz.googlecode.com/files/tripleflap.js"></script>
<script type="text/javascript">
var birdSprite="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEig3yATUnve29AMu0WpJFAoKm9vs06ZSBJedPVRSCReRdq_pXnGcfKyDcn8-XgNpgfUS86QYg_SqNEbvEzlyEzZwmfg53TFJV9ecvSxRY_wRIW_TnlVIxEXezvJoKmhKeUL3KwSZ_iH7Yk/"; var targetElems=new Array("img","hr","table","td","div","input","textarea","button","select","ul","ol","li","h1","h2","h3","h4","p","code","object","a","b","strong","span"); var twitterAccount = "http://twitter.com/NamaTwitterAnda";var tweetThisText = "Twitter - NamaTwitterAnda http://UrlSitusAnda/";tripleflapInit();
</script>


4. untuk burung berwarna Hijau




<script type="text/javascript" src="http://imemovaz.googlecode.com/files/tripleflap.js"></script>
<script type="text/javascript">
var birdSprite="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiNhQVIAkLZ9uIqptuCIqD446v8rajVaR4GI-6DDIPZHkMNebq4d2CpoODHnVkVf92CUgWa0cqWwjNp9tsJS7brRo16rBD8lQX7cq2wNAdFNaXIipkNAiMGa4hneUU-NEB8Mvl6oduN8kE/"; var targetElems=new Array("img","hr","table","td","div","input","textarea","button","select","ul","ol","li","h1","h2","h3","h4","p","code","object","a","b","strong","span"); var twitterAccount = "http://twitter.com/NamaTwitterAnda";var tweetThisText = "Twitter - NamaTwitterAnda http://UrlSitusAnda/";tripleflapInit();
</script>

5.  Untuk burung berwarna hitam
<script type="text/javascript" src="http://imemovaz.googlecode.com/files/tripleflap.js"></script>
<script type="text/javascript">
var birdSprite="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEitYok0tApOader3ENAYsuRcLul2dn7uB5GbWENWntCXJEjGycEg9FSZd2d2WNvYQw8fQ4ovQRic4RNriTKG0MXKjQpJMzW2d2_SfZESyF_SBBXR7BQbovmajG_cxHe24O-3ir9IYKUH1s/"; var targetElems=new Array("img","hr","table","td","div","input","textarea","button","select","ul","ol","li","h1","h2","h3","h4","p","code","object","a","b","strong","span"); var twitterAccount = "http://twitter.com/NamaTwitterAnda";var tweetThisText = "Twitter - NamaTwitterAnda http://UrlSitusAnda/";tripleflapInit();
</script>

6. untuk burung berwarna Putih

<script type="text/javascript" src="http://imemovaz.googlecode.com/files/tripleflap.js"></script>
<script type="text/javascript">
var birdSprite="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiXLKOWo7eD5RSdKwpULVWwT4hyphenhyphenem2JLEYmTKEyvTbg5mTuWF1HQ0Iv6r9JmJmxU6V1bFikJ3OXHzhZhNNaunDoNNiV-cxPPjBhqoNxPvPpHWX3FCEU1HFpTjPC6bJfgl3AzRdGyI20RXI/"; var targetElems=new Array("img","hr","table","td","div","input","textarea","button","select","ul","ol","li","h1","h2","h3","h4","p","code","object","a","b","strong","span"); var twitterAccount = "http://twitter.com/NamaTwitterAnda";var tweetThisText = "Twitter - NamaTwitterAnda http://UrlSitusAnda/";tripleflapInit();
</script>

selamat mencoba ^_^

Sabtu, 17 Maret 2012

Gala Sinetron Melati Untuk Marvel at SCTV

  • Time : 20.00 WIB at SCTV
  • Director : Akbar Bakti
  • Producer : Dhamoo Punjabi, Manoj Punjabi
  • Production Designer : Shania Punjabi
  • Story and Script : Hilman Hariwijaya
  • Production : MD Entertainment (2008-2009)
Sinetron Melati Untuk Marvel recount the story of life and love. MELATI (Chelsea Olivia Wijaya) is a beautiful girl, interesting, independent, decisive, and responsible, so that many men who fall in love with her. Instead, MARVEL (Rezky Aditya) is still looking for a male identity. Because they do not have any costs and money to continue study at university, after graduating high school Marvel had become a taxi driver. Marvel parents divorced when he was still a baby, and he lived with ANGGI (Devy Permatasari), his mother. Anggi often doesn't patient see the Marvel's attitude that never serious for the future. Meanwhile, Marvel feel he worked hard enough to help his mother. Anggi also open a salon in a small shop.

One day, Melati meet Marvel and then Marvel accidentally kicking tires at Melati's car, so car spy fell. This is making Melati angry and demanded compensation. Instead, Marvel is not willing and said that the Melati's car is old, should enter the museum. Marvel's speech make Melati angry. Melati says if Marvel is not reliable, especially to be responsible. Then Marvel who angry will give money to Melati, but Marvel does not have money. Finally, Marvel gives the lottery paper. Then Melati find out how Marvel is very terrible.

foto Emma Waroka Hawkins and foto Devi Permatasari so seksi mature women

Behind Marvel's attitude, he is very love to his mother and respect women. When Anggi will be married with SURYA (Krisna Murti Wibowo), boss Melati, Marvel also directly support. Unfortunately, the mother doubt to receive her first love because at long ago LILY (Mpok Atik), the mother of Surya, reject Anggi because Anggi not equal. Now after some forty years and equally never settle, they meet again and fall in love. Surya really want to marry with Anggi, even though Lili against.

At other moment, Melati and Marvel are still often met by accident. When the Melati's car broke down, Marvel that happens through the sincere help improve the car. Then Melati realize that Marvel is actually a good man. Melati start sympathy to Marvel and Marvel also like Melati. Then ADITYA (Chris Laurent) appear to Melati's office to visit a project work, and falling in love at first sight to Melati. Since then, the relationship of both to be close. In fact, Aditia considered Melati as lovers. Marvel knows that their relationship became jealous. However, he realized, and Marvel try to make relationship with other girls to cover the injured broken heart. Melati also feign to be intimate with Aditya in front of Marvel.

Melati have a brother named DIKA (Fendy Heryanto Chow), branch manager at a bank that is very serious work for his career. Dika lovers have called SHAFA (Afifah Shafira). Although the Shafa's family is very hope to apply married immediately with Dika, but Dika not yet ready. One time, Dika accidentally met AUREL (Neshia Putri), the girl is very frustrating, rough and arogan. Aurel is a single sister of Surya, she is very intimate and long living abroad. Dika not know if SELVA (Emma Waroka Hawkins), his mother who looks like a tante girang, have to agree with Lily to menjodohkan himself with Aurel. Marvel and Aurel always contend when they meet, but even then Aurel interested and enamored of Dika. Unfortunately, love has been rejected because Dika has a paramour. Aurel tried in many ways to grasp Dika from Shafa's hand and finally Dika leave Shafa, and married with Aurel.

foto artis sinetron Melati Untuk Marvel and kru

Anggi finally married with Surya, after he signed an agreement about property separation from Lili. Marvel participate moved to new luxurious home property owned by Surya. Aurel and Lyly does not agree with their marriage, they often pressing Anggi. Marvel was not willing to see his mother treated haphazardly. As a result, Marvel and Aurel frequently involved strife. Because Marvel does not feel comfortable, he finally decided to stay in the old house before. Shafa which has been alone and left by Dika for married, became a very beaten. Then Safha told to Marvel. But he does not know if Marvell is an Aurel's half brother, Dika's wife. Proximity Marvel and Shafa make Melati jealous.

Surya invite Marvel to join on the company. Marvel, as a Melati's employee often get a reprimand, because sometimes he slept at the office. However, Marvel and Melati actually adore each other mutually. They also work to become a reliable partner. Their idea are often used by the office. Aditya becomes jealous to see their neighborhood. This sinetron also supported by young actress such as Gracia Indri as Kezia, Dony Michael and Marcello Djorghie. How the next of story? Watch Gala Sinetron Melati Untuk Marvel every Monday to Sunday, starting from 20:00 WIB at SCTV.
foto Rezky Aditya, foto Chelsea Olivia and foto Fendy Chow
foto Afifa Syahira, Mpok Atik and foto Gracia Indri, the sexy young girls
CAST PEMAIN MELATI UNTUK MARVEL :

- Rezky Aditya as Marvel
- Chelsea Olivia Wijaya as Melati
- Christ Laurent as Aditya
- Fendy Heryanto (Fendy Chow) as Dika
- Neshia Putri as Aurel
- Afifa Syahira as Shafa
- Mpok Ati as bu Lily
- Devi Permatasari as Bu Anggi
- Gracia Indria Sari Sulistyaningrum as sebagai Keyza
- Donny Michael as Raihan
- Krisna Murti Wibowo as Pak Surya
- Emma Waroka Hawkins as Bu Selva
- Marcello Djorgie as Pak Slamet

Theme Song Melati Untuk Marvel : Puspa (Putuskan Saja Pacarmu)
Singer : ST12 Band (lham Febry / Pepep, Dedy Sudrajat / Pepeng, Muhammad Charly van Houten / Charly, and Iman Rush)
Song & Lyrics : Charly
Album : P.U.S.P.A (2008)
Label Produksi : Trinity Optima Production

If you would like to find another Profil, Biodata and Foto Artis Sinetron Melati Untuk Marvel, you can search from internet or search engine google.