'+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; })); }); -->

Charles Shaughnessy

Charles George Patrick Shaughnessy, 5th Baron Shaughnessy (born February 9, 1955), or simply known as Charles Shaughnessy, is a British peer and television, theatre and film actor. He is known for his roles on American television, as Shane Donovan on the soap opera Days of Our Lives and as Maxwell Sheffield on the sitcom The Nanny. Along with his brother David Shaughnessy and Ophelia Soumekh he is a partner in 3S Media Solutions Inc.

Early life

Shaughnessy was born on 9 February 1955 in London, the son of Alfred Shaughnessy, a television writer who was the scriptwriter for Upstairs, Downstairs, and the actress Jean Lodge. His brother, David Shaughnessy, is also an actor and a television producer and director. His great-grandfather Thomas Shaughnessy was an American-born Canadian railway administrator of Irish descent. Having been born into a show-business family, he started appearing in plays during primary school. After attending Eton College, he read for a law degree at Magdalene College at the University of Cambridge where he wrote a thesis on the House of Lords.

Podcasts:

  • Charles Shaughnessy Shares Secrets From 'The Nanny' | Studio 10

    Subscribe now for more! https://youtube.com/c/Studio10au Check out our home on 10play: https://10play.com.au/studio10 'The Nanny' remains one of the small screens most endearing comedies. Charles Shaughnessy played the dashing Mr Sheffield and our Craig Bennett recently sat down with him to find out some secrets behind the hit series. Studio 10 | 8am – 12pm weekdays on Channel 10 featuring hosts Sarah Harris, Joe Hildebrand, Angela Bishop, Kerri-Anne Kennerley, Denise Drysdale, Natarsha Belling and Narelda Jacobs. Facebook: https://facebook.com/studio10au Twitter: https://twitter.com/Studio10au Instagram: https://www.instagram.com/studio10au #Studio10 #Channel10 #MorningTV

    published: 25 Mar 2020
  • Fran Drescher and Charles Shaughnessy Play Fast Money - Celebrity Family Feud

    'The Nanny' co-stars Fran Drescher and Charles Shaughnessy play Fast Money for a chance to win $25,000 for the charity Cancer Schmancer on 'Celebrity Family Feud.' Watch SUNDAYS 8/7c on ABC and stream on Hulu.

    published: 13 Sep 2021
  • Charles Shaughnessy Shares Memories From 'The Nanny' | Studio 10

    Subscribe now for more! https://youtube.com/c/Studio10au Check out our home on 10play: https://10play.com.au/studio10 The actor talks about his days as Mr Sheffield on the hit show 'The Nanny', the problems he faced with his English accent and his aristocratic background. Studio 10 | 8am – 12pm weekdays on Channel 10 featuring hosts Sarah Harris, Joe Hildebrand, Angela Bishop, Kerri-Anne Kennerley, Denise Drysdale, Natarsha Belling and Narelda Jacobs. Facebook: https://facebook.com/studio10au Twitter: https://twitter.com/Studio10au (@studio10au) Instagram: https://www.instagram.com/studio10au (@studio10au) #Studio10 #MorningTV #Channel10

    published: 11 Jul 2018
  • Actor Charles Shaughnessy Reflects on his role alongside Fran Drescher in 'The Nanny"

    Actor Charles Shaughnessy sits down with 207 to discuss his role in 'The Nanny' and taking the stage as King Author in 'Spamalot'

    published: 30 Jun 2021
  • 'The Nanny' Star Charles Shaughnessy On Maxwell Sheffield And His King's Coronation Snub | Studio 10

    Charles Shaughnessy, who played 'The Nanny's' iconic leading man Maxwell Sheffield in the hit sitcom that first aired more than 30 years ago, has revealed some surprising royal ties as he revealed an almighty King's Coronation snub! Subscribe now for more! https://youtube.com/c/Studio10au Check out our home on 10play: https://10play.com.au/studio10 00:28 - Charles Shaughnessy's Royal Title 01:00 - Why a King's Coronation invitation never arrived 03:33 - What Charles believes led to The Nanny's ongoing success 04:00 - Fran Drescher and their on-screen chemistry 05:10 - What were Charles' favourite guest star memories? 06:36 - Why The Nanny's wedding came earlier than expected 07:32 - Shaughnessy becomes daytime soap royalty 09:06 - What brought Charles to Hollywood in the first place? St...

    published: 17 Apr 2023
  • The Nanny Episode 1: Pandemic Table Read #WithMe

    Availability: “The Nanny” presently airs in the U.S. on The Roku Channel, Cozi TV and Logo TV. Abroad, the show has a home on an array of channels, including Amazon Prime in Australia, New Zealand and Canada, the Disney Channel in Germany, Parmount Network in Italy, TFX in France, VTM Go in Belgium, Ziggo in Netherlands, Astro in Southeast Asia and StarHub in Singapore. Follow Us: https://www.facebook.com/TheNannyTV/ For more information on The Nanny: https://www.sonypictures.com/tv/thenanny For more information on Cancer Schmancer: https://www.cancerschmancer.org/ Synopsis: Fran Drescher stars as Fran Fine, a street-smart young woman with a face out of Vogue and a voice out of Queens who stumbles onto the opportunity to become nanny to the children of a wealthy widower, Maxwell Shef...

    published: 06 Apr 2020
  • STATE OF MIND with MAURICE BENARD: CHARLES SHAUGHNESSY

    I just had an amazing talk with Charles about his time on General Hospital, The Nanny with Fran Drescher, growing up in London, and of course mental health. Please don't miss this one, I love this guy.-------------------------------------- Instagram: https://www.instagram.com/mauricebenard/ Twitter: https://twitter.com/mauricebenard Facebook: https://www.facebook.com/MauriceBenard/ Instagram: https://www.instagram.com/mbstateofmind/ Twitter: https://twitter.com/mbstateofmind Learn more about State Of Mind at https://www.mbstateofmind.com. If you'd like to learn more about my life, I've recently released "Nothing General About It - How Love (and Lithium) Saved Me On and Off General Hospital" https://www.amazon.com/dp/0062973371?tag=harpercollinsus-20

    published: 09 Oct 2022
  • Charles Shaughnessy shares secrets from the set of The Nanny, DOOL & General Hospital

    #charlesshaughnessy #generalhospital #daysofourlives Charles Shaughnessy relives his time The Nanny and reveals his favourite famous guest actors. Charles also talks about his time on Days of Our Lives, returning to General Hospital as Shane Donovan and those The Nanny reboot rumours. Plus Charles talks about Queen Elizabeth and King Charles 3rd coronation. Timecodes 0:00 – Intro 0:24 – Becoming British royalty 4:17 – The Nanny 5:34 – Famous Nanny guest stars 8:50 – Will there be a The Nanny reboot? 9:35 – Elizabeth Taylor 13:26 – Lindsay Lohan 15:30 – The two Donalds – O’Connor and Trump 16:09 – Fran Drescher 25:653 – Family parents & and meeting his wife 31:17 – Selling blue movies 33:00 – Finding fame on Days of Our Lives and then General Hospital

    published: 19 Jun 2022
  • Torn Between Two Lovetts | Happily Divorced S1 EP10 | Full Episodes

    Charles Shaughnessy guest stars as a famous author who takes a liking to Peter and Fran. But after getting mixed signals, they're left wondering who he really wants. See more on Hunnyhaha! Subscribe to https://www.youtube.com/channel/UCtmPU1Xy5X5KjOXge00LgiQ Welcome to Hunnyhaha! Your one stop shop for the greatest comedy sitcoms! Visit our page for a weekly dose of humour courtesy of your fave shows! #happilydivorced #tvlandfullepisodes #frandrescher

    published: 30 Nov 2018
  • CHARLES SHAUGHNESSY - FIRST 'LENO'

    mytalkshowheroes 1996

    published: 10 Jun 2017
