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

The Thirty-Nine Steps

The Thirty-Nine Steps is an adventure novel by the Scottish author John Buchan. It first appeared as a serial in Blackwood's Magazine in August and September 1915 before being published in book form in October that year by William Blackwood and Sons, Edinburgh. It is the first of five novels featuring Richard Hannay, an all-action hero with a stiff upper lip and a miraculous knack for getting himself out of sticky situations.

The novel formed the basis for a number of film adaptations, notably: Alfred Hitchcock's 1935 version; a 1959 colour remake; a 1978 version which is perhaps most faithful to the novel; and a 2008 version for British television.

Background

John Buchan wrote The Thirty-Nine Steps while he was ill in bed with a duodenal ulcer, an illness which remained with him all his life. The novel was his first "shocker", as he called it — a story combining personal and political dramas. The novel marked a turning point in Buchan's literary career and introduced his famous adventuring hero, Richard Hannay. He described a "shocker" as an adventure where the events in the story are unlikely and the reader is only just able to believe that they really happened.

The 39 Steps

The Thirty-Nine Steps is a novel by John Buchan, first serialized in 1915.

It may also refer to:

  • The 39 Steps (1935 film), directed by Alfred Hitchcock
  • The 39 Steps (1959 film), directed by Ralph Thomas
  • The Thirty Nine Steps (1978 film), directed by Don Sharp
  • The 39 Steps (2008 film), directed by James Hawes
  • The 39 Steps (play), adapted by Patrick Barlow
  • The 39 Steps, video game adaptation of Buchan's book
  • See also

  • 39 Steps (album), 2013 album by guitarist John Abercrombie
  • 39 Steps (band), a rock band that appears in Woody Allen's film Hannah and Her Sisters
  • The Thirty Nine Steps (1978 film)

    The Thirty Nine Steps is a British 1978 thriller film directed by Don Sharp, with screenplay by British playwright Michael Robson, based on the novel The Thirty-Nine Steps by John Buchan. It was the third film version of the 1915 novel.

    This version of Buchan's tale starred Robert Powell as Richard Hannay, Karen Dotrice as Alex, John Mills as Colonel Scudder, and a host of other well-known British actors in smaller parts. It is generally regarded as the closest to the novel, being set before the Great War. The early events and overall feel of the film bear much resemblance to Buchan's original story, albeit with a few changes such as the re-casting of Scudder as a more immediately sympathetic character and the introduction of a love interest. It also introduces a different meaning for the "thirty-nine steps", although unlike its filmed predecessors it returns to Buchan's original notion of being an actual staircase. It is well remembered for the famous Big Ben end sequence, inspired by the 1943 film My Learned Friend, although this is its most fundamental deviation from Buchan's original story, which reaches its culmination in a coastal location in Kent.

    Thirty-nine steps

    Film adaptations based on the novel The Thirty-Nine Steps:

  • The 39 Steps (1935 film), directed by Alfred Hitchcock
  • The 39 Steps (1959 film), directed by Ralph Thomas
  • The Thirty Nine Steps (1978 film), directed by Don Sharp
  • The 39 Steps (2008 film), directed by James Hawes
  • The 39 Steps (play), adapted by Patrick Barlow
  • Other uses:

  • 39 Steps (band), a rock band that appears in Woody Allen's film Hannah and Her Sisters
  • The Thirty-Nine Steps, novel by John Buchan
  • The 39 Steps (2008 film)

    The 39 Steps is a 2008 British television adventure feature-length adaptation of the John Buchan novel The Thirty-Nine Steps produced by the BBC. It was written by Lizzie Mickery, directed by James Hawes, and filmed on location in Scotland, starring Rupert Penry-Jones, Lydia Leonard, David Haig, Eddie Marsan, and Patrick Malahide. Following three screen versions of the novel and a 1977 television adaptation of The Three Hostages, Penry-Jones became the fifth actor to portray Hannay on screen. This adaptation is set on the eve of the First World War and sees mining engineer Richard Hannay caught up in an espionage conspiracy following the death of a British spy in his flat.

    The single drama was first shown on BBC One and BBC HD on 28 December 2008 as part of BBC One's Christmas 2008 line-up, and it was the most watched programme of the day. Compared to Alfred Hitchcock's 1935 film, it received mostly negative reviews from the press. The production was criticised for its historical inaccuracies, particularly its use of anachronistic props.

    Podcasts:

    Matching books:

    • The 39 Steps | 1959 | Kenneth More & Taina Elg

      Channel not monetised by me so any Ads = YT's fault not mine - sorry folks ☹️

      published: 19 Aug 2021
    • The 39 Steps | 2008 | Lydia Leonard & Rupert Penry - Jones

      Channel not monetised by me so any Ads = YT's fault not mine - sorry folks ☹️

      published: 19 Aug 2021
    • The 39 Steps (1935) Alfred Hitchcock | Robert Donat, Madeleine Carroll | Colorized Movie | Subtitles

      A heart-racing spy story...Richard Hannay stumbles upon a conspiracy that thrusts him into a hectic chase across Scotland —a chase in which he is both the pursuer and the pursued— as well as into an unexpected romance with Pamela. Original Black & White version: https://youtu.be/RmSdum4BMqI Original title: The 39 Steps (1935) This video is available with English, German, French, Italian & spanish audio. And subtitles in more than 30 languages. Click on ⚙️ and choose your preferred language. Director: Alfred Hitchcock Writers: John Buchan (novel), Charles Bennett, Ian Hay Stars: Robert Donat, Madeleine Carroll, Lucie Mannheim Genres: British Noir, Crime, Mystery, Spy, Thriller 00:00 Full Movie - title credits 00:04 A comedic scene unfolds during a memory demonstration at an event, ...

      published: 10 Apr 2023
    • The 39 Steps | 1978 | Robert Powell & Karen Dotrice

      Channel not monetised by me so any Ads = YT's fault not mine - sorry folks ☹️

      published: 19 Aug 2021
    • The 39 Steps (1935) Alfred Hitchcock, 720p

      'The 39 Steps' is adapted from John Buchan's novel, and is recognized as the best Hitchcock picture from the Biritsh era. If you want to listen to the conversation between Hitchcock and Truffaut on the film: https://www.youtube.com/watch?v=8Z3JA3HeZ3U Enjoy the movie 'The 39 Steps' (http://imdb.com/title/tt0026029/ )

      published: 18 Sep 2016
    • The 39 Steps (1935) - Alfred Hitchcock Full Movie

      The 39 Steps is a heart-racing spy story by Alfred Hitchcock, following Richard Hannay (Oscar winner Robert Donat), who stumbles into a conspiracy that thrusts him into a hectic chase across the Scottish moors—a chase in which he is both the pursuer and the pursued—as well as into an expected romance with the cool Pamela (Madeline Carroll). Adapted from a novel by John Buchan, this classic wrong-man thriller from the Master of Suspense anticipates the director’s most famous works (especially North by Northwest), and remains one of his cleverest and most entertaining films.

      published: 03 Apr 2015
    • The 39 Steps explained | Hitchcock Masterpiece

      Released in 1935 The 39 Steps finally put 35-year-old Alfred Hitchcock on the international stage with huge acclaim and the movie did very well. But what is less known is how it was released during a very difficult period of Hollywood history, the Hays code essentially Censored movies from showing sex, violence, religion and politics in certain ways, strangling any adult conversation in movies at that time. however, Alfred Hitchcock wasn't going to let that stop him. 0:00 39 Steps intro 0:10 1935 silent era evolves into the talkies 0:21 39 steps film synopsis 0:39 review of 39 steps from Orson Wells 0:57 1935 cinema was more adult than you think 1:18 What is the Hays code and what did it do? 1:59 Hitchcock taking on the hays code 2:30 Hitchcock uses unknown characters discussing underwea...

      published: 03 Mar 2022
    • The 39 Steps (1935) - Modern Trailer

      Alfred Hitchcock's 1935 thriller gets an update in this modern trailer. Richard Hannay is a man on the run, fleeing to Scotland, accused of a murder he never committed. He needs to expose the spies and the 39 Steps to prove his innocence and clear his name – whether he's handcuffed to a beautiful girl or not.

      published: 15 Aug 2015
    • How Narcissistic Abuse Affects Your Health: The Hidden Link to Illness and Disease

      🚨 Get Ready to Transform Your Life! 🚨 Join us Monday, January 27th - Friday, January 31st at 3 PM EST for the Break Free & Rise Boot Camp! https://www.facebook.com/groups/461567520344420 Did you know that narcissistic abuse doesn’t just affect your emotions—it can also damage your physical health? In this video, I’ll uncover the hidden link between emotional trauma and chronic illness, and share actionable steps to help you heal your mind and body. 🌟 Learn about: ✅ How chronic stress from abuse affects your body. ✅ The connection between emotional trauma and physical symptoms. ✅ Practical tips to reduce stress, boost healing, and reclaim your health. You don’t have to suffer in silence. Let’s start your journey to recovery today. 💖 Download my free healing guide [insert link]! Tags: narci...

      published: 16 Jan 2025
    • Alfred Hitchcock | The 39 Steps (1935) Robert Donat, Madeleine Carroll, Lucie Mannheim | Full Movie

      HANDCUFFED TO THE GIRL WHO DOUBLE CROSSED HIM! A man in London tries to help a counter-espionage agent, but when the agent is killed and the man stands accused, he must go on the run to save himself and stop a spy ring that is trying to steal top-secret information. Original title: The 39 Steps (1935) Colorized version: https://youtu.be/jfVtoPN3BVk Director: Alfred Hitchcock Writers: John Buchan (novel), Charles Bennett, Ian Hay Stars: Robert Donat, Madeleine Carroll, Lucie Mannheim Genres: British Noir, Crime, Mystery, Spy, Thriller 00:00:00 Full length movie - title credits 00:01:23 Mr Memory at the music hall 00:06:40 Come home with you 00:13:21 39 steps 00:36:46 On the run 00:41:57 Finger identification 00:54:19 Arrested 01:00:58 Checking-in as Mr & Mrs 01:10:30 Sneaking out Thi...

      published: 10 Apr 2023
    The 39 Steps  | 1959 |  Kenneth More & Taina Elg
    1:31:01

    The 39 Steps | 1959 | Kenneth More & Taina Elg

    • Order:
    • Duration: 1:31:01
    • Uploaded Date: 19 Aug 2021
    • views: 627622
    Channel not monetised by me so any Ads = YT's fault not mine - sorry folks ☹️
    https://wn.com/The_39_Steps_|_1959_|_Kenneth_More_Taina_Elg
    The 39 Steps  |  2008  |   Lydia Leonard & Rupert Penry - Jones
    1:29:14

    The 39 Steps | 2008 | Lydia Leonard & Rupert Penry - Jones

    • Order:
    • Duration: 1:29:14
    • Uploaded Date: 19 Aug 2021
    • views: 392657
    Channel not monetised by me so any Ads = YT's fault not mine - sorry folks ☹️
    https://wn.com/The_39_Steps_|_2008_|_Lydia_Leonard_Rupert_Penry_Jones
    The 39 Steps (1935) Alfred Hitchcock | Robert Donat, Madeleine Carroll | Colorized Movie | Subtitles
    1:26:23

    The 39 Steps (1935) Alfred Hitchcock | Robert Donat, Madeleine Carroll | Colorized Movie | Subtitles

    • Order:
    • Duration: 1:26:23
    • Uploaded Date: 10 Apr 2023
    • views: 1608120
    A heart-racing spy story...Richard Hannay stumbles upon a conspiracy that thrusts him into a hectic chase across Scotland —a chase in which he is both the pursuer and the pursued— as well as into an unexpected romance with Pamela. Original Black & White version: https://youtu.be/RmSdum4BMqI Original title: The 39 Steps (1935) This video is available with English, German, French, Italian & spanish audio. And subtitles in more than 30 languages. Click on ⚙️ and choose your preferred language. Director: Alfred Hitchcock Writers: John Buchan (novel), Charles Bennett, Ian Hay Stars: Robert Donat, Madeleine Carroll, Lucie Mannheim Genres: British Noir, Crime, Mystery, Spy, Thriller 00:00 Full Movie - title credits 00:04 A comedic scene unfolds during a memory demonstration at an event, leading to chaos and a mysterious phone call. 11:12 A man named Hannay is pursued by two mysterious men after being involved in a national secret, seeking help from a woman named Annabella. 16:52 Intriguing events unfold as a murder mystery involving spies and a missing woman takes place in a quiet neighborhood. 22:50 Encounter on a train leads to a mysterious pursuit involving mistaken identity and a hidden agenda. 30:45 Mystery unfolds as strangers meet and secrets are revealed in a colorized Hitchcock movie. 39:03 A man named Hammond visits a family gathering to discuss a murder case involving a missing finger and a foreign agent. 44:27 A political intrigue unfolds as a man is wrongly accused of murder, leading to a chase and a public speaking event. 50:03 A mysterious journey unfolds as a man is taken to Inverary by train under false pretenses. 55:50 A thrilling encounter leads to an unexpected overnight stay at a remote location. 1:01:35 A man and a woman seek refuge in a stranger's home, leading to unexpected events and revelations. 1:07:26 Mysterious events unfold as individuals discuss past crimes and secret warnings about the '39 Steps'. 1:16:42 A mysterious man is pursued by authorities and a woman, leading to a thrilling chase in a music hall. 1:23:24 A man with exceptional memory is pursued for secret information, leading to chaos and a mysterious organization. @CultCinemaClassics
    https://wn.com/The_39_Steps_(1935)_Alfred_Hitchcock_|_Robert_Donat,_Madeleine_Carroll_|_Colorized_Movie_|_Subtitles
    The 39 Steps  | 1978 |   Robert Powell &  Karen Dotrice
    1:38:17

    The 39 Steps | 1978 | Robert Powell & Karen Dotrice

    • Order:
    • Duration: 1:38:17
    • Uploaded Date: 19 Aug 2021
    • views: 132252
    Channel not monetised by me so any Ads = YT's fault not mine - sorry folks ☹️
    https://wn.com/The_39_Steps_|_1978_|_Robert_Powell_Karen_Dotrice
    The 39 Steps (1935) Alfred Hitchcock, 720p
    1:26:46

    The 39 Steps (1935) Alfred Hitchcock, 720p

    • Order:
    • Duration: 1:26:46
    • Uploaded Date: 18 Sep 2016
    • views: 73346
    'The 39 Steps' is adapted from John Buchan's novel, and is recognized as the best Hitchcock picture from the Biritsh era. If you want to listen to the conversation between Hitchcock and Truffaut on the film: https://www.youtube.com/watch?v=8Z3JA3HeZ3U Enjoy the movie 'The 39 Steps' (http://imdb.com/title/tt0026029/ )
    https://wn.com/The_39_Steps_(1935)_Alfred_Hitchcock,_720P
    The 39 Steps (1935) - Alfred Hitchcock Full Movie
    1:26:46

    The 39 Steps (1935) - Alfred Hitchcock Full Movie

    • Order:
    • Duration: 1:26:46
    • Uploaded Date: 03 Apr 2015
    • views: 460563
    The 39 Steps is a heart-racing spy story by Alfred Hitchcock, following Richard Hannay (Oscar winner Robert Donat), who stumbles into a conspiracy that thrusts him into a hectic chase across the Scottish moors—a chase in which he is both the pursuer and the pursued—as well as into an expected romance with the cool Pamela (Madeline Carroll). Adapted from a novel by John Buchan, this classic wrong-man thriller from the Master of Suspense anticipates the director’s most famous works (especially North by Northwest), and remains one of his cleverest and most entertaining films.
    https://wn.com/The_39_Steps_(1935)_Alfred_Hitchcock_Full_Movie
    The 39 Steps explained | Hitchcock Masterpiece
    7:45

    The 39 Steps explained | Hitchcock Masterpiece

    • Order:
    • Duration: 7:45
    • Uploaded Date: 03 Mar 2022
    • views: 4125
    Released in 1935 The 39 Steps finally put 35-year-old Alfred Hitchcock on the international stage with huge acclaim and the movie did very well. But what is less known is how it was released during a very difficult period of Hollywood history, the Hays code essentially Censored movies from showing sex, violence, religion and politics in certain ways, strangling any adult conversation in movies at that time. however, Alfred Hitchcock wasn't going to let that stop him. 0:00 39 Steps intro 0:10 1935 silent era evolves into the talkies 0:21 39 steps film synopsis 0:39 review of 39 steps from Orson Wells 0:57 1935 cinema was more adult than you think 1:18 What is the Hays code and what did it do? 1:59 Hitchcock taking on the hays code 2:30 Hitchcock uses unknown characters discussing underwear 3:00 Alfred Hitchcock is a precise director 3:33 Why discuss a topic without the main characters involved? 4:18 Hitchcock Using a priest is genius 4:42 Hitchcock commenting on the church and the hays code 5:50 Why take time away from the main story in such a short film? 6:43 Hitchcock comments on a social issue by NOT pointing at it. 7:06 What Hitchcock thought the Hays code meant for Hollywood A Far Lane Media Production https://www.farlanemedia.com/
    https://wn.com/The_39_Steps_Explained_|_Hitchcock_Masterpiece
    The 39 Steps (1935) - Modern Trailer
    2:28

    The 39 Steps (1935) - Modern Trailer

    • Order:
    • Duration: 2:28
    • Uploaded Date: 15 Aug 2015
    • views: 77360
    Alfred Hitchcock's 1935 thriller gets an update in this modern trailer. Richard Hannay is a man on the run, fleeing to Scotland, accused of a murder he never committed. He needs to expose the spies and the 39 Steps to prove his innocence and clear his name – whether he's handcuffed to a beautiful girl or not.
    https://wn.com/The_39_Steps_(1935)_Modern_Trailer
    How Narcissistic Abuse Affects Your Health: The Hidden Link to Illness and Disease
    9:30

    How Narcissistic Abuse Affects Your Health: The Hidden Link to Illness and Disease

    • Order:
    • Duration: 9:30
    • Uploaded Date: 16 Jan 2025
    • views: 7
    🚨 Get Ready to Transform Your Life! 🚨 Join us Monday, January 27th - Friday, January 31st at 3 PM EST for the Break Free & Rise Boot Camp! https://www.facebook.com/groups/461567520344420 Did you know that narcissistic abuse doesn’t just affect your emotions—it can also damage your physical health? In this video, I’ll uncover the hidden link between emotional trauma and chronic illness, and share actionable steps to help you heal your mind and body. 🌟 Learn about: ✅ How chronic stress from abuse affects your body. ✅ The connection between emotional trauma and physical symptoms. ✅ Practical tips to reduce stress, boost healing, and reclaim your health. You don’t have to suffer in silence. Let’s start your journey to recovery today. 💖 Download my free healing guide [insert link]! Tags: narcissistic abuse and health, chronic illness from stress, emotional trauma recovery, healing after narcissistic abuse, stress and autoimmune diseases, self-care after toxic relationships, mind-body healing, narcissistic relationship recovery, overcoming emotional abuse. 00:00 Introduction to Narcissistic Abuse and Health 00:51 The Science Behind Stress and Illness 02:04 Emotional Trauma and Physical Manifestations 03:39 Steps to Heal Your Body After Abuse 05:02 Setting Boundaries for Healing 06:33 Personal Experiences and Community Support 07:10 Conclusion and Final Thoughts
    https://wn.com/How_Narcissistic_Abuse_Affects_Your_Health_The_Hidden_Link_To_Illness_And_Disease
    Alfred Hitchcock | The 39 Steps (1935) Robert Donat, Madeleine Carroll, Lucie Mannheim | Full Movie
    1:26:23

    Alfred Hitchcock | The 39 Steps (1935) Robert Donat, Madeleine Carroll, Lucie Mannheim | Full Movie

    • Order:
    • Duration: 1:26:23
    • Uploaded Date: 10 Apr 2023
    • views: 283917
    HANDCUFFED TO THE GIRL WHO DOUBLE CROSSED HIM! A man in London tries to help a counter-espionage agent, but when the agent is killed and the man stands accused, he must go on the run to save himself and stop a spy ring that is trying to steal top-secret information. Original title: The 39 Steps (1935) Colorized version: https://youtu.be/jfVtoPN3BVk Director: Alfred Hitchcock Writers: John Buchan (novel), Charles Bennett, Ian Hay Stars: Robert Donat, Madeleine Carroll, Lucie Mannheim Genres: British Noir, Crime, Mystery, Spy, Thriller 00:00:00 Full length movie - title credits 00:01:23 Mr Memory at the music hall 00:06:40 Come home with you 00:13:21 39 steps 00:36:46 On the run 00:41:57 Finger identification 00:54:19 Arrested 01:00:58 Checking-in as Mr & Mrs 01:10:30 Sneaking out This video is available with English, German, French, Italian & Spanish audio. And subtitles in more than 30 languages. Click on ⚙️ and choose your preferred language.
    https://wn.com/Alfred_Hitchcock_|_The_39_Steps_(1935)_Robert_Donat,_Madeleine_Carroll,_Lucie_Mannheim_|_Full_Movie
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    PLAYLIST TIME: 0:00 / 10:44:33

    The 39 Steps | 1959 | Kenneth More & Taina Elg

    Channel not monetised by me so any Ads = YT's fault not mine - sorry folks ☹️
    1:31:01
    The 39 Steps | 1959 | Kenneth More & Taina Elg
    Channel not monetised by me so any Ads = YT's fault not mine - sorry folks ☹️
    published: 19 Aug 2021
    Play in Full Screen
    1:29:14
    The 39 Steps | 2008 | Lydia Leonard & Rupert Penry - Jones
    Channel not monetised by me so any Ads = YT's fault not mine - sorry folks ☹️
    published: 19 Aug 2021
    Play in Full Screen
    1:26:23
    The 39 Steps (1935) Alfred Hitchcock | Robert Donat, Madeleine Carroll | Colorized Movie | Subtitles
    A heart-racing spy story...Richard Hannay stumbles upon a conspiracy that thrusts him into...
    published: 10 Apr 2023
    Play in Full Screen
    1:38:17
    The 39 Steps | 1978 | Robert Powell & Karen Dotrice
    Channel not monetised by me so any Ads = YT's fault not mine - sorry folks ☹️
    published: 19 Aug 2021
    Play in Full Screen
    1:26:46
    The 39 Steps (1935) Alfred Hitchcock, 720p
    'The 39 Steps' is adapted from John Buchan's novel, and is recognized as the best Hitchcoc...
    published: 18 Sep 2016
    Play in Full Screen
    1:26:46
    The 39 Steps (1935) - Alfred Hitchcock Full Movie
    The 39 Steps is a heart-racing spy story by Alfred Hitchcock, following Richard Hannay (Os...
    published: 03 Apr 2015
    Play in Full Screen
    7:45
    The 39 Steps explained | Hitchcock Masterpiece
    Released in 1935 The 39 Steps finally put 35-year-old Alfred Hitchcock on the internationa...
    published: 03 Mar 2022
    Play in Full Screen
    2:28
    The 39 Steps (1935) - Modern Trailer
    Alfred Hitchcock's 1935 thriller gets an update in this modern trailer. Richard Hannay is ...
    published: 15 Aug 2015
    Play in Full Screen
    9:30
    How Narcissistic Abuse Affects Your Health: The Hidden Link to Illness and Disease
    🚨 Get Ready to Transform Your Life! 🚨 Join us Monday, January 27th - Friday, January 31st ...
    published: 16 Jan 2025
    Play in Full Screen
    1:26:23
    Alfred Hitchcock | The 39 Steps (1935) Robert Donat, Madeleine Carroll, Lucie Mannheim | Full Movie
    HANDCUFFED TO THE GIRL WHO DOUBLE CROSSED HIM! A man in London tries to help a counter-esp...
    published: 10 Apr 2023
    Play in Full Screen

    The Thirty-Nine Steps

    The Thirty-Nine Steps is an adventure novel by the Scottish author John Buchan. It first appeared as a serial in Blackwood's Magazine in August and September 1915 before being published in book form in October that year by William Blackwood and Sons, Edinburgh. It is the first of five novels featuring Richard Hannay, an all-action hero with a stiff upper lip and a miraculous knack for getting himself out of sticky situations.

    The novel formed the basis for a number of film adaptations, notably: Alfred Hitchcock's 1935 version; a 1959 colour remake; a 1978 version which is perhaps most faithful to the novel; and a 2008 version for British television.

    Background

    John Buchan wrote The Thirty-Nine Steps while he was ill in bed with a duodenal ulcer, an illness which remained with him all his life. The novel was his first "shocker", as he called it — a story combining personal and political dramas. The novel marked a turning point in Buchan's literary career and introduced his famous adventuring hero, Richard Hannay. He described a "shocker" as an adventure where the events in the story are unlikely and the reader is only just able to believe that they really happened.

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