The Man They Could Not Hang

Cast (37)

  • Boris Karloff

    Boris Karloff

    Dr. Henryk Savaard

  • Lorna Gray

    Lorna Gray

    Janet Savaard

  • Robert Wilcox

    Robert Wilcox

    'Scoop' Foley

  • Roger Pryor

    Roger Pryor

    District Attorney Drake

  • Don Beddoe

    Don Beddoe

    Lieutenant Shane

  • Ann Doran

    Ann Doran

    Betty Crawford

  • Joe De Stefani

    Joe De Stefani

    Dr. Stoddard

  • Charles Trowbridge

    Charles Trowbridge

    Judge Bowman

  • Byron Foulger

    Byron Foulger

    Lang

  • Dick Curtis

    Dick Curtis

    Jury Foreman Clifford Kearney

  • James Craig

    James Craig

    Juror Watkins

  • John Tyrrell

    John Tyrrell

    Juror Sutton

  • George Anderson

    George Anderson

    Prison Warden (uncredited)

  • Stanley Blystone

    Stanley Blystone

    Prison Guard (uncredited)

  • Sam Ash

    Sam Ash

    Druggist (uncredited)

  • Harlan Briggs

    Harlan Briggs

    Defense Attorney Parker (uncredited)

  • Stanley Brown

    Stanley Brown

    Bob Roberts (uncredited)

  • Flo Campbell

    Flo Campbell

    Housewife (uncredited)

  • John Dilson

    John Dilson

    King - City Editor (uncredited)

  • Carl Faulkner

    Carl Faulkner

    Bailiff (uncredited)

  • Chuck Hamilton

    Chuck Hamilton

    Juror (uncredited)

  • Frank Jaquet

    Frank Jaquet

    Cigar-Smoking Fat Juror (uncredited)

  • Kenner G. Kemp

    Kenner G. Kemp

    Reporter (uncredited)

  • William Lally

    William Lally

    Bailiff (uncredited)

  • Perc Launders

    Perc Launders

    Bailiff (uncredited)

  • Larry Lund

    Larry Lund

    Court Clerk (uncredited)

  • Ian Maclaren

    Ian Maclaren

    Priest (uncredited)

  • Charles McAvoy

    Charles McAvoy

    Prison Official (uncredited)

  • Charles Miller

    Charles Miller

    Dr. Avery - Juror (uncredited)

  • Bert Moorhouse

    Bert Moorhouse

    Reporter (uncredited)

  • Franklin Parker

    Franklin Parker

    Second Reporter (uncredited)

  • Tom Quinn

    Tom Quinn

    Reporter (uncredited)

  • Bob Reeves

    Bob Reeves

    Juror (uncredited)

  • Walter Sande

    Walter Sande

    Reporter at Typewriter (uncredited)

  • Robert Sterling

    Robert Sterling

    First Reporter (uncredited)

  • Edward Thomas

    Edward Thomas

    Butler (uncredited)

  • Cyril Thornton

    Cyril Thornton

    Senior Butler (uncredited)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
The Man They Could Not Hang