developed with YouTube
Charles Shaughnessy Shares Secrets From 'The Nanny' | Studio 10
9:47

Charles Shaughnessy Shares Secrets From 'The Nanny' | Studio 10

  • Order:
  • Duration: 9:47
  • Uploaded Date: 25 Mar 2020
  • views: 595367
Subscribe now for more! https://youtube.com/c/Studio10au Check out our home on 10play: https://10play.com.au/studio10 'The Nanny' remains one of the small screens most endearing comedies. Charles Shaughnessy played the dashing Mr Sheffield and our Craig Bennett recently sat down with him to find out some secrets behind the hit series. Studio 10 | 8am – 12pm weekdays on Channel 10 featuring hosts Sarah Harris, Joe Hildebrand, Angela Bishop, Kerri-Anne Kennerley, Denise Drysdale, Natarsha Belling and Narelda Jacobs. Facebook: https://facebook.com/studio10au Twitter: https://twitter.com/Studio10au Instagram: https://www.instagram.com/studio10au #Studio10 #Channel10 #MorningTV
https://wn.com/Charles_Shaughnessy_Shares_Secrets_From_'The_Nanny'_|_Studio_10
Fran Drescher and Charles Shaughnessy Play Fast Money - Celebrity Family Feud
5:33

Fran Drescher and Charles Shaughnessy Play Fast Money - Celebrity Family Feud

  • Order:
  • Duration: 5:33
  • Uploaded Date: 13 Sep 2021
  • views: 1257851
