- published: 26 Dec 2022
- views: 2310011
'+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; })); }); -->
Bruce Lorne Campbell (born June 22, 1958) is an American actor, voice artist, director, writer, producer and author. A cult film actor, Campbell is best known for portraying Ash Williams in Sam Raimi's hit Evil Dead franchise, from the 1978 short film Within the Woods to the currently ongoing TV series Ash vs. Evil Dead. He also has starred in many low-budget cult films such as Crimewave (1985), Maniac Cop (1988), Sundown: The Vampire in Retreat (1989), and Bubba Ho-Tep (2002). He has since made small appearances in successful films such as Darkman (1990), the Fargo film (1996) and TV series (2015), The X-Files (1999), Ellen (1996-1997), Charmed (2002), Raimi's Spider-Man trilogy (2002–2007), Cloudy with a Chance of Meatballs (2009) and Cars 2 (2011). Campbell is of Scottish descent.
Campbell started his directing career with Fanalysis (2002) and A Community Speaks (2004), and then with the horror comedy feature films Man with the Screaming Brain (2005) and My Name Is Bruce (2007), the latter being a spoof of his career. In television, Campbell also is known for his lead roles in both The Adventures of Brisco County, Jr. (1993-1994) and Jack of all Trades (2000), his starring role of Autolycus (the King of Thieves) in Hercules: The Legendary Journeys and Xena: Warrior Princess (1995-1999), and notably for his role as Sam Axe on the USA Network series Burn Notice (2007-2013).
Bruce Campbell (15 June 1912 – 9 January 1993) was an English ornithologist, writer and broadcaster, closely associated with the British Trust for Ornithology (BTO).
Campbell was born in Southsea, Hampshire on 15 June 1912. As a young boy, he was influenced by his father, an army officer, birds-nester and egg-collector, who later became the British Army's Inspector of Physical Training. After education at Winchester College, he studied at the University of Edinburgh, obtaining a BSc in forestry. He later gained a doctorate in comparative bird studies, so becoming one of the first field naturalists to also be a trained scientist. In 1938, he married Margaret Gibson-Hill, herself a writer, with whom he had two sons and one daughter. From 1936 to 1948, he was a teacher and university lecturer. After World War II, he brought the work of sound recordist Ludwig Koch to the attention of the BTO. In 1948, Campbell was appointed the first full-time secretary of the BTO, a post he held until 1959. He served on the panel of the Wildlife Collection with Julian Huxley, and was active in the British Ornithologists' Union, the British Ecological Society, and conservation bodies. He conducted a pioneering study of the pied flycatcher at the Nagshead woodland reserve, Gloucestershire. He made radio and television broadcasts relating to natural history for the BBC during the 1950s. In April 1959, despite his having had no previous experience as a producer, he was appointed senior producer at the BBC Natural History Unit in Bristol, a position he held until 1962. He died on 9 January 1993 in Witney, Oxfordshire.
(Keith) Bruce Campbell QC (25 October 1916 – 1990) was a New Zealand-born British lawyer, judge and politician. As a barrister, he specialised in divorce law, and during a brief Parliamentary career he also concentrated on family law issues. His term in office as a judge ended in scandal and enforced removal from office.
Campbell was born in Christchurch, New Zealand and attended Christchurch Technical College and Canterbury University. He moved to London in the late 1930s to undertake postgraduate training at the University of London. When his course was over in 1941 he was given an officer's commission in the Royal Army Service Corps; he served in North Africa and Italy.
On demobilisation Campbell was called to the bar at the Inner Temple. He practised in divorce law, usually on the North-Western circuit, and served on the General Council of the Bar from 1956 to 1960 and from 1965 to 1970. He was made a Queen's Counsel in 1964.
Heather Dawn Bright, born 1982, also known by her stage name Bright Lights, is an American recording artist and songwriter.
Born in Spartanburg, South Carolina, Bright moved to Boston, Massachusetts in 2001 to pursue a recording career at Berklee College of Music. In 2005, she was chosen to appear as a contestant on the UPN reality TV series Road To Stardom with Missy Elliott, where she competed for a recording contract. She was kicked off the show during the first episode. Following her appearance on the show, Bright left Berklee College of Music and moved to New York City where she began her career as a songwriter.
Bright's first release came in 2009 with Ashley Tisdale's "Hot Mess" off her second studio album Guilty Pleasure.Guilty Pleasure debuted at #12 on the Billboard 200 charts. She went on to write for a host of other artists including Britney Spears,Usher,Toni Braxton,The Wanted,Far East Movement,Karmin, and Allison Iraheta. Her most successful song to date is Justin Bieber's single "Somebody To Love" which peaked at #15 on the Billboard Hot 100 charts and reached Top 10 in Canada. "Somebody To Love" was the second single off Bieber's album, My World 2.0. In addition to her songwriting career, she is also a vocalist in the electro/house genre. Her first artist release came in 2010 with producer Justin Michael. The song, "Trouble," was released through Ultra Records and garnered the "hot shot debut" on the Billboard dance charts, eventually peaking at #22. She has since written and recorded several hits in the dance field including Zedd's "Stars Come Out," Porter Robinson's "Language", Bingo Players' "Don't Blame the Party (Mode)", Savoy's "We Are the Sun," and Flinch's "Light It Up."
Bright Lights is a 1925 American silent romantic comedy film directed by Robert Z. Leonard. The film is based on the story "A Little Bit of Broadway" by Richard Connell, and stars Charles Ray, who achieved stardom by playing ingenious country boys.
This film is deemed lost.
Tom Corbin (Charles Ray) falls for Patsy (Pauline Starke), a Broadway dancer who comes home for a visit, who tries to emulate her big city friends.
Bright Lights is a 1930 American Pre-Code musical comedy film photographed entirely in Technicolor and produced and released by First National Pictures, a subsidiary of Warner Brothers. Although filmed in December 1929, the film sat on the shelf until the autumn of 1930 when it was given a limited release. However, Warners quickly withdrew the film when the studio realized that the public had grown weary of musicals. Warners believed that this attitude would only last for a few months, but, when the public proved obstinate, they reluctantly re-released the film early in 1931 after making a few cuts to it. The film stars Dorothy Mackaill, Frank Fay, Noah Beery and Frank McHugh. It also features the screen debut of John Carradine, who appears in a small uncredited role.
Successful actress Louanne (Dorothy Mackaill) is about to marry a rich man instead of the man she really loves, Wally Dean (Frank Fay). As the film begins, Louanne is giving her last performance as she plans to retire once she is married. A group of reporters comes to interview Louanne and while she tells them a story which she thinks is appropriate for a soon-to-be wife of a wealthy socialite, the scene flashes back to her actual past.
Bruce Campbell (October 20, 1909 – June 17, 1995) was a professional baseball player from 1930 to 1942. Campbell began his career with the Chicago White Sox, but had very little playing time in the major leagues. In 1932, Campbell was traded from the White Sox to the St. Louis Browns, with Bump Hadley, for Red Kress. In St. Louis, Campbell was a starting outfielder, and performed well, driving in 106 runs in 1933. In the 1935 season, Campbell played with the Cleveland Indians, after being traded for multiple players and cash. In Cleveland, Campbell hit for considerably higher averages than he had in St. Louis, although injuries limited his playing time.
In January 1940, the Indians traded Campbell to the Detroit Tigers for Beau Bell. The trade worked out for Campbell, as the Tigers won the American League pennant, and Campbell played all seven games of the 1940 World Series. Campbell had nine hits, four walks, scored four runs, five runs batted in and a home run in the World Series, with a batting average of .360, on-base percentage of .448 and slugging percentage of .520.
Bruce Campbell, 73, lives in a Boeing 727 200-passenger jetliner that is 1,066 square feet and weighs around 70,000 pounds. He bought the plane for $100,000 in 1999 and spends $370/month on property taxes and electricity. Unlocked is a new home tour series focused on how much people across the U.S. spend on their housing, what they get for the money and what they had to sacrifice to make it happen. Read more about Bruce on AirplaneHome.com Produced by: Tasia Jensen Managing Producer: Beatriz Bajuelos Supervising Producer: Jessica Leibowitz Camera: Giorgio Litt Editor: Nic Golden Henry Animator: Elham Ataeiazar Production Support: Valentina Duarte Additional Footage: Bruce Campbell Subscribe to CNBC Make It.: http://cnb.cx/2kxl2rf About CNBC Make It.: CNBC Make It. is a new section of ...
Zombie-battling hero Ash (Bruce Campbell) takes on an army of undead after being sent back in time.
The stars of "Ash vs. Evil Dead" have a slight disagreement about who caused all the trouble with the Deadites.
At tonight’s SXSW premiere of EVIL DEAD RISE, an angry audience member loudly said “this movie sucks” and got called out by Bruce Campbell on stage.
Ask Bruce Campbell, and he’ll tell you he’s “sick of over-trained heroes. I'm really bored with that. Guys that are just ripped to shreds and, you know, full of skills. That's boring to me. Give me the mechanic that picks up a weapon, you know? Now I'm interested. That's my hero. That could be me.” Ash Williams of the Evil Dead franchise IS that hero. Part of the lasting appeal of the best character Bruce Campbell has ever played is that the audience can see themselves in him, like if they were pressed into fighting an army of Deadites, they could take up the mantle, the chainsaw, the boomstick, and mow down wave after wave of the undead masses. In this video, we take a look at Campbell's long career, from his debut in The Evil Dead through his brushes with fame in the nineties, through hi...
Bruce was trying to channel Jack Nicholson in “Easy Rider” but just ended up a stoned mess. Subscribe to watch more Team Coco videos https://www.youtube.com/channel/UCi7GJNg51C3jgmYTUwqoUXA?sub_confirmation=1 Watch more videos on Team Coco http://teamcoco.com/video FOLLOW TEAM COCO ON SOCIAL Team Coco on Facebook https://www.facebook.com/teamcoco Team Coco on Twitter https://twitter.com/teamcoco Team Coco on Instagram https://www.instagram.com/teamcoco/ ABOUT CONAN ON TBS Airing weeknights since 2010, CONAN on TBS is home to topical monologues, remote segments, celebrity interviews, musical performances and stand-up from the top comedians in the world. Watch highlights, outtakes and behind the scenes footage of Conan palling around with sidekick Andy Richter, tormenting Associate Produc...
Bruce's chainsaw hand comes in handy when Conan needs his lunch sliced. Though it might get a little messy. Subscribe to watch more Team Coco videos https://www.youtube.com/channel/UCi7GJNg51C3jgmYTUwqoUXA?sub_confirmation=1 Watch more videos on Team Coco http://teamcoco.com/video FOLLOW TEAM COCO ON SOCIAL Team Coco on Facebook https://www.facebook.com/teamcoco Team Coco on Twitter https://twitter.com/teamcoco Team Coco on Instagram https://www.instagram.com/teamcoco/ ABOUT CONAN ON TBS Airing weeknights since 2010, CONAN on TBS is home to topical monologues, remote segments, celebrity interviews, musical performances and stand-up from the top comedians in the world. Watch highlights, outtakes and behind the scenes footage of Conan palling around with sidekick Andy Richter, tormenting ...
I finally came back to this song and show together as the initial upload from last year was deleted by yours truly. This although is not a remaster as about 90% of it is all new material compared to the original. I hope some enjoy. #ashvsevildead #aha #takeonme #ashwilliams #starz #brucecampbell
Alright, you primitive screw-heads, listen up! Join http://www.WatchMojo.com as we count down our picks for the top 10 Bruce Campbell Performances. Click here to subscribe: http://www.youtube.com/subscription_center?add_user=watchmojo or visit our channel page here: http://www.youtube.com/watchmojo Also, check out our interactive Suggestion Tool at http://www.WatchMojo.com/suggest :) Check us out at http://www.Twitter.com/WatchMojo, http://instagram.com/watchmojo and http://www.Facebook.com/WatchMojo. Special thanks to our users jwiking62, Jordan Albers, johncordier, zendaddy621, Josefina Garcia, The MegaNerd and RennDawg for submitting the idea on our Suggestion Tool at http://www.WatchMojo.com/suggest Check out the voting page here, http://watchmojo.com/suggest/Top+10+Bruce+Campbel...
Bruce Lorne Campbell (born June 22, 1958) is an American actor, voice artist, director, writer, producer and author. A cult film actor, Campbell is best known for portraying Ash Williams in Sam Raimi's hit Evil Dead franchise, from the 1978 short film Within the Woods to the currently ongoing TV series Ash vs. Evil Dead. He also has starred in many low-budget cult films such as Crimewave (1985), Maniac Cop (1988), Sundown: The Vampire in Retreat (1989), and Bubba Ho-Tep (2002). He has since made small appearances in successful films such as Darkman (1990), the Fargo film (1996) and TV series (2015), The X-Files (1999), Ellen (1996-1997), Charmed (2002), Raimi's Spider-Man trilogy (2002–2007), Cloudy with a Chance of Meatballs (2009) and Cars 2 (2011). Campbell is of Scottish descent.
Campbell started his directing career with Fanalysis (2002) and A Community Speaks (2004), and then with the horror comedy feature films Man with the Screaming Brain (2005) and My Name Is Bruce (2007), the latter being a spoof of his career. In television, Campbell also is known for his lead roles in both The Adventures of Brisco County, Jr. (1993-1994) and Jack of all Trades (2000), his starring role of Autolycus (the King of Thieves) in Hercules: The Legendary Journeys and Xena: Warrior Princess (1995-1999), and notably for his role as Sam Axe on the USA Network series Burn Notice (2007-2013).
The bright lights of the big city
They taught us how to think, they taught us how to steal
Come on and steal me, steal me
You took your razor tongue to my lovin' eyes
You said "A time to live, now's the time to die"
Come on now die with me, die with me
Can't you see there must be more for me
You know you're livin' a lie
And so am I
You know I'd have a breakdown
But I don't have the time
I get up straight, I take my pill
I swallow it whole, I don't feel ill
It ain't a crime to live, it ain't a crime to die
It ain't a crime to walk in this big, big sky
Come on now walk with me, walk with me
Can't you see there must be more for me
You know you're livin' a lie
And so am I
I know you'd have a breakdown
But you don't have the time
And you're all messed up
Waiting for a sign
You want me to paint it
I haven't got the time
Take a ride with me
It ain't no crime to walk, it ain't no crime to fly
It ain't no crime to die, it ain't no crime to take a walk in
the big sky
The bright lights of the big city
They taught us how to think, they taught us how to see can you
(Twenty, twenty-first century breakdown)
Can't you see there must be more for me
You know you're livin' a lie
And so am I
I know you'd have a breakdown
But you don't have the time
And you're all messed up
Waiting for a sign
You want me to paint it
I haven't got the time
And it's making me crazy
I don't know where I fit
I guess in the end
We're all sick
Come on now ride with me, come on now ride with me
Come on now ride with me, come on now ride with me
Come on now ride with me, just take a ride with me
Twenty twenty twenty twenty twenty twenty-first
Twenty twenty twenty twenty-first
Twenty twenty twenty twenty twenty
(The bright lights of the big city)
Twenty twenty twenty twenty twenty sound
(The bright lights of the big city)
Twenty twenty twenty twenty twenty vision
(The bright lights of the big city)
Come on now ride with me