Cast (37)

  • Boris Karloff

    Boris Karloff

    Dr. Henryk Savaard

  • Lorna Gray

    Lorna Gray

    Janet Savaard

  • Robert Wilcox

    Robert Wilcox

    'Scoop' Foley

  • Roger Pryor

    Roger Pryor

    District Attorney Drake

  • Don Beddoe

    Don Beddoe

    Lieutenant Shane

  • Ann Doran

    Ann Doran

    Betty Crawford

  • Joe De Stefani

    Joe De Stefani

    Dr. Stoddard

  • Charles Trowbridge

    Charles Trowbridge

    Judge Bowman

  • Byron Foulger

    Byron Foulger

    Lang

  • Dick Curtis

    Dick Curtis

    Jury Foreman Clifford Kearney

  • James Craig

    James Craig

    Juror Watkins

  • John Tyrrell

    John Tyrrell

    Juror Sutton

  • George Anderson

    George Anderson

    Prison Warden (uncredited)

  • Stanley Blystone

    Stanley Blystone

    Prison Guard (uncredited)

  • Sam Ash

    Sam Ash

    Druggist (uncredited)

  • Harlan Briggs

    Harlan Briggs

    Defense Attorney Parker (uncredited)

  • Stanley Brown

    Stanley Brown

    Bob Roberts (uncredited)

  • Flo Campbell

    Flo Campbell

    Housewife (uncredited)

  • John Dilson

    John Dilson

    King - City Editor (uncredited)

  • Carl Faulkner

    Carl Faulkner

    Bailiff (uncredited)

  • Chuck Hamilton

    Chuck Hamilton

    Juror (uncredited)

  • Frank Jaquet

    Frank Jaquet

    Cigar-Smoking Fat Juror (uncredited)

  • Kenner G. Kemp

    Kenner G. Kemp

    Reporter (uncredited)

  • William Lally

    William Lally

    Bailiff (uncredited)

  • Perc Launders

    Perc Launders

    Bailiff (uncredited)

  • Larry Lund

    Larry Lund

    Court Clerk (uncredited)

  • Ian Maclaren

    Ian Maclaren

    Priest (uncredited)

  • Charles McAvoy

    Charles McAvoy

    Prison Official (uncredited)

  • Charles Miller

    Charles Miller

    Dr. Avery - Juror (uncredited)

  • Bert Moorhouse

    Bert Moorhouse

    Reporter (uncredited)

  • Franklin Parker

    Franklin Parker

    Second Reporter (uncredited)

  • Tom Quinn

    Tom Quinn

    Reporter (uncredited)

  • Bob Reeves

    Bob Reeves

    Juror (uncredited)

  • Walter Sande

    Walter Sande

    Reporter at Typewriter (uncredited)

  • Robert Sterling

    Robert Sterling

    First Reporter (uncredited)

  • Edward Thomas

    Edward Thomas

    Butler (uncredited)

  • Cyril Thornton

    Cyril Thornton

    Senior Butler (uncredited)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
The Man They Could Not Hang

Cast (37)

  • Boris Karloff

    Boris Karloff

    Dr. Henryk Savaard

  • Lorna Gray

    Lorna Gray

    Janet Savaard

  • Robert Wilcox

    Robert Wilcox

    'Scoop' Foley

  • Roger Pryor

    Roger Pryor

    District Attorney Drake

  • Don Beddoe

    Don Beddoe

    Lieutenant Shane

  • Ann Doran

    Ann Doran

    Betty Crawford

  • Joe De Stefani

    Joe De Stefani

    Dr. Stoddard

  • Charles Trowbridge

    Charles Trowbridge

    Judge Bowman

  • Byron Foulger

    Byron Foulger

    Lang

  • Dick Curtis

    Dick Curtis

    Jury Foreman Clifford Kearney

  • James Craig

    James Craig

    Juror Watkins

  • John Tyrrell

    John Tyrrell

    Juror Sutton

  • George Anderson

    George Anderson

    Prison Warden (uncredited)

  • Stanley Blystone

    Stanley Blystone

    Prison Guard (uncredited)

  • Sam Ash

    Sam Ash

    Druggist (uncredited)

  • Harlan Briggs

    Harlan Briggs

    Defense Attorney Parker (uncredited)

  • Stanley Brown

    Stanley Brown

    Bob Roberts (uncredited)

  • Flo Campbell

    Flo Campbell

    Housewife (uncredited)

  • John Dilson

    John Dilson

    King - City Editor (uncredited)

  • Carl Faulkner

    Carl Faulkner

    Bailiff (uncredited)

  • Chuck Hamilton

    Chuck Hamilton

    Juror (uncredited)

  • Frank Jaquet

    Frank Jaquet

    Cigar-Smoking Fat Juror (uncredited)

  • Kenner G. Kemp

    Kenner G. Kemp

    Reporter (uncredited)

  • William Lally

    William Lally

    Bailiff (uncredited)

  • Perc Launders

    Perc Launders

    Bailiff (uncredited)

  • Larry Lund

    Larry Lund

    Court Clerk (uncredited)

  • Ian Maclaren

    Ian Maclaren

    Priest (uncredited)

  • Charles McAvoy

    Charles McAvoy

    Prison Official (uncredited)

  • Charles Miller

    Charles Miller

    Dr. Avery - Juror (uncredited)

  • Bert Moorhouse

    Bert Moorhouse

    Reporter (uncredited)

  • Franklin Parker

    Franklin Parker

    Second Reporter (uncredited)

  • Tom Quinn

    Tom Quinn

    Reporter (uncredited)

  • Bob Reeves

    Bob Reeves

    Juror (uncredited)

  • Walter Sande

    Walter Sande

    Reporter at Typewriter (uncredited)

  • Robert Sterling

    Robert Sterling

    First Reporter (uncredited)

  • Edward Thomas

    Edward Thomas

    Butler (uncredited)

  • Cyril Thornton

    Cyril Thornton

    Senior Butler (uncredited)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
