- published: 26 Feb 2009
- views: 613127251
'+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; })); }); -->
HIDDEN ERROR: Usage of "Spouse" is not recognized
Richard Noel Marx (born September 16, 1963) is an American adult contemporary and pop/rock singer, songwriter, musician and record producer who sold over 30 million records. He had a stream of hit singles in the late 1980s and 1990s, including "Endless Summer Nights," "Right Here Waiting," "Now and Forever," and "Hazard." Although some of his major hit songs were ballads, many of his songs have had a classic rock style, such as "Don't Mean Nothing," "Should've Known Better," "Satisfied," and "Too Late to Say Goodbye."
Marx placed himself in the record books by being the first solo artist to have his first seven singles hit the Top 5 on the Billboard Hot 100 singles chart (3, 3, 2, 1, 1, 1, 4). His record sales worldwide exceed 30 million. Aside from songs that he has written, composed, and recorded for himself, he has written and/or composed, collaborated on the writing and/or the compositions of, and produced such successful selections for other artists as "This I Promise You" by NSYNC and "Dance With My Father" by Luther Vandross. The latter song won several Grammy Awards. His 14th and latest chart topper, "Long Hot Summer," performed by Keith Urban, gave Marx the distinction of having a song he wrote or co-wrote top the charts in four different decades.
Richard Marx is the eponymous debut album by singer/songwriter and record producer/arranger, Richard Marx, released in June 1987.
Richard became the first male solo artist (and second solo artist overall - the first being Whitney Houston) in recording history to reach the top three of the Billboard Hot 100 with four singles from a debut album, including his first number one Pop single "Hold On to the Nights" in mid-1988. The album's first single, "Don't Mean Nothing", hit #1 on Billboard's Hot Mainstream Rock Tracks chart on July 4, 1987.
In his early 20s, Richard Marx had started his music career in Los Angeles as a background singer and songwriter for other artists. Marx was determined to become a solo artist, stating that "I didn't want to give my best songs away. "Should've Known Better", for instance, was written three years ago, and whenever I'd play it for an artist I'd get a real good response. It was the song I could've placed the easiest, but I knew that I should be the one to do it. When the deal with Manhattan Records came through early in '86, I put everything else on hold - I saw this album as a challenge to show what I could really do."
"Right Here Waiting" is a song by American singer-songwriter Richard Marx. It was released in June 29, 1989 as the second single from his second album, Repeat Offender. The song was a global hit, topping charts throughout the world, including the U.S. where it hit number-one on the Billboard Hot 100. It was certified Platinum by the RIAA. The song has been covered by many artists, including Monica in her album, The Boy Is Mine.
"Right Here Waiting" was the second single from Repeat Offender, after "Satisfied". Marx wrote the song on the road as a love letter to his wife, actress Cynthia Rhodes, who was in South Africa shooting for a film. The track was arranged by Marx with Jeffery (C.J.) Vanston to feature none of the heavy drums and synth popular at the time, with Marx's vocal accompanied only by classical guitar (by Bruce Gaitsch) and keyboards (by Vanston). It is one of Marx's most frequently covered compositions.
REMASTERED IN HD! Official Music Video for Right Here Waiting performed by Richard Marx. Listen to more from Richard Marx: https://RichardMarx.lnk.to/essentials Revisit more 80's music videos: https://www.youtube.com/watch?v=OMOGaugKpzs&list=PLjF50Dlp9iek5dt7_1jRWS4_RiBygG9p1 Follow Richard Marx Instagram: https://www.instagram.com/therichardmarx Facebook: https://www.facebook.com/richardmarxmusic Twitter: https://twitter.com/richardmarx Website: http://richardmarx.com #RichardMarx #RightHereWaiting #Remastered
REMASTERED IN HD! Official Music Video for Hazard performed by Richard Marx. #RichardMarx #Hazard #Remastered
Official Music Video for Endless Summer Nights performed by Richard Marx. #Richard Marx #Endless Summer Nights
Richard Marx Greatest Hits Full Album - Best Songs of Richard Marx © Follow Soft Rock Songs ❤: Please Share this Mix on Social sites (Facebook, Google +, Twitter etc.) to more people could listen it! Don't forget to Like & Share the mix if you enjoy it! ▷ Subscribe : https://bit.ly/3mW5rjq © Contact me: [email protected] ▬▬▬▬▬▬▬▬▬▬▬▬▬▬ ✔️: Many Other Playlists ► Best Soft Rock Love Songs Of All Time: https://bit.ly/3e8yKeH ►Best Romatic Love Songs Of All Time: : https://bit.ly/3tuZe0G ▬▬▬▬▬▬▬▬▬▬▬▬ 🔔: Thanks for watching! Don't forget to SUBCRIBE, Like & Share my video if you enjoy it! Have a nice day! ! :❤:
REMASTERED IN HD! Official Music Video for Now And Forever performed by Richard Marx. Follow Richard Marx: Facebook: https://www.facebook.com/richardmarxmusic Instagram: https://www.instagram.com/therichardmarx Twitter: https://twitter.com/richardmarx Website: https://richardmarx.com #NowAndForever #RichardMarx #Remastered
►Subscribe to Richard Marx on YouTube: https://youtube.com/@richardmarx?feature=shared ►Exclusive Merch: https://shop.richardmarx.com/ ►Follow Richard Marx Online Instagram: https://www.instagram.com/therichardmarx/ Facebook: https://www.facebook.com/richardmarxmusic TikTok: https://www.tiktok.com/@richardmarx Website: https://richardmarx.com/ Check out Richard Marx newest video “Days to Remember” here - https://www.youtube.com/watch?v=2EBMj7bTtSw You can also Stream/Download “Days to Remember” here: Spotify - https://open.spotify.com/track/3gsrv448Wcdc5E0yaKj4cW?autoplay=true Apple Music - https://music.apple.com/us/album/days-to-remember/1711836164?i=1711836410 Stream the new album "Limitless" now - https://richardmarx.lnk.to/LimitlessID Listen to the new single “Another One Dow...
My seventh video One beautiful song is this :) Plz comment and rate I´m not good making videos ok? So if you don´t like my videos, the door is so big for you to leave!
Official music video (Alternate Version) for Hold On To The Nights performed by Richard Marx. Follow Richard Marx: Facebook: https://www.facebook.com/richardmarxmusic Instagram: https://www.instagram.com/therichardmarx X: https://twitter.com/richardmarx #RichardMarx
Become a Facebook Fan - http://on.fb.me/RichardMarxFB Follow on Twitter - http://bit.ly/RichardMarxTW Official Website - http://www.richardmarx.com Stream the new album "Limitless" now - https://richardmarx.lnk.to/LimitlessID Listen to the new single “Another One Down” here: https://richardmarx.lnk.to/AnotherOneDownID "Should've Known Better" was my second music video and was directed by Dominic Sena, who also did my first video for "Don't Mean Nothing." The plot had me in love with a girl who was secretly married. The song was written about a girl I fell in love with at age 20, and ultimately broke my heart. Luckily, I not only got over her, I got a HIT SONG out of it! ~ Richard
►Subscribe to Richard Marx on YouTube: https://youtube.com/@richardmarx?feature=shared ►Exclusive Merch: https://shop.richardmarx.com/ ►Follow Richard Marx Online Instagram: https://www.instagram.com/therichardmarx/ Facebook: https://www.facebook.com/richardmarxmusic TikTok: https://www.tiktok.com/@richardmarx Website: https://richardmarx.com/ Check out Richard Marx newest video “Days to Remember” here - https://www.youtube.com/watch?v=2EBMj7bTtSw You can also Stream/Download “Days to Remember” here: Spotify - https://open.spotify.com/track/3gsrv448Wcdc5E0yaKj4cW?autoplay=true Apple Music - https://music.apple.com/us/album/days-to-remember/1711836164?i=1711836410
REMASTERED IN HD! Official Music Video for Right Here Waiting performed by Richard Marx. Listen to more from Richard Marx: https://RichardMarx.lnk.to/essentials Revisit more 80's music videos: https://www.youtube.com/watch?v=OMOGaugKpzs&list=PLjF50Dlp9iek5dt7_1jRWS4_RiBygG9p1 Follow Richard Marx Instagram: https://www.instagram.com/therichardmarx Facebook: https://www.facebook.com/richardmarxmusic Twitter: https://twitter.com/richardmarx Website: http://richardmarx.com #RichardMarx #RightHereWaiting #Remastered
My seventh video One beautiful song is this :) Plz comment and rate I´m not good making videos ok? So if you don´t like my videos, the door is so big for you to leave!
►Subscribe to Richard Marx on YouTube: https://youtube.com/@richardmarx?feature=shared ►Exclusive Merch: https://shop.richardmarx.com/ ►Follow Richard Marx Online Instagram: https://www.instagram.com/therichardmarx/ Facebook: https://www.facebook.com/richardmarxmusic TikTok: https://www.tiktok.com/@richardmarx Website: https://richardmarx.com/ Check out Richard Marx newest video “Days to Remember” here - https://www.youtube.com/watch?v=2EBMj7bTtSw You can also Stream/Download “Days to Remember” here: Spotify - https://open.spotify.com/track/3gsrv448Wcdc5E0yaKj4cW?autoplay=true Apple Music - https://music.apple.com/us/album/days-to-remember/1711836164?i=1711836410 Stream the new album "Limitless" now - https://richardmarx.lnk.to/LimitlessID Listen to the new single “Another One Dow...
The official video of "Right Here" by Staind from the album 'Chapter V' - available now! Pre-order/stream “It’s Been Awhile (Live”): https://Staind.lnk.to/ItsBeenAwhile Pre-order ‘It’s Been Awhile (Live)’ merch, vinyl and CDs here: https://staind.lnk.to/preorder Live: It’s Been Awhile (From Foxwoods) concert available May 1st, pick up tickets and limited-edition packages at https://staindlive.com Subscribe for more official content from Atlantic Records: https://Atlantic.lnk.to/subscribe Follow Staind https://facebook.com/Staind https://twitter.com/staind http://staind.com Follow Atlantic Records https://facebook.com/atlanticrecords https://instagram.com/atlanticrecords https://twitter.com/AtlanticRecords http://atlanticrecords.com © 2006 WMG The official Atlantic Records YouTube C...
Richard Marx- Right Here Waiting for you (lyrics) 📝🎵 💬 Just thought: "Sometimes, waiting for someone is'nt good enough" Subscribe, click the notification bell and don't missed our newly uploaded videos. 🎤Artist: Richard Marx 🎵Song Title: Right Here Waiting 📜Lyrics---- Oceans apart day after day And I slowly go insane I hear your voice on the line But it doesn't stop the pain If I see you next to never How can we say forever Wherever you go Whatever you do I will be right here waiting for you Whatever it takes Or how my heart breaks I will be right here waiting for you I took for granted, all the times That I thought would last somehow I hear the laughter, I taste the tears But I can't get near you now Oh, can't you see it baby You've got me going crazy Wherever you ...
Get "Right Here Waiting": Smart URL: http://smarturl.it/cblfzf Spotify: https://spoti.fi/2Ve6kYa iTunes: https://apple.co/3eHaq2w Amazon: https://amzn.to/2zZ6QSo Follow Music Travel Love: Instagram: https://instagram.com/musictravellove/ Facebook: https://facebook.com/musictravellove/ Twitter: https://twitter.com/MTLVids Spotify: https://open.spotify.com/artist/2qNrJcE9LjzPdiXbrjkqFa Website: https://endlesssummermusic.com/ Filmed by JPGMOV - https://www.instagram.com/jpgmov/ Special Thanks: Air Asia - https://www.airasia.com/ WEGOTCHA - http://www.wegotchaph.com/ Sundowners Zambales - https://sundowners.ph/zambales/villa About Music Travel Love: Welcome to the official Music Travel Love YouTube channel! We travel the world and set up our studio in awesome places. On t...
Boyce Avenue acoustic cover of “Right Here Waiting” by Richard Marx Stream Here: https://smarturl.it/BAacousticcovers More Acoustic Covers: https://youtube.com/playlist?list=PL0BD69368AB943C89&playnext=1 Tickets + VIP Meet & Greets: http://smarturl.it/BATour Spotify: https://smarturl.it/RHWSpotify Apple: https://smarturl.it/RHWApple iTunes: https://smarturl.it/RHWiTunes YouTube: https://smarturl.it/RHWYTMusic Google: https://smarturl.it/RHWGoogle Amazon: https://smarturl.it/RHWAmazon Deezer: https://smarturl.it/RHWDeezer - - - - - - - - - - - - 🔔 Subscribe & make sure to enable all push notifications! 🔔 Watch more of our videos: Acoustic Covers: https://www.youtube.com/playlist?list=PL0BD69368AB943C89&playnext=1 Original Music Videos: http://youtube.com/playlist?list=PLE592C5463BB7915E...
[email protected] Hey guys, I hope you enjoy my Richard Marx cover. I'm 12 years old and I love to sing and write songs. My Dream is to go on Jimmy Fallon or Ellen one day! Connect with Stefan: Instagram: @stefanbenzofficial Facebook: https://www.facebook.com/stefanbenzofficial/?ref=br_tf Management: @mannymijares [email protected]
Hello, I hope this message finds you well. Thank you for supporting my music videos. On my behalf, as the creator of this YouTube channel, I am reaching out to humbly request your support and generous contribution towards our cause at a certain charity. Any amount will do and is highly appreciated. You may send your donations via G-Cash to this number: [09501010225] . Thank you so much! ❤ #Matrix.01 #RightHereWaiting #RichardMarx #Lyrics --------------------------------------------------------------------------------------------------------------------------------- - Right Here Waiting [Lyrics] // Richard Marx Oceans apart day after day And I slowly go insane I hear your voice on the line But it doesn't stop the pain If I see you next to never How can we say forever Wherever you go W...
Provided to YouTube by BMG Rights Management (UK) Limited Right Here Waiting (2021 - Remaster) · Richard Marx Stories To Tell: Greatest Hits and More ℗ 2021 TourdForce Productions, Inc under exclusive license to BMG Rights Management (US) LLC Released on: 2021-07-02 Sound Engineer: Mat Prock Composer: Marx Auto-generated by YouTube.
HIDDEN ERROR: Usage of "Spouse" is not recognized
Richard Noel Marx (born September 16, 1963) is an American adult contemporary and pop/rock singer, songwriter, musician and record producer who sold over 30 million records. He had a stream of hit singles in the late 1980s and 1990s, including "Endless Summer Nights," "Right Here Waiting," "Now and Forever," and "Hazard." Although some of his major hit songs were ballads, many of his songs have had a classic rock style, such as "Don't Mean Nothing," "Should've Known Better," "Satisfied," and "Too Late to Say Goodbye."
Marx placed himself in the record books by being the first solo artist to have his first seven singles hit the Top 5 on the Billboard Hot 100 singles chart (3, 3, 2, 1, 1, 1, 4). His record sales worldwide exceed 30 million. Aside from songs that he has written, composed, and recorded for himself, he has written and/or composed, collaborated on the writing and/or the compositions of, and produced such successful selections for other artists as "This I Promise You" by NSYNC and "Dance With My Father" by Luther Vandross. The latter song won several Grammy Awards. His 14th and latest chart topper, "Long Hot Summer," performed by Keith Urban, gave Marx the distinction of having a song he wrote or co-wrote top the charts in four different decades.
Just a touch of heaven
Your eyes burn through me
Oh, like a raging fire
I fall blissfully everytime you say
Just one little word
You know it makes me crazy
You ask way too much, oh, when you say
That I can look but do not touch
I have never wanted any other girl
The way I want you, baby
I surrender to what I can't control
Drunk with desire, I've opened up my soul
You know I would go around the world
I'd take you anywhere
Oh, baby, anywhere
For a touch of heaven
Tell me what you want
I'll give you anything
Oh, baby, everything
For a touch of heaven
I have dreamed of this
Your body next to mine
Drowning in every kiss
How I've longed to find my one and only girl
And I found her in you, baby
All I ever wanted is everything that you are
Don't leave me longing, be tender with my heart
You know I would go around the world
I'd take you anywhere
Oh, baby, anywhere
For a touch of heaven
Tell me what you want
I'll give you anything
Oh, baby, everything
For a touch of heaven
Everyone says you've been leading me on
Too late for warnings, I'm already gone
I surrender to what I can't control
Drunk with desire, I'm giving you my soul
You know I would go around the world
I'd take you anywhere
Oh, baby, anywhere
For a touch of heaven
Tell me what you want
I'll give you anything
Oh, baby, everything
For a touch of heaven
I would go around the world
I'd take you anywhere
Oh, baby, anywhere
For a touch of heaven
Tell me what you want
I'll give you anything
Oh, baby, everything
For a touch of heaven
See, yeah, yeah, yeah
See, yeah, yeah, yeah
Just a touch
Just a touch of heaven
Yeah, yeah, yeah