- 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."
Straight from My Heart is the third album by singer Pebbles. It was released in 1995 on MCA Records and spawned the top 40 R&B hit, "Are You Ready?".
Days In Avalon is the sixth studio album by singer/songwriter Richard Marx, released independently in 2000 on the now defunct label Signal 21. This was the only release on the label created by Marx and Blood, Sweat, and Tears drummer Bobby Colomby. The title track, "Days In Avalon", was the only song within the album to appear on any charts. The song spent twelve weeks on the Billboard Adult Contemporary chart, peaking at #25. "Straight From My Heart" was later released to country radio but failed to appear on any chart.
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
The classic song re-recorded in 2022 available in both stereo and spatial audio. (Atmos mixes are available at Apple Music) Produced by Bryan Adams Engineered by Hayden Watson Mixed by Bob Clearmountain Written by Bryan Adams and Eric Kagna Straight From The Heart I could start dreamin' but it never ends As long as you're gone we may as well pretend I've been dreamin' - straight from the heart You say it's easy but who's to say That we'd be able to keep it this way But it's easier - comin' straight from the heart Oh, give it to me straight from the heart Tell me we can make another start You know I'll never go - as long as I know It's comin' straight from the heart I’ll see you on the street some other time And all my words would just fall out of line While we're dreamin' - straight...
Filmed live in Lisbon in 2005 and directed by Dick Carruthers and BA Interesting technical fact, this entire film was shot on super 8 film. Written by Bryan Adams and Eric Kagna Straight From The Heart I could start dreamin' but it never ends As long as you're gone we may as well pretend I've been dreamin' - straight from the heart You say it's easy but who's to say That we'd be able to keep it this way But it's easier - comin' straight from the heart Oh, give it to me straight from the heart Tell me we can make another start You know I'll never go - as long as I know It's comin' straight from the heart I’ll see you on the street some other time And all my words would just fall out of line While we're dreamin' - straight from the heart ©2005 Badams Music Limited #bryanadamsstraight...
Shot on tour with audiences from all over the world. Directed by Andrew Catlin. FOLLOW: https://www.instagram.com/bryanadams/
Bryan Adams - Straight From The Heart
Richard Marx - Straight From My Heart (리처드 막스 - 내 마음에서 우러나온) The sun's still warm and most days are good 태양은 아직도 따뜻하고 대부분 좋은 날들이네요 The world still turns like you said it would 그대 말처럼 지구는 지금도 돌고 있지만 But this pain seems to never let me go 이 아픔은 날 떠나질 않고 있어요. And there is really no moving on 그리고 진정으로 떠난 일은 전혀 없어요 There's only going along (? 조금 다르게 부르네요) 그냥 세월따라 가는 것 뿐이죠 And I will always be better for you loving me 날 사랑해준 그대에게 늘 감사하며 살아갈께요 Better for the times we shared 우리 함께했던 시간들에 늘 감사할께요. That travel with me everywhere 함께 안 가본 데 없이 여행다니던... And I will always try to hold my head up to the sky 고개들어 하늘을 보도록 할께요 If only just to let you know 그대가 알아 주기만 한다면... That straight from my heart, I still miss you so 내 마음에서 우러나온, 아직도 그대를 그리워 하고 있어요 If I could I would gladly trade 만약 바꿀 수만 있다면 얼...
Provided to YouTube by BMG Rights Management (UK) Limited Straight from My Heart · Richard Marx Days In Avalon ℗ 2019 TourdForce Productions, Inc under exclusive license to BMG Rights Management (US) LLC Released on: 2019-04-26 Performer: Richard Marx Composer: Richard Marx Auto-generated by YouTube.
Bonnie Tyler - Straight From The Heart (Official Visualiser) Stream Bonnie Tyler here: https://bonnietyler.lnk.to/Streaming Subscribe to the Bonnie Tyler YouTube Channel: https://bonnietyler.lnk.to/YTSubscribe WATCH TOTAL ECLIPSE OF THE HEART MUSIC VIDEO ► https://bonnietyler.lnk.to/YouTubeTT/youtube WATCH HOLDING OUT FOR A HERO MUSIC VIDEO ► https://bonnietyler.lnk.to/YouTubeTT/youtube2 WATCH IF YOU WERE A WOMAN MUSIC VIDEO ► https://bonnietyler.lnk.to/YouTubeTT/youtube3 WATCH LOVING YOU IS A DIRTY JOB MUSIC VIDEO ► https://bonnietyler.lnk.to/YouTubeTT/youtube4 Follow Bonnie Tyler - Instagram: https://instagram.com/bonnietylerofficial Facebook: https://facebook.com/bonnietylerofficial Twitter: https://twitter.com/bonnietofficial TikTok: https://www.tiktok.com/@bonnietylerofficial...
The official music video for Rudimental - Straight From The Heart Feat. Nørskov Taken from their fourth studio album 'Ground Control' out 3rd September 2021 - Pre-order now: https://lnk.to/Ground-Control-PreSave Subscribe to the Rudimental channel for all the best and latest official music videos, behind the scenes and live performances. http://bit.ly/SubscribeToRudimental See more official videos from Rudimental here: https://www.youtube.com/playlist?list=PLhRApTKQaXd_lmApFRZh_IGJWSr9HroGL Listen to more from the album Ground Control: https://www.youtube.com/watch?v=Ub609YRsNp4&list=PLhRApTKQaXd9jLpMR900C1aptgs0Wiz7N Follow Rudimental: http://www.rudimental.co.uk http://www.facebook.com/rudimentaluk http://www.twitter.com/rudimentaluk http://www.instagram.com/rudimentaluk http:/...
Provided to YouTube by Universal Music Group Straight To My Heart · Sting ... Nothing Like The Sun ℗ An A&M Records Release; ℗ 1987 UMG Recordings, Inc. Released on: 1987-01-01 Producer, Studio Personnel, Mixer: Neil Dorfsman Producer, Associated Performer, Recording Arranger: Sting Studio Personnel, Mixer: Hugh Padgham Composer Lyricist: Sting 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