The Man They Could Not Hang

Cast (37)

  • Boris Karloff

    Boris Karloff

    Dr. Henryk Savaard

  • Lorna Gray

    Lorna Gray

    Janet Savaard

  • Robert Wilcox

    Robert Wilcox

    'Scoop' Foley

  • Roger Pryor

    Roger Pryor

    District Attorney Drake

  • Don Beddoe

    Don Beddoe

    Lieutenant Shane

  • Ann Doran

    Ann Doran

    Betty Crawford

  • Joe De Stefani

    Joe De Stefani

    Dr. Stoddard

  • Charles Trowbridge

    Charles Trowbridge

    Judge Bowman

  • Byron Foulger

    Byron Foulger

    Lang

  • Dick Curtis

    Dick Curtis

    Jury Foreman Clifford Kearney

  • James Craig

    James Craig

    Juror Watkins

  • John Tyrrell

    John Tyrrell

    Juror Sutton

  • George Anderson

    George Anderson

    Prison Warden (uncredited)

  • Stanley Blystone

    Stanley Blystone

    Prison Guard (uncredited)

  • Sam Ash

    Sam Ash

    Druggist (uncredited)

  • Harlan Briggs

    Harlan Briggs

    Defense Attorney Parker (uncredited)

  • Stanley Brown

    Stanley Brown

    Bob Roberts (uncredited)

  • Flo Campbell

    Flo Campbell

    Housewife (uncredited)

  • John Dilson

    John Dilson

    King - City Editor (uncredited)

  • Carl Faulkner

    Carl Faulkner

    Bailiff (uncredited)

  • Chuck Hamilton

    Chuck Hamilton

    Juror (uncredited)

  • Frank Jaquet

    Frank Jaquet

    Cigar-Smoking Fat Juror (uncredited)

  • Kenner G. Kemp

    Kenner G. Kemp

    Reporter (uncredited)

  • William Lally

    William Lally

    Bailiff (uncredited)

  • Perc Launders

    Perc Launders

    Bailiff (uncredited)

  • Larry Lund

    Larry Lund

    Court Clerk (uncredited)

  • Ian Maclaren

    Ian Maclaren

    Priest (uncredited)

  • Charles McAvoy

    Charles McAvoy

    Prison Official (uncredited)

  • Charles Miller

    Charles Miller

    Dr. Avery - Juror (uncredited)

  • Bert Moorhouse

    Bert Moorhouse

    Reporter (uncredited)

  • Franklin Parker

    Franklin Parker

    Second Reporter (uncredited)

  • Tom Quinn

    Tom Quinn

    Reporter (uncredited)

  • Bob Reeves

    Bob Reeves

    Juror (uncredited)

  • Walter Sande

    Walter Sande

    Reporter at Typewriter (uncredited)

  • Robert Sterling

    Robert Sterling

    First Reporter (uncredited)

  • Edward Thomas

    Edward Thomas

    Butler (uncredited)

  • Cyril Thornton

    Cyril Thornton

    Senior Butler (uncredited)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
The Man They Could Not Hang