'The Nanny' co-stars Fran Drescher and Charles Shaughnessy play Fast Money for a chance to win $25,000 for the charity Cancer Schmancer on 'Celebrity Family Feud.' Watch SUNDAYS 8/7c on ABC and stream on Hulu.
https://wn.com/Fran_Drescher_And_Charles_Shaughnessy_Play_Fast_Money_Celebrity_Family_Feud
Charles Shaughnessy Shares Memories From 'The Nanny' | Studio 10
10:06

Charles Shaughnessy Shares Memories From 'The Nanny' | Studio 10

  • Order:
  • Duration: 10:06
  • Uploaded Date: 11 Jul 2018
  • views: 621292
Subscribe now for more! https://youtube.com/c/Studio10au Check out our home on 10play: https://10play.com.au/studio10 The actor talks about his days as Mr Sheffield on the hit show 'The Nanny', the problems he faced with his English accent and his aristocratic background. Studio 10 | 8am – 12pm weekdays on Channel 10 featuring hosts Sarah Harris, Joe Hildebrand, Angela Bishop, Kerri-Anne Kennerley, Denise Drysdale, Natarsha Belling and Narelda Jacobs. Facebook: https://facebook.com/studio10au Twitter: https://twitter.com/Studio10au (@studio10au) Instagram: https://www.instagram.com/studio10au (@studio10au) #Studio10 #MorningTV #Channel10
https://wn.com/Charles_Shaughnessy_Shares_Memories_From_'The_Nanny'_|_Studio_10
Actor Charles Shaughnessy Reflects on his role alongside Fran Drescher in 'The Nanny"
4:31

Actor Charles Shaughnessy Reflects on his role alongside Fran Drescher in 'The Nanny"

  • Order:
  • Duration: 4:31
  • Uploaded Date: 30 Jun 2021
  • views: 9324
Actor Charles Shaughnessy sits down with 207 to discuss his role in 'The Nanny' and taking the stage as King Author in 'Spamalot'
https://wn.com/Actor_Charles_Shaughnessy_Reflects_On_His_Role_Alongside_Fran_Drescher_In_'The_Nanny
'The Nanny' Star Charles Shaughnessy On Maxwell Sheffield And His King's Coronation Snub | Studio 10
11:47

