- published: 24 Aug 2020
- views: 2860547
'+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; })); }); -->
Kevin Conroy (born November 30, 1955) is an American stage, screen and voice actor; best known for his voice role as the DC Comics character Batman on the 1990s Warner Bros. television show Batman: The Animated Series, as well as various other TV series and feature films in the DC animated universe. Due to the popularity of his performance as the character, Conroy went on to voice Batman for multiple films under the DC Universe Animated Original Movies banner; along with the acclaimed video games Batman: Arkham Asylum (2009), Batman: Arkham City (2011) and Batman: Arkham Knight (2015).
Born in Westbury, New York, Conroy moved to Westport, Connecticut when he was about 11 years old. He moved to New York in 1973 when he earned a full scholarship to attend Juilliard's drama division, where he studied under actor John Houseman. While there, he almost ended up living with future Superman actor Christopher Reeve, but instead roomed with Robin Williams who was in the same group as both Conroy and Kelsey Grammer. After graduating from Juilliard in 1978, he toured with Houseman's acting group The Acting Company, and the following year he went on the national tour of Ira Levin's Deathtrap.
The Metropolitan Borough of North Tyneside is a metropolitan borough of Tyne and Wear, in North East England, and is part of the Tyneside conurbation. Its seat is Wallsend Town Hall.
North Tyneside is bounded by Newcastle upon Tyne to the west, the North Sea to the east, the River Tyne to the south and Northumberland to the north. Within its bounds are the towns of Wallsend, North Shields and Whitley Bay, which form a continuously built-up area contiguous with Newcastle.
The borough was formed on 1 April 1974 by the merger of the county borough of Tynemouth, with the borough of Wallsend, part of the borough of Whitley Bay, the urban district of Longbenton and part of the urban district of Seaton Valley, all of which were in Northumberland.
The following places are located in North Tyneside:
"Thank You Jan!" (Thank youじゃん!) is a single by Japanese boy band Kis-My-Ft2. It was released on December 24, 2014. It debuted at number one on the weekly Oricon Singles Chart.
"Thank you" is a common expression of gratitude. It often refers to a thank you letter, a letter written to express appreciation.
Thank You or Thank U may also refer to:
"Thank You" is a song written by Robert Plant and Jimmy Page that was recorded by English rock band Led Zeppelin for the 1969 album Led Zeppelin II.
"Thank You" signalled a deeper involvement in songwriting by singer Robert Plant: it was the first Led Zeppelin song for which he wrote all the lyrics. According to various Led Zeppelin biographies, this is also the song that made Jimmy Page realise that Plant could now handle writing the majority of the lyrics for the band's songs. Plant wrote the song as a tribute to his then-wife Maureen.
The song features Hammond organ playing by John Paul Jones, which fades into a false ending before concluding with a crescendo roughly ten seconds later. This has created a problem for radio stations wishing to play the track, which must decide whether to accept the dead air or cut it off. Some stations run an edited version with the silence eliminated. For the recording of this track, Page played on a Vox 12-string guitar. It was also one of the few Led Zeppelin songs on which Page sang backing vocals.
For nearly three decades, voiceover actor Kevin Conroy has been the voice of (animated) Batman. He has voiced almost every iteration of Batman in cartoons, animated movies or video games. Conroy began his career as a theater actor, attending Julliard, a prestigious acting school in New York City. He studied alongside heavyweights Robin Williams, Kelsey Grammer and more. Conroy would go on to perform on Broadway and off-Broadway when his agent called him about auditioning for the role of Batman in a new animated show. During the audition Kevin was able to use his theater background to manifest one of the most memorable voices in cartoon history. SUBSCRIBE: https://goo.gl/vR6Acb #Batman #KevinConroy #DCComics This story is a part of our Human Condition series. Come along and let us conn...
Rest in peace, Kevin Conroy. You will always be our Batman.
One actor has inhabited the role of Batman more iconically than any other -- Kevin Conroy, the voice actor who holds the record for having played Batman for longer than any other performer, starting with Batman the Animated Series in the early 90s. There was a reason Kevin could relate to Batman like no one else: because for decades, he too lived a double life. Just like Bruce Wayne and the Caped Crusader, Kevin spent years split between worlds, hiding a secret identity of his own. Full interviews with Tara Strong and Amanda Wyatt are free to watch here: https://vimeo.com/mattbaume/taraandamanda Bonus videos on Patreon: http://patreon.com/mattbaume Stream Batman: The Animated Series here: https://amzn.to/3YfRQFU The following music was used for this media project: Music: Action Strike ...
"Batman and Joker need each other" 🥺 #batman #joker #markhamill #fanexpo #fanexposanfrancisco // STAY INVOLVED \\ The FHQ Newsletter: https://fanexpohq.com/the-fhq/ Our events: https://fanexpohq.com/home/events/ Be a Videographer with our shows: https://fanexpohq.formstack.com/forms/videographer_recruitment Enjoy our TikTok videos: https://www.tiktok.com/@fanexpohq Buy exclusive merch: https://www.shopfanexpo.com/
In this video, we watch Kevin Conroy’s FINAL performance as Batman… 🦇🕊️ Follow Sid On Social Media: Instagram: @therealdoomblazer ~ https://www.instagram.com/therealdoomblazer/ Twitter: @doomblazer23 ~ https://www.twitter.com/doomblazer23 TikTok: @doomblazer ~ https://www.tiktok.com/@doomblazer?lang=en Business Email: [email protected] If you actually read this far I Love You 3000💙 #DOOMBLAZER #KEVINCONROY #BATMAN #RESTINPEACE #SHORTS #DCUNIVERSE #DCAU
Kevin Conroy’s brief cameo from Crisis on Infinite Earths Part 3. Shame they couldn't get Mark Hamill along to complete the set, but this is decent enough. Thanks to @bluekinghtbeyond for putting this together
Kevin Smith shares a few personal anecdotes about the recently departed voice of Batman himself, Kevin Conroy. ----------------------------------------------------------------------------- CONNECT WITH US! For the Audio Podcast: http://www.smodcast.com/channel/fatmanonbatman Follow Kevin Smith on twitter at: https://twitter.com/ThatKevinSmith Tickets for all SModCo shows available at: http://seesmod.com
Post-credits scene from Suicide Squad: Kill the Justice League paying tribute to the beloved voice of Batman, the late Kevin Conroy. ► YOUTUBE: https://www.youtube.com/BatmanArkhamVideos ► DISCORD: https://discord.gg/BatmanArkham ► TWITTER: https://twitter.com/ArkhamVideos ► INSTAGRAM: https://www.instagram.com/arkhamvideos ► FACEBOOK: https://www.facebook.com/BatmanArkhamNews #SuicideSquadGame #KillTheJusticeLeague #SuicideSquad #JusticeLeague #Batman #BatmanArkham #KevinConroy ABOUT THIS CHANNEL This channel is in no way associated with Rocksteady Studios or Warner Bros. Interactive Entertainment. Batman Arkham Videos is a fan channel dedicated to bringing you the latest news, guides and videos from the Batman Arkham video game series.
He was the voice of our childhoods, RIP Kevin Conroy. For this list, we’ll be looking at the best scenes featuring this legendary actor as the caped crusader in every medium. If you haven’t seen all these stories, beware the Batman and a few spoilers ahead. What’s your favorite Kevin Conroy performance? Share your memories of this legend in the comments below. Check out these other "Batman" related videos: Top 10 Most Powerful Versions of Batman https://youtu.be/NJQcXt86s70 Top 10 Batman Vehicles https://youtu.be/0JdfIiCffao Top 10 Batman Differences: Then and Now https://youtu.be/nFNTzvM_u0U Become a channel member to get access to special perks: https://www.youtube.com/channel/UCaWd5_7JhbQBe4dknZhsHJg/join Challenge friends and family on our multiplayer Trivia! https://www.watchmo...
Subscribe to Full Motion Videos ► https://bit.ly/FMVSubscribe More DC Shorts ► https://www.youtube.com/shorts/2ox1BKFxp1E There isn't another actor that I immediately associate with a character like I do with Mark Hamill as the Joker and Kevin Conroy as Batman. After making their debut in Batman The Animated Series, both cemented themselves as THE voices for those characters in my brain, and to this day, whenever I read a Batman comic or the Brave and the Bold or anything else from DC Comics, they are who I hear. However, it seems like we will never hear either of them as their characters ever again... How do you feel about Mark Hamill no longer being the Joker? Let me know! Follow me on Social Media! LinkTree ------------- ► http://www.linktr.ee/fullmotionvideos Do you like Batman? Wa...
For more information on our ambition for North Shields and the Fish Quay please visit: https://my.northtyneside.gov.uk/category/1415/ambition-north-shields
Rachel Hegarty, Head of People, shares the many benefits of working for North Tyneside Council, as well as our values and priorities as an organisation. If you're interested in joining the team, head over to https://www.northeastjobs.org.uk/northtynesidecouncil/aboutus to see what roles we currently have available. Learn about our goals as a local authority here: https://my.northtyneside.gov.uk/category/1241/our-north-tyneside-plan
Dawn McNally, our Group Chief Executive, tells you a bit more about our new Community & Locality Engagement project.
A quick walk through of one of our newly refurbished, stylish retirement apartments. Open days happening now - http://my.northtyneside.gov.uk/news/18068/stylish-apartment-opens-its-doors
(excuse the wind at the very start of the video it settles down after about 10 seconds)Took a little stroll around North Tyneside Council today. Had a few funny looks from people but all round not too bad. Had a few issues getting the FOI request through but got it sorted in the end. PINAC FOI AUDIT! Link to the FOI answers are below . Basically, the council is bust -£100,000,000 black hole over 4-5 years!!! Please like, share, comment and sub. I take all suggestions on board. Thanks again. LCR http://my.northtyneside.gov.uk/category/816/disclosure-log #policeofficer #police #drone #flight #freedom #1stamendmentaudits #uk #lights #camera #ruction #subscribe #like #share #dji #4k #aviation #newcastle #conversation #pleasant #flysafe #northumbriapolice #northumbria #1stamendmentaudits #up...
Hidden gems you didn't know existed in North Shields and Tynemouth! There's so much history around us, especially when we know where to look! Come with me to explore North Shields and Tynemouth, pointing out some unexpected history gems on the way! Follow me on Tiktok and Instagram at @northeastnostalgic! #history #northeasthistory #northeastengland #tyneside #tynemouth #northshields #hiddengem #hiddenhistory #hiddengems #Newcastle #didyouknow #learnonyoutube #tyneandwear
Havelock Place is a new and exciting Extra Care Housing Scheme in Backworth which has been designed to support those living with dementia or a cognitive impairment.
North sheild town centre the mall and the local shops are well organised and clean the seagulls and lots of great stuff keep the town busy watch like,comment and share much appreciated #englishstream#englandtour#england
Kevin Conroy (born November 30, 1955) is an American stage, screen and voice actor; best known for his voice role as the DC Comics character Batman on the 1990s Warner Bros. television show Batman: The Animated Series, as well as various other TV series and feature films in the DC animated universe. Due to the popularity of his performance as the character, Conroy went on to voice Batman for multiple films under the DC Universe Animated Original Movies banner; along with the acclaimed video games Batman: Arkham Asylum (2009), Batman: Arkham City (2011) and Batman: Arkham Knight (2015).
Born in Westbury, New York, Conroy moved to Westport, Connecticut when he was about 11 years old. He moved to New York in 1973 when he earned a full scholarship to attend Juilliard's drama division, where he studied under actor John Houseman. While there, he almost ended up living with future Superman actor Christopher Reeve, but instead roomed with Robin Williams who was in the same group as both Conroy and Kelsey Grammer. After graduating from Juilliard in 1978, he toured with Houseman's acting group The Acting Company, and the following year he went on the national tour of Ira Levin's Deathtrap.
I'm out, I'm closing a chapter
All in, a world full of rapture
Caught up, its time for the show
Oh baby, baby, baby
Tough luck, you win but you're losing
Break out, you'll be what you're choosing
One wish, illusion is bliss
So baby baby baby
You're at your mind and love is a cover
This time, your turn is over, it's over
Thank you for all that you've done for me
Now I know what real love is supposed to be
Can't waste my time so goodbye my baby, baby, baby
Thank you
Love struck is never easy
Came and gone, just to please me
Better off, living my dream now
Baby, baby, baby
Life hurts when lies are uncovered
So I'm gone before it's over
Thank you for all that you've done for me
Now I know what real love is supposed to be
Can't waste my time so goodbye my baby, baby, baby
Oh oh
I'm better off alone
For all that you have done
And I know what I want
And that ain't what you got
Thank you for all that you've done for me
Now I know what real love is supposed to be
Can't waste my time so goodbye my baby, baby, baby
Can't waste my time so goodbye my baby, baby
Thank you for all that you've done for me
I know what real love is supposed to be
Can't waste my time so goodbye my baby, baby, baby