Cast (37)

  • Boris Karloff

    Boris Karloff

    Dr. Henryk Savaard

  • Lorna Gray

    Lorna Gray

    Janet Savaard

  • Robert Wilcox

    Robert Wilcox

    'Scoop' Foley

  • Roger Pryor

    Roger Pryor

    District Attorney Drake

  • Don Beddoe

    Don Beddoe

    Lieutenant Shane

  • Ann Doran

    Ann Doran

    Betty Crawford

  • Joe De Stefani

    Joe De Stefani

    Dr. Stoddard

  • Charles Trowbridge

    Charles Trowbridge

    Judge Bowman

  • Byron Foulger

    Byron Foulger

    Lang

  • Dick Curtis

    Dick Curtis

    Jury Foreman Clifford Kearney

  • James Craig

    James Craig

    Juror Watkins

  • John Tyrrell

    John Tyrrell

    Juror Sutton

  • George Anderson

    George Anderson

    Prison Warden (uncredited)

  • Stanley Blystone

    Stanley Blystone

    Prison Guard (uncredited)

  • Sam Ash

    Sam Ash

    Druggist (uncredited)

  • Harlan Briggs

    Harlan Briggs

    Defense Attorney Parker (uncredited)

  • Stanley Brown

    Stanley Brown

    Bob Roberts (uncredited)

  • Flo Campbell

    Flo Campbell

    Housewife (uncredited)

  • John Dilson

    John Dilson

    King - City Editor (uncredited)

  • Carl Faulkner

    Carl Faulkner

    Bailiff (uncredited)

  • Chuck Hamilton

    Chuck Hamilton

    Juror (uncredited)

  • Frank Jaquet

    Frank Jaquet

    Cigar-Smoking Fat Juror (uncredited)

  • Kenner G. Kemp

    Kenner G. Kemp

    Reporter (uncredited)

  • William Lally

    William Lally

    Bailiff (uncredited)

  • Perc Launders

    Perc Launders

    Bailiff (uncredited)

  • Larry Lund

    Larry Lund

    Court Clerk (uncredited)

  • Ian Maclaren

    Ian Maclaren

    Priest (uncredited)

  • Charles McAvoy

    Charles McAvoy

    Prison Official (uncredited)

  • Charles Miller

    Charles Miller

    Dr. Avery - Juror (uncredited)

  • Bert Moorhouse

    Bert Moorhouse

    Reporter (uncredited)

  • Franklin Parker

    Franklin Parker

    Second Reporter (uncredited)

  • Tom Quinn

    Tom Quinn

    Reporter (uncredited)

  • Bob Reeves

    Bob Reeves

    Juror (uncredited)

  • Walter Sande

    Walter Sande

    Reporter at Typewriter (uncredited)

  • Robert Sterling

    Robert Sterling

    First Reporter (uncredited)

  • Edward Thomas

    Edward Thomas

    Butler (uncredited)

  • Cyril Thornton

    Cyril Thornton

    Senior Butler (uncredited)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
The Man They Could Not Hang

Cast (37)

  • Boris Karloff

    Boris Karloff

    Dr. Henryk Savaard

  • Lorna Gray

    Lorna Gray

    Janet Savaard

  • Robert Wilcox

    Robert Wilcox

    'Scoop' Foley

  • Roger Pryor

    Roger Pryor

    District Attorney Drake

  • Don Beddoe

    Don Beddoe

    Lieutenant Shane

  • Ann Doran

    Ann Doran

    Betty Crawford

  • Joe De Stefani

    Joe De Stefani

    Dr. Stoddard

  • Charles Trowbridge

    Charles Trowbridge

    Judge Bowman

  • Byron Foulger

    Byron Foulger

    Lang

  • Dick Curtis

    Dick Curtis

    Jury Foreman Clifford Kearney

  • James Craig

    James Craig

    Juror Watkins

  • John Tyrrell

    John Tyrrell

    Juror Sutton

  • George Anderson

    George Anderson

    Prison Warden (uncredited)

  • Stanley Blystone

    Stanley Blystone

    Prison Guard (uncredited)

  • Sam Ash

    Sam Ash

    Druggist (uncredited)

  • Harlan Briggs

    Harlan Briggs

    Defense Attorney Parker (uncredited)

  • Stanley Brown

    Stanley Brown

    Bob Roberts (uncredited)

  • Flo Campbell

    Flo Campbell

    Housewife (uncredited)

  • John Dilson

    John Dilson

    King - City Editor (uncredited)

  • Carl Faulkner

    Carl Faulkner

    Bailiff (uncredited)

  • Chuck Hamilton

    Chuck Hamilton

    Juror (uncredited)

  • Frank Jaquet

    Frank Jaquet

    Cigar-Smoking Fat Juror (uncredited)

  • Kenner G. Kemp

    Kenner G. Kemp

    Reporter (uncredited)

  • William Lally

    William Lally

    Bailiff (uncredited)

  • Perc Launders

    Perc Launders

    Bailiff (uncredited)

  • Larry Lund

    Larry Lund

    Court Clerk (uncredited)

  • Ian Maclaren

    Ian Maclaren

    Priest (uncredited)

  • Charles McAvoy

    Charles McAvoy

    Prison Official (uncredited)

  • Charles Miller

    Charles Miller

    Dr. Avery - Juror (uncredited)

  • Bert Moorhouse

    Bert Moorhouse

    Reporter (uncredited)

  • Franklin Parker

    Franklin Parker

    Second Reporter (uncredited)

  • Tom Quinn

    Tom Quinn

    Reporter (uncredited)

  • Bob Reeves

    Bob Reeves

    Juror (uncredited)

  • Walter Sande

    Walter Sande

    Reporter at Typewriter (uncredited)

  • Robert Sterling

    Robert Sterling

    First Reporter (uncredited)

  • Edward Thomas

    Edward Thomas

    Butler (uncredited)

  • Cyril Thornton

    Cyril Thornton

    Senior Butler (uncredited)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