'The Nanny' Star Charles Shaughnessy On Maxwell Sheffield And His King's Coronation Snub | Studio 10

  • Order:
  • Duration: 11:47
  • Uploaded Date: 17 Apr 2023
  • views: 12202
Charles Shaughnessy, who played 'The Nanny's' iconic leading man Maxwell Sheffield in the hit sitcom that first aired more than 30 years ago, has revealed some surprising royal ties as he revealed an almighty King's Coronation snub! Subscribe now for more! https://youtube.com/c/Studio10au Check out our home on 10play: https://10play.com.au/studio10 00:28 - Charles Shaughnessy's Royal Title 01:00 - Why a King's Coronation invitation never arrived 03:33 - What Charles believes led to The Nanny's ongoing success 04:00 - Fran Drescher and their on-screen chemistry 05:10 - What were Charles' favourite guest star memories? 06:36 - Why The Nanny's wedding came earlier than expected 07:32 - Shaughnessy becomes daytime soap royalty 09:06 - What brought Charles to Hollywood in the first place? Start your day with a dose of sunshine 🌞 and join the feelgood fun 🙌 with Angela Bishop, Narelda Jacobs, and Tristan MacManus every weekday from 10am on Network 10 Australia! Facebook: https://facebook.com/studio10au Twitter: https://twitter.com/Studio10au (@studio10au) Instagram: https://www.instagram.com/studio10au (@studio10au) #Studio10
https://wn.com/'The_Nanny'_Star_Charles_Shaughnessy_On_Maxwell_Sheffield_And_His_King's_Coronation_Snub_|_Studio_10
The Nanny Episode 1: Pandemic Table Read #WithMe
33:09

The Nanny Episode 1: Pandemic Table Read #WithMe

  • Order:
  • Duration: 33:09
  • Uploaded Date: 06 Apr 2020
  • views: 2737718
Availability: “The Nanny” presently airs in the U.S. on The Roku Channel, Cozi TV and Logo TV. Abroad, the show has a home on an array of channels, including Amazon Prime in Australia, New Zealand and Canada, the Disney Channel in Germany, Parmount Network in Italy, TFX in France, VTM Go in Belgium, Ziggo in Netherlands, Astro in Southeast Asia and StarHub in Singapore. Follow Us: https://www.facebook.com/TheNannyTV/ For more information on The Nanny: https://www.sonypictures.com/tv/thenanny For more information on Cancer Schmancer: https://www.cancerschmancer.org/ Synopsis: Fran Drescher stars as Fran Fine, a street-smart young woman with a face out of Vogue and a voice out of Queens who stumbles onto the opportunity to become nanny to the children of a wealthy widower, Maxwell Sheffield. Soon Fran, with her offbeat nurturing and no-nonsense honesty, touches Maxwell as well as the kids. Talent: Fran Drescher Fran Fine Charles Shaughnessy Maxwell Sheffield Lauren Lane C.C. Babcock Daniel David Niles Nicholle Tom Maggie Sheffield Benjamin Salisbury Brighton Sheffield Madeline Zima Grace Sheffield Renee Taylor Sylvia Fine Rachel Chagall Val Toriello #PandemicPerformance #TheNanny #StayHome #WithMe
https://wn.com/The_Nanny_Episode_1_Pandemic_Table_Read_Withme
STATE OF MIND with MAURICE BENARD: CHARLES SHAUGHNESSY
42:41

STATE OF MIND with MAURICE BENARD: CHARLES SHAUGHNESSY

  • Order:
  • Duration: 42:41
  • Uploaded Date: 09 Oct 2022
  • views: 55476
