- 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.
Just Like the Fambly Cat is the fourth and final studio album by American indie rock band Grandaddy. It was released on May 9, 2006 by record label V2.
The album reached No. 171 on the Billboard 200 and No. 10 on the Top Independent Albums chart, as well as No. 50 on the UK Albums Chart. The album was well-received by critics.
The album's title is a reference to frontman Jason Lytle's desire to leave his home town of Modesto, California without any fuss, stating "[cats will] do that, almost out of respect and not wanting to put people out [...] because when the family cat dies, he doesn't make a big deal about it... He just disappears".
Lytle spent eighteen months recording the album at a studio in Modesto, California. Regarding the recording process, Lytle noted "During the one-and-a-half years that I recorded this album I lost my girl, my friends, my home, estranged my family, got sober, got wasted... I got too many things going on. The band breaking up only became a reality at the end of the recording. Many songs that people claim to be directly related to the band are actually directly related to other things I had going on."
What Happened: Inside the Bush White House and Washington's Culture of Deception is an auto-biographical bestseller by Scott McClellan, who served as White House Press Secretary from 2003 until 2006 under President George W. Bush. The book was scheduled to be released on June 2, 2008; however, excerpts were released to the press a week before publication. The book quickly became a media sensation for its candid, insider's critique of the Bush administration and ran as a leading story on most top news outlets days after the content became public. It was listed as a number-one bestseller by the New York Times and on Amazon.com when it first went on sale.
McClellan harshly criticizes the Bush administration over its Iraq war-making campaign, though he writes in detail about his personal admiration for President Bush. He accuses Bush of "self-deception" and of maintaining a "permanent campaign approach" to governing, rather than making the best choices. McClellan stops short of saying Bush purposely lied about his reasons for invading Iraq (in fact, stating flatly that he did not believe that Bush would intentionally lie), writing that the administration was not "employing out-and-out deception" to make the case for war in 2002, though he does assert the administration relied on an aggressive "political propaganda campaign" instead of the truth to sell the Iraq war. The book is also critical of the press corps for being too accepting of the administration's perspective on the Iraq War, and of Condoleezza Rice for being "too accommodating" and overly careful about protecting her own reputation.
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.
Robert Wallace Bruce Campbell (2 May 1890 – 16 October 1964) was an Australian rules footballer who played with Carlton, Fitzroy and Melbourne in the Victorian Football League (VFL).
Campbell, a Victorian by birth, was brought up in Western Australia and debuted for Subiaco in 1908.
He started his VFL career at Carlton, appearing in the opening three rounds of the 1911 season. His first two league game ended in draws and the third was decided by a margin of just two points. They would be the only games he played for Carlton and he finished the season at Fitzroy.
Used as a forward, Campbell made an immediate impression at his new club and despite only playing the second half of the season was their leading goal-kicker with 25 goals. He would only make six appearances in 1912 and decided to return to Subiaco.
Campbell continued playing for Subiaco until 1919, although he missed three seasons during the war. He was a member of Subiaco's 1913 and 1915 premiership winning teams.
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).
It's funny how some things stayed on ya mind.
It's funny how some moments hangin tight
I remember when we met how we became good friends but I
dont remember where
When you started to go astray and for what reason
That you finally went away why did you leave me
If it were anyone else I could cut all my ties but
you're
apart of my life and I'm startin to feel like
Everywhere I go I hear your name
And I play it off like things are the same
Pretending to know the reasons why
That its not oh
What happened baby
What happened honey
To the way things used to be
What happened baby
What happened honey
To the way things used to be
Everyday I try to block you out my head
I haven't seen ya and I just don't know what to say
We used to spend time we used to be fine
You had my heart now we don't even talk like we used to
Baby this is not what I'm used to
Tell me where did you go
I'd do anything to know that it was not all in vein
and there is a reason that you went away
Everywhere I go I hear your name
And I play it off like things are the same
Pretending to know the reasons why
That its not oh
What happened baby
What happened honey
To the way things used to be
What happened baby
What happened honey
To the way things used to be
I tried over and over again
To get some understanding
So I can know where we're standing
What happened baby
What happened honey
To the way things used to be
What happened baby
What happened honey
To the way things used to be
What happened baby
What happened honey
To the way things used to be
What happened baby
What happened honey