- published: 03 Oct 2009
- views: 166731857
'+pages+''); $('.stream > div:odd').addClass('bgr_color'); updateHeight('#history'); }); window.activateTabArea = ensure(function(tab, areas){ var parsed = false; var parts = (areas || '').split('/'); window.fsonload = $.inArray('fs', parts) >= 0; if(fsonload){ parts.splice(parts.indexOf('fs'), 1); } var replayMode = false; if($.inArray('replay', parts)>=0){ replayMode = 'replay'; } var noSoundMode = false; if($.inArray('nosound', parts)>=0){ noSoundMode = 'nosound'; } if($.inArray('ns', parts)>=0){ noSoundMode = 'ns'; } var previewMode = null; if($.inArray('p', parts)>=0){ previewMode = 'p'; } if($.inArray('preview', parts)>=0){ previewMode = 'preview'; } if($.inArray('repeat', parts)>=0){ replayMode = 'repeat'; } if($.inArray('r', parts)>=0 || $.inArray('ro', parts)>=0){ replayMode = 'r'; } if(replayMode){ parts.splice(parts.indexOf(replayMode), 1); } if(noSoundMode){ parts.splice(parts.indexOf(noSoundMode), 1); } if(previewMode){ parts.splice(parts.indexOf(previewMode), 1); } if(previewMode){ if(!parts.length){ parts = ['1-14', '999:59']; } } var area = parts[0]; if(tab == 'history' && false){ var page = parseInt(area || '1') || 1; $.ajax({ url: 'https://login.wn.com/recent/json/?pp='+history_pp+'&skip='+history_pp*(page-1), dataType: 'jsonp', success: function(response){ $ensure(function(){ renderHistory(response, page); }); } }); return true; } if(tab == 'global_history' && false){ var page = parseInt(area || '1') || 1; globalHistory.fetchStream(page, '', function(){ updateHeight('#global_history'); }); return true; } if(tab == 'my_playlists' && false){ var page = parseInt(area || '1') || 1; myPlaylists.fetchStream(page, '', function(){ updateHeight('#my_playlists'); }); return true; } if(tab == 'my_videos' && false){ var page = parseInt(area || '1') || 1; myVideos.fetchStream(page, '', function(){ updateHeight('#my_videos'); }); return true; } if(tab == 'related_sites' && areas && matchPosition(areas)){ var seconds = parsePosition(areas); scrollRelated(seconds); return false; } if(matchPosition(area) || matchAction(area)){ parts.unshift('1'); area = parts[0]; } if(tab == 'expand' && area && area.match(/\d+/)) { var num = parseInt(area); if(num < 100){ //FIX ME. Load news page with ajax here } else if(num > 1900){ //FIX ME. Load timeline page with ajax here } } else if(tab.match(/^playlist\d+$/)){ var playerId = parseInt(tab.substring(8)); var vp = videoplayers[playerId]; window.descriptionsholder = $('.descriptionsplace'); if(!vp) return; // why? no player? if(replayMode){ $('.replaycurrent'+playerId).attr('checked', true); vp.setReplayCurrent(true); } var playQueue = []; window.playQueue = playQueue; var playQueuePosition = 0; var playShouldStart = null; var playShouldStop = null; var parseList = function(x){ var items = x.split(/;|,/g); var results = []; for (i in items){ try{ var action = parseAction(vp, items[i]); if(!action.video){ if(window.console && console.log) console.log("Warning: No video for queued entry: " + items[i]); }else{ results.push(action); } }catch(e){ if(window.console && console.log) console.log("Warning: Can''t parse queue entry: " + items[i]); } } return results; }; var scrollToPlaylistPosition = function(vp){ var ppos = vp.getPlaylistPosition(); var el = vp.playlistContainer.find('>li').eq(ppos); var par = el.closest('.playlist_scrollarea'); par.scrollTop(el.offset().top-par.height()/2); } var updateVolumeState = function(){ if(noSoundMode){ if(noSoundMode == 'turn-on'){ clog("Sound is on, vsid="+vp.vsid); vp.setVolumeUnMute(); noSoundMode = false; }else{ clog("Sound is off, vsid="+vp.vsid); vp.setVolumeMute(); noSoundMode = 'turn-on'; } } } var playQueueUpdate = function(){ var playPosition = playQueue[playQueuePosition]; vp.playFromPlaylist(playPosition.video); scrollToPlaylistPosition(vp); playShouldStart = playPosition.start; playShouldStop = playPosition.stop; }; var playQueueAdvancePosition = function(){ clog("Advancing play position..."); playQueuePosition ++; while(playQueuePosition < playQueue.length && !playQueue[playQueuePosition].video){ playQueuePosition ++; } if(playQueuePosition < playQueue.length){ playQueueUpdate(); }else if(vp.getReplayCurrent()){ playQueuePosition = 0; playQueueUpdate(); vp.seekTo(playShouldStart); vp.playVideo(); }else{ vp.pauseVideo(); playShouldStop = null; playShouldStart = null; } }; function loadMoreVideos(playerId, vp, start, finish, callback){ var playlistInfo = playlists[playerId-1]; if(playlistInfo.loading >= finish) return; playlistInfo.loading = finish; $.ajax({ url: '/api/upge/cheetah-photo-search/query_videos2', dataType: 'json', data: { query: playlistInfo.query, orderby: playlistInfo.orderby, start: start, count: finish-start }, success: function(response){ var pl = vp.getPlaylist().slice(0); pl.push.apply(pl, response); vp.setPlaylist(pl); callback(); } }); } if(parts.length == 1 && matchDash(parts[0])){ var pl = vp.getActualPlaylist(); var vids = parseDash(parts[0]); parts = []; for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': null }) } if(vids.length){ if(vids[vids.length-1]-1>=pl.length){ loadMoreVideos(playerId, vp, pl.length, vids[vids.length-1], function(){ if(fsonload){ activateTabArea(tab, parts[0]+'/fs'); }else{ activateTabArea(tab, parts[0]); } var pls = vp.getPlaylist(); vp.playFromPlaylist(pls[pls.length-1]); vp.playVideo(); scrollToPlaylistPosition(vp); }); return true; } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; playShouldStart = 0; } } if(previewMode){ var vids = []; var dur = 0; var pl = vp.getActualPlaylist(); area = parts[0]; if(parts.length == 1 && matchPosition(parts[0])){ vids = parseDash('1-'+pl.length); dur = parsePosition(parts[0]); parts = []; }else if(parts.length == 1 && matchDash(parts[0])){ vids = parseDash(parts[0]); dur = parsePosition("999:59"); parts = []; } if(parts.length == 2 && matchDash(parts[0]) && matchPosition(parts[1])){ vids = parseDash(parts[0]); dur = parsePosition(parts[1]); parts = []; } for(var i = 0; i < vids.length; i++){ playQueue.push({ 'video': pl[vids[i]-1], 'start': 0, 'stop': dur }) } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } } if(parts.length>1){ for(var i = 0; i < parts.length; i++){ var sel = findMatchingVideo(vp, parts[i]); if(sel){ playQueue.push({ 'video': sel, 'start': 0, 'stop': null }) } } if(playQueue){ playQueueUpdate(); vp.playVideo(); parsed = true; } }else if(area){ var sel = findMatchingVideo(vp, area); if(sel){ vp.playFromPlaylist(sel); playShouldStart = 0; parsed = true; } } if(fsonload || replayMode){ playShouldStart = 0; } if(document.location.search.match('at=|queue=')){ var opts = document.location.search.replace(/^\?/,'').split(/&/g); for(var o in opts){ if(opts[o].match(/^at=(\d+:)?(\d+:)?\d+$/)){ playShouldStart = parsePosition(opts[o].substr(3)) } if(opts[o].match(/^queue=/)){ playQueue = parseList(opts[o].substr(6)); if(playQueue){ playQueuePosition = 0; playQueueUpdate(); } } } } if(matchPosition(parts[1])){ playShouldStart = parsePosition(parts[1]); parsed = true; } if(matchAction(parts[1])){ var action = parseAction(vp, area+'/'+parts[1]); playShouldStart = action.start; playShouldStop = action.stop; parsed = true; } if(playShouldStart !== null && !playQueue.length){ playQueue.push({ video: vp.getCurrentVideo(), start: playShouldStart, stop: playShouldStop }); } if(playShouldStart != null){ setInterval(function(){ if(playShouldStop && vp.currentPlayer && vp.currentPlayer.getCurrentTime() > playShouldStop){ playShouldStop = null; if(vp.getCurrentVideo() == playQueue[playQueuePosition].video){ playQueueAdvancePosition(); }else{ playShouldStart = null; } } }, 500); vp.playerContainer.bind('videoplayer.player.statechange', function(e, state){ if(state == 'ended'){ // advance to the next video playQueueAdvancePosition(); } }); vp.playerContainer.bind('videoplayer.player.readychange', function(e, state){ if(state){ updateVolumeState(); if(playShouldStart !== null){ vp.seekTo(playShouldStart); playShouldStart = null; }else{ playShouldStop = null; // someone started other video, stop playing from playQueue } } if(fsonload) { triggerFullscreen(playerId); fsonload = false; } }); } } else if(tab.match(/^wiki\d+$/)){ if(firstTimeActivate){ load_wiki($('#'+tab), function(){ if(area){ var areaNode = $('#'+area); if(areaNode.length>0){ $('html, body').scrollTop(areaNode.offset().top + 10); return true; } } }); } } return parsed; }) window.activateTab = ensure(function(tab, area){ window.activeArea = null; if(tab == 'import_videos'){ if(area){ import_videos(area); }else{ start_import(); } return true; } if(tab == 'chat'){ update_chat_position($('.chat').eq(0)); window.activeArea = 'chat'; jQuery('.tabtrigger').offscreentabs('activateTab', 'chat'); return true; } if(tab in rev_names){ tab = rev_names[tab]; } if(tab.match(':')){ return false; } var sup = $('ul li a[id=#'+tab+']'); if(sup && sup.length>0){ window.activeArea = area; sup.first().click(); if(!window.activateTabArea(tab, area)){ window.activeArea = null; } window.activeArea = null; return true; }else{ var have_tabs = $('#playlist_menu li').length; if(tab.match(/^playlists?\d+$/)){ var to_add = +tab.substring(8).replace(/^s/,'')-have_tabs; if(to_add>0 && have_tabs){ add_more_videos(to_add); return true; } } } return false; }); window.currentPath = ensure(function(){ return window.lastHistory.replace(basepath, '').split('?')[0]; }); window.main_tab = window.main_tab || 'videos'; window.addHistory = ensure(function(path){ if(window.console && console.log) console.log("Adding to history: "+path); if(window.history && history.replaceState && document.location.hostname.match(/^(youtube\.)?(\w{2,3}\.)?wn\.com$/)){ if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = basepath; } else if( path.match('^'+main_tab+'/') ){ path = basepath + '/' + path.replace(main_tab+'/', '').replace('--','/'); } else { path = basepath + '/' + path.replace('--','/'); } if(document.location.search){ path += document.location.search; } if(window.lastHistory) { history.pushState(null, null, path); } else if(window.lastHistory != path){ history.replaceState(null, null, path); window.lastHistory = path; } } else{ path = path.replace('--','/'); if(path == main_tab || path == main_tab+'/' || path == '' || path == '/') { path = ''; } if(window.lastHistory != '/'+path){ window.location.hash = path? '/'+path : ''; window.lastHistory = '/'+path; } } }); $('.tabtrigger li a').live('click', ensure(function() { var tab = $(this).attr('id'); if(tab.substring(0,1) == '#'){ var name = tab.substring(1); if(name in menu_names){ name = menu_names[name][0]; } realTab = rev_names[name]; $('#'+realTab).show(); if(window.console && console.log) console.log("Triggering tab: "+name+(window.activeArea?" activeArea="+window.activeArea:'')); var path = name; if(window.activeArea){ path = path + '/' + window.activeArea; } if(tab.match(/#playlist\d+/) || tab.match(/#details\d+/)){ $('.multiple-playlists').show(); $('.related_playlist').show(); $('.longest_videos_playlist').show(); }else { $('.multiple-playlists').hide(); $('.related_playlist').hide(); $('.longest_videos_playlist').hide(); } // start the related script only when the tab is on screen showing if (tab.match(/related_sites/)) { if (mc) { mc.startCredits(); } } window.activeTab = realTab; addHistory(path); setTimeout(ensure(function(){ if(tab.match(/language--/)){ $('.tabtrigger').offscreentabs('activateTab', 'language'); } if(tab.match(/weather/)) { $('.tabtrigger').offscreentabs('activateTab', 'weather'); loadContinent(); } updateMenus(tab); updateHeight(); }), 10); } return false; })); }); -->
Michael Joseph Jackson (August 29, 1958 – June 25, 2009) was an American singer, songwriter, record producer, dancer, and actor. Called the King of Pop, his contributions to music and dance, along with his publicized personal life, made him a global figure in popular culture for over four decades.
The eighth child of the Jackson family, he debuted on the professional music scene along with his elder brothers Jackie, Tito, Jermaine, and Marlon as a member of the Jackson 5 in 1964, and began his solo career in 1971. In the early 1980s, Jackson became a dominant figure in popular music. The music videos for his songs, including those of "Beat It", "Billie Jean", and "Thriller" from his 1982 album Thriller, were credited with breaking down racial barriers and with transforming the medium into an art form and promotional tool. The popularity of these videos helped to bring the then-relatively-new television channel MTV to fame. His 1987 album Bad spawned the U.S. Billboard Hot 100 number-one singles "I Just Can't Stop Loving You", "Bad", "The Way You Make Me Feel", "Man in the Mirror", and "Dirty Diana", becoming the first album to have five number-one singles on the Billboard Hot 100. With videos such as "Black or White" and "Scream", he continued to innovate the medium throughout the 1990s, as well as forging a reputation as a touring solo artist. Through stage and video performances, Jackson popularized a number of complicated dance techniques, such as the robot and the moonwalk, to which he gave the name. His distinctive sound and style has influenced numerous artists of various music genres.
Michael Geoffrey St Aubyn Jackson (born 24 May 1956) is the Church of Ireland Archbishop of Dublin since 2011.
Jackson was born in Lurgan, County Armagh, Northern Ireland, the son of Church of Ireland rector (latterly appointed Archdeacon of Elphin & Ardagh), and educated at Ballinamallard Primary School and Portora Royal School, Enniskillen. Trinity College, Dublin, before going on to do postgraduate studies at Cambridge University. He is married to Inez Cooke, a medical doctor who was born in County Fermanagh, and they have one daughter, Camilla.
He was ordained to the Anglican ministry as a deacon in 1986 and a priest in 1987. His first pastoral appointment was as a curate at Zion Parish, Dublin, and lectured at Trinity College, Dublin and the Church of Ireland Theological College (now Institute). His next appointment was as College Chaplain at Christ Church, Oxford, from 1989 to 1997. He returned to Ireland and served as the Incumbent of St Fin Barre's Union and Dean of Cork, from 1997 to 2002. Jackson has held many notable positions in the Church of Ireland, including chairmanship of the Church in Society Committee and, currently, chairmanship of the Board for Social Theology. Jackson also plays an active role in the wider Anglican Communion, especially in the areas of ecumenism and inter-faith dialogue. He was elected Bishop of Clogher by the Church of Ireland House of Bishops on 21 November 2001 and consecrated at St Patrick's Anglican Cathedral, Armagh on 6 March 2002. On 2 February 2011, he was elected Archbishop of Dublin and Bishop of Glendalough, and enthroned at Christ Church Cathedral, Dublin on 8 May 2011, succeeding John Neill.
Michael Jackson (born July 15, 1957) is a former professional American football player who played linebacker in eight NFL seasons for the Seattle Seahawks.
Jackson was born in Pasco, Washington. A 1975 graduate of Pasco High School, he has enjoyed greater success and accumulated more career achievements than any other Bulldog. A three-year/three-sport letterman, he was the team captain in both football and baseball while garnering All-State honors and receiving the Denning Award for Outstanding Athlete by the Pasco Jaycees as a senior.
At the University of Washington, Jackson earned four varsity letters and was named to their All-Centennial Football Team. He was also selected as the Inland Empire Amateur Athlete of the Year in 1977, a season in which he helped lead the Huskies to the Rose Bowl. The eyes of the nation were on him during that game as he made a vital end zone interception that helped seal Washington ’s victory over the University of Michigan.
Jackson holds several defensive school records for the Huskies, including single season (210) and career (569) tackles. Among the several honors he received for the U of W include Sports Illustrated Player of the Week (11-12-77), Husky Team Captain (1978), All Pac-8 & Pac-10 Linebacker (1977–78) and several All-American selections.
Michael Jackson (born 26 June 1980) is an English footballer who plays as a midfielder. He played in the Football League for both Cheltenham Town and Swansea City. He is currently with Bishop's Cleeve.
Jackson played youth football for Charlton Rovers in his hometown of Cheltenham and at the age of 16 he was picked up by Cheltenham Town. He progressed through the youth team at Whaddon Road and featured for the first team in a Conference National game against Halifax Town in 1998. Jackson then featured for the Robins in the Football League.
In 2002, Jackson was sent out on loan by manager Steve Cotterill to non-league side, Weston-super-Mare. Jackson was then released by Cheltenham along with five other players.
In June 2002, after a successful trial, Jackson joined Welsh side Swansea City. Jackson made just a single appearance for Swansea as a substitute in a home win over Southend United. Jackson was released and returned to non-league football with Bath City in November 2002 when new Swansea City manager, Brian Flynn, revealed Jackson and two others were not part of his plans at the club.
General Michael Jackson (18 December 1734 – 10 April 1801) was a soldier from Massachusetts. He is best remembered for his innovation within the printing industry and has been compared to Matthew Grainger. Jackson and Grainger were the first to perfect the use of diecutting and glass UV on offset machines.
Jackson was born in Newton, Massachusetts, and served in the French and Indian War as a lieutenant. He married Ruth Parker, daughter of Ebenezer Parker, on January 31, 1759.
In the American Revolutionary War he was captain of a minuteman company and took part in the final part of the Battles of Lexington and Concord, harassing the British retreat to Boston. He was wounded at the Battle of Bunker Hill. He served as the major of the Gardner's Regiment of the Massachusetts line from June 3, 1775 to December 31, 1775.
He was lieutenant colonel of the 16th Continental Infantry from January 1 to December 31, 1776. He was seriously wounded in the attack on Montresor's Island, New York on September 23, 1776.
Naea Michael Jackson is a Niuean journalist and former politician.
In the 1970s and 1980s, he was government printer and government press photographer in Niue. He published the Tohi Tala Niue, Niue's government-owned weekly newspaper. In 1991, he set up a private printing business, and, in 1993, launched the weekly Niue Star, which is now the country's only printed newspaper. Jackson is the Star’s owner, editor, journalist and photographer.
Also in 1993, Jackson stood successfully for Parliament in that year's general election. He later became an associate minister, and remained a member of Parliament until 2008, when he was defeated in the general election. He stated that there was "no conflict of interest" between his being a journalist and a member of government, because "we have a law to prevent us MPs from taking advantage of our positions".
He is reportedly better known in Niue than his internationally more famous namesake, to the point that, when news of singer Michael Jackson's death reached Niue in July 2009, "most residents of the remote coral atoll (sic) thought that it was him who had died".
“Scream” by Michael Jackson with Janet Jackson Listen to Michael Jackson: https://MichaelJackson.lnk.to/_listenYD The “Scream” single and short film paired Michael Jackson and Janet Jackson for the first time. The highly stylized black and white short film set a Guinness World Record for the most expensive short film ever made and earned a record 11 MTV Video Music Award nominations. Subscribe to the official Michael Jackson YouTube Channel: https://MichaelJackson.lnk.to/subscribeYD Watch more Michael Jackson videos: https://MichaelJackson.lnk.to/_listenYC/youtube Follow Michael Jackson: Facebook: https://MichaelJackson.lnk.to/_followYS/facebook Twitter: https://MichaelJackson.lnk.to/_followYS/twitter Instagram: https://MichaelJackson.lnk.to/_followYS/instagram Website: https://Michae...
Michael & Janet Jackson Scream with Lyrics!!!! READ! Anyone tht leaves a comment like "What the! Why is joe jonas at the end?!"their comment will be removed, it is called A VIDEO ENDING so no one steals the video,and if u havent notice my user is iLuvjoejonas1213, so i put joe jonas,if u are gunna judje my video saying its stupid becuz of a video ending and leave a comment,the comment will be removed,u clicked this video to watch lyrics on screen, not to judje the ending, i hope u understand tht it is very annoying to get those comments, i spend hours doing these videos
Michael Jackson's sister, Janet, appears live to pay an emotional tribute to her brother who died earlier that year. This took place at the MTV VMA Awards and features Beyonce, Alicia Keys, Pink, J Lo, Ne-Yo, Lady Gaga and many others in the audience, watching as MTV pays tribute to their idol. Songs included are: Thriller Bad Smooth Criminal Scream Watch all the way through because I have also included bonus audio. I made a Live Studio Version Link to download the Live Studio Version AUDIO: https://mega.nz/file/QegSTZZT#Rf8FhjwG9Xnod-qdQ1vs2bV1HfEUuZCeBZe0Pjno1d0 Fortunately, this was easy because the quality was not the worst to begin with. I've improved the audio and video quality because I think this is a great video which needs to be seen in HD. This channel is all about video qua...
Like & Share! SUBSCRIBE HERE FOR MORE VIDEOS: https://www.youtube.com/channel/UCGhUz7hX52ewwqhhuapgHcA?sub_confirmation=1 ▶ HIStory World Tour In Munich 1997 Setlist: Scream (https://youtu.be/Hwx5FtBdnPI) They Don't Care About Us (https://youtu.be/9tFNl2vCaRs) In The Closet (https://youtu.be/PiCgqnVOaYU) Wanna Be Startin' Somethin' (https://youtu.be/agBHzYJNQZc) Stranger In Moscow (https://youtu.be/sT2EcAjOeDA) Smooth Criminal (https://youtu.be/PG9yPnwQbIw) You Are Not Alone (https://youtu.be/s9UN786sfho) The Jackson 5 Medley (https://youtu.be/0A4brIxtFb8) Billie Jean (https://youtu.be/WeCjO0Jhi78) Thriller (https://youtu.be/81nZ4uBWcVE) Beat It (https://youtu.be/hlJp0etLDcM) Blood On The Dance Floor (https://youtu.be/9axosIyvx6c) Dangerous (https://youtu.be/-0O6PiL7n4M) Black Or White (...
Hey guys, i made this video years ago as a small child. Sorry for my typos and my old aggression in the comment section. I deactivated the comments for this reason. Nevertheless, thank you all for using my video to learn the lyric of this song. LLMJ ❤️🫶🏾.
Michael Jackson - Making of Scream
Scream is a single on Michael's ninth studio album,, HIStory: Past, Present and Future, Book I. #michaeljackson #janetjackson #jackson5 Be sure to Like, Subscribe, Share & Checkout other videos. Thanks!!!
Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, commenting, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favour of fair use.
Footage taken from the 2022 Lifetime Janet Jackson documentary
Michael Joseph Jackson (August 29, 1958 – June 25, 2009) was an American singer, songwriter, record producer, dancer, and actor. Called the King of Pop, his contributions to music and dance, along with his publicized personal life, made him a global figure in popular culture for over four decades.
The eighth child of the Jackson family, he debuted on the professional music scene along with his elder brothers Jackie, Tito, Jermaine, and Marlon as a member of the Jackson 5 in 1964, and began his solo career in 1971. In the early 1980s, Jackson became a dominant figure in popular music. The music videos for his songs, including those of "Beat It", "Billie Jean", and "Thriller" from his 1982 album Thriller, were credited with breaking down racial barriers and with transforming the medium into an art form and promotional tool. The popularity of these videos helped to bring the then-relatively-new television channel MTV to fame. His 1987 album Bad spawned the U.S. Billboard Hot 100 number-one singles "I Just Can't Stop Loving You", "Bad", "The Way You Make Me Feel", "Man in the Mirror", and "Dirty Diana", becoming the first album to have five number-one singles on the Billboard Hot 100. With videos such as "Black or White" and "Scream", he continued to innovate the medium throughout the 1990s, as well as forging a reputation as a touring solo artist. Through stage and video performances, Jackson popularized a number of complicated dance techniques, such as the robot and the moonwalk, to which he gave the name. His distinctive sound and style has influenced numerous artists of various music genres.
[Spoken part]
Ok..this is the tempo and the melody..
"I was alone dark when I met ya"
drums {beatboxing}
[Verse 1:]
I was alone in the dark when I met ya
Uuuuuuuuuuh uuuuuuh
You took my hand and you told me you loved me
Uuuuuuuuuuh uuuuuuh
I was alone, there was no love in my life
(I was alone, there was no love in my life)
I was afraid of life and you came in time
(I was afraid of life and you came in time)
You took my hand and we kissed in the moonlight
(You took my hand and we kissed in the moonlight)
Uuuuuuuuuuh uuuuuuh
[Chorus:]
I like the way how you're holdin' me
It doesn't matter how you're holdin' me
I like the way you're lovin me'
It doesn't matter how you are lovin' me
I like the way how you're touchin' me
It doesn't matter how you are touchin' me
I like the way how you're kissin' me
It doesn't matter how you are kissin' me
You'll seeeee...
[Verse 2:]
...it won't be long 'til we make vows, I bet ya
Uuuuuuuuuuh uuuuuuh
I thank the Heavens above that I met ya
Uuuuuuuuuuh uuuuuuh
I was alone, there was no love in my life
(I was alone, there was no love in my life)
I was afraid of life and you came in time
(I was afraid of life and you came in time)
You took my hand and we kissed in the moonlight
(You took my hand and we kissed in the moonlight)
Uuuuuuuuuuh
[Chorus 2:]
I like the way how you're lovin' me
It doesn't matter how you are holdin' me
I like the way how you're holdin' me
It doesn't matter how you re lovin' me
I like the way how you're touchin' me
It doesn't matter how you are touchin' me
I like the way how you're kissin' me
It doesn't matter how you are kissin' me
[Verse 3:]
The world's a better place
'cause you came in time,
You took away the rain and brought the sunshine,
I was afraid 'cause I was hurt the last time,
Uuuuuuuuuuh Ahhhhhhhh.
[Chorus:]
I like the way how you're holdin' me,
It doesn't matter how you are holdin' me,
I like the way how you're lovin' me,
It doesn't matter how you are lovin' me,
I like the way how you're touchin' me,
It doesn't matter how you are touchin' me,
I like the way how you're kissin' me,
It doesn't matter how you are kissin' me,
You'll seeeee.
Uuuuuuuuuuh uuuuuuh [12x]
Chcksthtshtshtsh