I just had an amazing talk with Charles about his time on General Hospital, The Nanny with Fran Drescher, growing up in London, and of course mental health. Please don't miss this one, I love this guy.-------------------------------------- Instagram: https://www.instagram.com/mauricebenard/ Twitter: https://twitter.com/mauricebenard Facebook: https://www.facebook.com/MauriceBenard/ Instagram: https://www.instagram.com/mbstateofmind/ Twitter: https://twitter.com/mbstateofmind Learn more about State Of Mind at https://www.mbstateofmind.com. If you'd like to learn more about my life, I've recently released "Nothing General About It - How Love (and Lithium) Saved Me On and Off General Hospital" https://www.amazon.com/dp/0062973371?tag=harpercollinsus-20
https://wn.com/State_Of_Mind_With_Maurice_Benard_Charles_Shaughnessy
Charles Shaughnessy shares secrets from the set of The Nanny, DOOL & General Hospital
45:28

Charles Shaughnessy shares secrets from the set of The Nanny, DOOL & General Hospital

  • Order:
  • Duration: 45:28
  • Uploaded Date: 19 Jun 2022
  • views: 11772
#charlesshaughnessy #generalhospital #daysofourlives Charles Shaughnessy relives his time The Nanny and reveals his favourite famous guest actors. Charles also talks about his time on Days of Our Lives, returning to General Hospital as Shane Donovan and those The Nanny reboot rumours. Plus Charles talks about Queen Elizabeth and King Charles 3rd coronation. Timecodes 0:00 – Intro 0:24 – Becoming British royalty 4:17 – The Nanny 5:34 – Famous Nanny guest stars 8:50 – Will there be a The Nanny reboot? 9:35 – Elizabeth Taylor 13:26 – Lindsay Lohan 15:30 – The two Donalds – O’Connor and Trump 16:09 – Fran Drescher 25:653 – Family parents & and meeting his wife 31:17 – Selling blue movies 33:00 – Finding fame on Days of Our Lives and then General Hospital
https://wn.com/Charles_Shaughnessy_Shares_Secrets_From_The_Set_Of_The_Nanny,_Dool_General_Hospital
Torn Between Two Lovetts | Happily Divorced S1 EP10 | Full Episodes
19:49

Torn Between Two Lovetts | Happily Divorced S1 EP10 | Full Episodes

  • Order:
  • Duration: 19:49
  • Uploaded Date: 30 Nov 2018
  • views: 959128
Charles Shaughnessy guest stars as a famous author who takes a liking to Peter and Fran. But after getting mixed signals, they're left wondering who he really wants. See more on Hunnyhaha! Subscribe to https://www.youtube.com/channel/UCtmPU1Xy5X5KjOXge00LgiQ Welcome to Hunnyhaha! Your one stop shop for the greatest comedy sitcoms! Visit our page for a weekly dose of humour courtesy of your fave shows! #happilydivorced #tvlandfullepisodes #frandrescher
https://wn.com/Torn_Between_Two_Lovetts_|_Happily_Divorced_S1_Ep10_|_Full_Episodes
CHARLES SHAUGHNESSY - FIRST 'LENO'
4:43

CHARLES SHAUGHNESSY - FIRST 'LENO'

  • Order:
  • Duration: 4:43
  • Uploaded Date: 10 Jun 2017
  • views: 15583
mytalkshowheroes 1996
https://wn.com/Charles_Shaughnessy_First_'LENO'
developed with YouTube
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
developed with YouTube
PLAYLIST TIME:

Charles Shaughnessy Shares Secrets From 'The Nanny' | Studio 10