The Man They Could Not Hang

Cast (37)

  • Boris Karloff

    Boris Karloff

    Dr. Henryk Savaard

  • Lorna Gray

    Lorna Gray

    Janet Savaard

  • Robert Wilcox

    Robert Wilcox

    'Scoop' Foley

  • Roger Pryor

    Roger Pryor

    District Attorney Drake

  • Don Beddoe

    Don Beddoe

    Lieutenant Shane

  • Ann Doran

    Ann Doran

    Betty Crawford

  • Joe De Stefani

    Joe De Stefani

    Dr. Stoddard

  • Charles Trowbridge

    Charles Trowbridge

    Judge Bowman

  • Byron Foulger

    Byron Foulger

    Lang

  • Dick Curtis

    Dick Curtis

    Jury Foreman Clifford Kearney

  • James Craig

    James Craig

    Juror Watkins

  • John Tyrrell

    John Tyrrell

    Juror Sutton

  • George Anderson

    George Anderson

    Prison Warden (uncredited)

  • Stanley Blystone

    Stanley Blystone

    Prison Guard (uncredited)

  • Sam Ash

    Sam Ash

    Druggist (uncredited)

  • Harlan Briggs

    Harlan Briggs

    Defense Attorney Parker (uncredited)

  • Stanley Brown

    Stanley Brown

    Bob Roberts (uncredited)

  • Flo Campbell

    Flo Campbell

    Housewife (uncredited)

  • John Dilson

    John Dilson

    King - City Editor (uncredited)

  • Carl Faulkner

    Carl Faulkner

    Bailiff (uncredited)

  • Chuck Hamilton

    Chuck Hamilton

    Juror (uncredited)

  • Frank Jaquet

    Frank Jaquet

    Cigar-Smoking Fat Juror (uncredited)

  • Kenner G. Kemp

    Kenner G. Kemp

    Reporter (uncredited)

  • William Lally

    William Lally

    Bailiff (uncredited)

  • Perc Launders

    Perc Launders

    Bailiff (uncredited)

  • Larry Lund

    Larry Lund

    Court Clerk (uncredited)

  • Ian Maclaren

    Ian Maclaren

    Priest (uncredited)

  • Charles McAvoy

    Charles McAvoy

    Prison Official (uncredited)

  • Charles Miller

    Charles Miller

    Dr. Avery - Juror (uncredited)

  • Bert Moorhouse

    Bert Moorhouse

    Reporter (uncredited)

  • Franklin Parker

    Franklin Parker

    Second Reporter (uncredited)

  • Tom Quinn

    Tom Quinn

    Reporter (uncredited)

  • Bob Reeves

    Bob Reeves

    Juror (uncredited)

  • Walter Sande

    Walter Sande

    Reporter at Typewriter (uncredited)

  • Robert Sterling

    Robert Sterling

    First Reporter (uncredited)

  • Edward Thomas

    Edward Thomas

    Butler (uncredited)

  • Cyril Thornton

    Cyril Thornton

    Senior Butler (uncredited)