Subscribe now for more! https://youtube.com/c/Studio10au Check out our home on 10play: https://10play.com.au/studio10 'The Nanny' remains one of the small screens most endearing comedies. Charles Shaughnessy played the dashing Mr Sheffield and our Craig Bennett recently sat down with him to find out some secrets behind the hit series. Studio 10 | 8am – 12pm weekdays on Channel 10 featuring hosts Sarah Harris, Joe Hildebrand, Angela Bishop, Kerri-Anne Kennerley, Denise Drysdale, Natarsha Belling and Narelda Jacobs. Facebook: https://facebook.com/studio10au Twitter: https://twitter.com/Studio10au Instagram: https://www.instagram.com/studio10au #Studio10 #Channel10 #MorningTV
9:47
Charles Shaughnessy Shares Secrets From 'The Nanny' | Studio 10
Subscribe now for more! https://youtube.com/c/Studio10au Check out our home on 10play: htt...
published: 25 Mar 2020
Play in Full Screen
5:33
Fran Drescher and Charles Shaughnessy Play Fast Money - Celebrity Family Feud
'The Nanny' co-stars Fran Drescher and Charles Shaughnessy play Fast Money for a chance to...
published: 13 Sep 2021
Play in Full Screen
10:06
Charles Shaughnessy Shares Memories From 'The Nanny' | Studio 10
Subscribe now for more! https://youtube.com/c/Studio10au Check out our home on 10play: htt...
published: 11 Jul 2018
Play in Full Screen
4:31
Actor Charles Shaughnessy Reflects on his role alongside Fran Drescher in 'The Nanny"
Actor Charles Shaughnessy sits down with 207 to discuss his role in 'The Nanny' and taking...
published: 30 Jun 2021
Play in Full Screen
11:47
'The Nanny' Star Charles Shaughnessy On Maxwell Sheffield And His King's Coronation Snub | Studio 10
Charles Shaughnessy, who played 'The Nanny's' iconic leading man Maxwell Sheffield in the ...
published: 17 Apr 2023
Play in Full Screen
33:09
The Nanny Episode 1: Pandemic Table Read #WithMe
Availability: “The Nanny” presently airs in the U.S. on The Roku Channel, Cozi TV and Logo...
published: 06 Apr 2020
Play in Full Screen
42:41
STATE OF MIND with MAURICE BENARD: CHARLES SHAUGHNESSY
I just had an amazing talk with Charles about his time on General Hospital, The Nanny with...
published: 09 Oct 2022
Play in Full Screen
45:28
Charles Shaughnessy shares secrets from the set of The Nanny, DOOL & General Hospital
#charlesshaughnessy #generalhospital #daysofourlives Charles Shaughnessy relives his time...
published: 19 Jun 2022
Play in Full Screen
19:49
Torn Between Two Lovetts | Happily Divorced S1 EP10 | Full Episodes
Charles Shaughnessy guest stars as a famous author who takes a liking to Peter and Fran. B...
published: 30 Nov 2018
Play in Full Screen
4:43
CHARLES SHAUGHNESSY - FIRST 'LENO'
mytalkshowheroes 1996
published: 10 Jun 2017
Play in Full Screen

Charles Shaughnessy

Charles George Patrick Shaughnessy, 5th Baron Shaughnessy (born February 9, 1955), or simply known as Charles Shaughnessy, is a British peer and television, theatre and film actor. He is known for his roles on American television, as Shane Donovan on the soap opera Days of Our Lives and as Maxwell Sheffield on the sitcom The Nanny. Along with his brother David Shaughnessy and Ophelia Soumekh he is a partner in 3S Media Solutions Inc.

Early life

Shaughnessy was born on 9 February 1955 in London, the son of Alfred Shaughnessy, a television writer who was the scriptwriter for Upstairs, Downstairs, and the actress Jean Lodge. His brother, David Shaughnessy, is also an actor and a television producer and director. His great-grandfather Thomas Shaughnessy was an American-born Canadian railway administrator of Irish descent. Having been born into a show-business family, he started appearing in plays during primary school. After attending Eton College, he read for a law degree at Magdalene College at the University of Cambridge where he wrote a thesis on the House of Lords.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: charles shaughnessy

Edit

8 Hanukkah TV episodes to watch and stream

New York Post 24 Dec 2024
In the Season 6 episode “The Hanukkah Story,” Fran (Fran Drescher) is excited about celebrating her first Hanukkah with Maxwell (Charles Shaughnessy), only he has to drive to Boston on business — and his car drives off the road in a snow storm.
Edit

John Mulaney back on Broadway in sweet 'All In' with some starry friends

Pittsburgh Tribune Review 23 Dec 2024
NEW YORKJohn Mulaney’s second trip to Broadway took little convincing. He didn’t even need to look at the script before signing on ... I didn’t read it ... Charles Shaughnessy returns to Pittsburgh for 'A Musical Christmas Carol'.
Edit

Michael Cole, 'The Mod Squad' and 'General Hospital' star, dies at 84

Pittsburgh Tribune Review 11 Dec 2024
LOS ANGELES — Michael Cole, who starred as one-third of “The Mod Squad,” has died. He was 84 ... But first, he was my Uncle who I loved deeply.” ... Police Capt ... Charles Shaughnessy returns to Pittsburgh for 'A Musical Christmas Carol'.
Edit

Charles Shaughnessy returns to Pittsburgh for 'A Musical Christmas Carol'

Pittsburgh Tribune Review 10 Dec 2024
Charles Shaughnessy — who’s ... So you get to get inside a skin, and it’s a sort of almost a Zen-like experience, you know, Charles Shaughnessy is left behind for two and a half hours.
Edit

After withdrawing as attorney general nominee, Matt Gaetz lands a talk show on OANN television

Pittsburgh Tribune Review 10 Dec 2024
His time slot — prime real estate in the cable news world — reflects the high expectations that OANN has for the show, said Charles Herring, network president ... Charles Shaughnessy returns to Pittsburgh for 'A Musical Christmas Carol' ... ....
Edit

Days of our Lives teases Doug’s memorial, missing John, Bo and Hope’s return, who shot ...

Monsters & Critics 03 Nov 2024
The annual Day of Days fan event revealed a sneak peek of the upcoming season ... Brady (Eric Martsolf) breaks the news that John is missing, leading to the return of Charles Shaughnessy as Shane Donovan ... Get ready for a tearjerker of a storyline ... ....
Edit

Dr. I: A day of feeling fat watching cross country

The Day 27 Oct 2024
• Dr. Idle, Dr ... 6 for the celebration ... Dr ... • Speaking of the Globe, this from the great Dan Shaughnessy. “Fenway Sports Group’s efforts to make the Red Sox Tampa Bay-by-the-Charles picked up more steam this past week with a couple of huge analytics hires.
Edit

Days of our Lives alums Charles Shaughnessy, Thaao Penghlis, Christie Clark, and more to return ...

Monsters & Critics 07 Oct 2024
The past few weeks have revealed a slew of alums returning to help the show mark the milestone ... Days of our Lives alums Charles Shaughnessy, Thaao Penghlis, Christie Clark, and more to return in 2025 ... Charles Shaughnessy is bringing Shane back to town.
Edit

‘Days of Our Lives’ Returns Galore! Christie Clark, Victoria Konefal, Charles Shaughnessy & More Are Back

Sierra County Sentinel 04 Oct 2024
'Fans are really going to enjoy what we have in store beginning this fall and well into next year,' teases executive producer Ken Corday of the supersized comeback group ... .
Edit

General Hospital: What Happened to Laura Wright’s Eye? Injury Explained

Coming Soon 25 Sep 2024
... directors who helped me look up stage as much as possible!” She even poked fun at the situation, with co-star Charles Shaughnessy (Victor Cassadine) commenting, “Her eye did look a little spooky!”.
Edit

General Hospital fans delighted over return of popular character one year after shock exit

The Daily Mail 29 Jul 2024
... Hughes) and Scott Baldwin (Kin Shriner) band together in Greenland to prevent Victor Cassadine (Charles Shaughnessy) from unleashing biological warfare to wipe out 80 per cent of the world population.

Most Viewed

×