- published: 07 Nov 2012
- views: 1505808219
'+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; })); }); -->
AC/DC are an Australian hard rock band, formed in November 1973 by brothers Malcolm and Angus Young, who continued as members until Malcolm's illness and departure in 2014. Commonly referred to as a hard rock or blues rock band, they are also considered pioneers of heavy metal and are sometimes classified as such, though they have always dubbed their music as simply "rock and roll".
AC/DC underwent several line-up changes before releasing their first album, High Voltage, on 17 February 1975; Malcolm and Angus were the only original members left in the band. Membership subsequently stabilised until bassist Mark Evans was replaced by Cliff Williams in 1977 for the album Powerage. Within months of recording the album Highway to Hell, lead singer and co-songwriter Bon Scott died on 19 February 1980 after a night of heavy alcohol consumption. The group considered disbanding, but buoyed by support from Scott's parents, decided to continue and set about finding a new vocalist. Ex-Geordie singer Brian Johnson was auditioned and selected to replace Scott. Later that year, the band released the new album, Back in Black, which was made as a tribute to Bon Scott. The album launched them to new heights of success and became their all-time best-seller.
AC/DC is an Australian hard rock band.
AC/DC may also refer to:
AC/DC is a pinball machine manufactured by Stern Pinball based on the Australian band of the same name. Designed by Steve Ritchie, it was released on March 1, 2012.
The machine was confirmed in January 2012 with the release of a teaser video showcasing the game, along with the twelve songs involved in its soundtrack. Each song is the subject of a mode, from which players can work towards a multi-ball for additional points.
It features a swinging bell involved in the Hells Bells mode and a lower playfield in the Premium/LE editions.
Stiff Upper Lip is an album by Australian hard rock band AC/DC. It was the band's thirteenth internationally released studio album and the fourteenth to be released in Australia. The album was co-produced by George Young, older brother of Malcolm and Angus Young. The album was re-released in the US on 17 April 2007 as part of the AC/DC Remasters series. It was re-released in the UK in 2005.
The Young brothers began writing songs for what would become Stiff Upper Lip in the summer of 1997 in London and the Netherlands with Malcolm on guitar and Angus on drums, and by February 1998 the songs were completed. The band had planned on recording a new album with Canadian Bruce Fairbairn, who had produced the enormously successful The Razors Edge and AC/DC Live, but Fairbairn died in May 1999. The Youngs turned to their older brother George, who had produced 1988's Blow Up Your Video as well as the band's early albums with Harry Vanda, and Mike Fraser, who had co-produced 1995's Ballbreaker, to complete Stiff Upper Lip.
Official HD Music Video for “Thunderstruck” by AC/DC Listen to AC/DC: https://ACDC.lnk.to/listenYD Subscribe to AC/DC on YouTube: https://ACDC.lnk.to/subscribeYD Watch more AC/DC videos: https://ACDC.lnk.to/listen_YC/youtube Follow AC/DC: Facebook: https://ACDC.lnk.to/followFI Twitter: https://ACDC.lnk.to/followTI Instagram: https://ACDC.lnk.to/followII Website: https://ACDC.lnk.to/followWI Spotify: https://ACDC.lnk.to/followSI YouTube: https://ACDC.lnk.to/subscribeYD About the The Razor's Edge: AC/DC cracked the seal on the '90s with one of the best riffs of their career. That would be "Thunderstruck," the opening track on The Razors Edge. In addition to "Thunderstruck," the band brought out "Moneytalks," probably the closest they ever came to writing a pop song. Then there was ...
"Highway to Hell" Live At River Plate, December 2009 by AC/DC Listen to AC/DC: https://ACDC.lnk.to/listen_YD Subscribe to the official AC/DC YouTube channel: https://ACDC.lnk.to/subscribeYD Watch more AC/DC videos: https://ACDC.lnk.to/listen_YC/youtube Follow AC/DC: Facebook: https://ACDC.lnk.to/followFI Instagram: https://ACDC.lnk.to/followII Twitter: https://ACDC.lnk.to/followTI Website: https://ACDC.lnk.to/followWI Spotify: https://ACDC.lnk.to/followSI YouTube: https://ACDC.lnk.to/subscribeYD Lyrics: I'm on the highway to hell On the highway to hell Highway to hell I'm on the highway to hell #ACDC #HighwaytoHell #Live #Rock
Official 4K video for "You Shook Me All Night Long" by AC/DC Listen to AC/DC: https://ACDC.lnk.to/listen_YD Subscribe to the official AC/DC YouTube channel: https://ACDC.lnk.to/subscribeYD Watch more AC/DC videos: https://ACDC.lnk.to/listen_YC/youtube Follow AC/DC: Facebook: https://ACDC.lnk.to/followFI Instagram: https://ACDC.lnk.to/followII Twitter: https://ACDC.lnk.to/followTI Website: https://ACDC.lnk.to/followWI Spotify: https://ACDC.lnk.to/followSI YouTube: https://ACDC.lnk.to/subscribeYD Chorus: And you shook me all night long Yeah, you shook me all night long #ACDC #YouShookMeAllNightLong #Rock #HD #Remastered
AC/DC performing “Thunderstruck” live at River Plate Listen to AC/DC: https://ACDC.lnk.to/listenYD Subscribe to AC/DC on YouTube: https://ACDC.lnk.to/subscribeYD Follow AC/DC: Facebook: https://ACDC.lnk.to/followFI Twitter: https://ACDC.lnk.to/followTI Instagram: https://ACDC.lnk.to/followII Website: https://ACDC.lnk.to/followWI Spotify: https://ACDC.lnk.to/followSI YouTube: https://ACDC.lnk.to/subscribeYD About The Razor's Edge: The Razors Edge is an album by Australian hard rock band AC/DC. It was the band's eleventh internationally released studio album and the twelfth to be released in Australia. The Razors Edge features hits "Thunderstruck" and "Are You Ready, which reached #5 and #16 respectively on Billboard's Mainstream Rock Tracks Chart and "Moneytalks, which peaked at #...
Official 4K Video for "Back In Black" by AC/DC Listen to AC/DC: https://ACDC.lnk.to/listen_YD Subscribe to the official AC/DC YouTube channel: https://ACDC.lnk.to/subscribeYD Watch more AC/DC videos: https://ACDC.lnk.to/listen_YC/youtube Follow AC/DC: Facebook: https://ACDC.lnk.to/followFI Instagram: https://ACDC.lnk.to/followII Twitter: https://ACDC.lnk.to/followTI Website: https://ACDC.lnk.to/followWI Spotify: https://ACDC.lnk.to/followSI YouTube: https://ACDC.lnk.to/subscribeYD Chorus: 'Cause I'm back, yes I'm back Well, I'm back, yes I'm back Well, I'm back, back Well, I'm back in black Yes, I'm back in black #ACDC #BackInBlack #Rock #HD #Remastered
Strap yourself in for the most thundering AC/DC tracks! Listen to the playlist now: https://ACDC.lnk.to/AreYouReadyYA!wlr Let There Be Rock Buy/Listen - https://LegacyRecordings.lnk.to/acdc_ltbr!wlr About the album: Released at a time when disco and punk were polarizing, dominating forces, Let There Be Rock sounded like the work of rock 'n' roll primitives locked away in their own world. Riffs were fast and laced with fuzz on "Bad Boy Boogie" and the salacious "Whole Lotta Rosie." Follow AC/DC: Spotify - https://LegacyRecordings.lnk.to/acdc_ltbrSI!wlr Facebook - https://LegacyRecordings.lnk.to/acdc_ltbrFI!wlr Twitter - https://LegacyRecordings.lnk.to/acdc_ltbrTI!wlr Instagram - https://LegacyRecordings.lnk.to/acdc_ltbrII!wlr Website - https://LegacyRecordings.lnk.to/acdc_ltbrWI!wlr
Official HD Video for "Hells Bells" by AC/DC Listen to AC/DC: https://ACDC.lnk.to/listen_YD Subscribe to the official AC/DC YouTube channel: https://ACDC.lnk.to/subscribeYD Watch more AC/DC videos: https://ACDC.lnk.to/listen_YC/youtube Follow AC/DC: Facebook: https://ACDC.lnk.to/followFI Instagram: https://ACDC.lnk.to/followII Twitter: https://ACDC.lnk.to/followTI Website: https://ACDC.lnk.to/followWI Spotify: https://ACDC.lnk.to/followSI YouTube: https://ACDC.lnk.to/subscribeYD Lyrics: Hell's bells Yeah, hell's bells You got me ringing Hell's bells My temperature's high Hell's bells #ACDC #HellsBells #OfficialHDVideo #Rock
"Shoot to Thrill" by AC/DC (Iron Man 2 Version) Listen to AC/DC: https://ACDC.lnk.to/listenYD Subscribe to AC/DC on YouTube: https://ACDC.lnk.to/subscribeYD Follow AC/DC: Facebook: https://ACDC.lnk.to/followFI Twitter: https://ACDC.lnk.to/followTI Instagram: https://ACDC.lnk.to/followII Website: https://ACDC.lnk.to/followWI Spotify: https://ACDC.lnk.to/followSI YouTube: https://ACDC.lnk.to/subscribeYD Lyrics: All you women who want a man of the street Don't know which way you wanna turn Just keep coming And put your hand out to me Cause I'm the one who's gonna make you burn I'm gonna take you down Down down down So don't you fool around I'm gonna pull it pull it Pull the trigger Shoot to thrill play to kill Too many women too many pills, yeah Shoot to thrill play to kill I got my...
Official HD Video for "Thunderstruck" by AC/DC from Live at Donington, 8/17/91 Listen to AC/DC: https://ACDC.lnk.to/listen_YD Subscribe to the official AC/DC YouTube channel: https://ACDC.lnk.to/subscribeYD Watch more AC/DC videos: https://ACDC.lnk.to/listen_YC/youtube Follow AC/DC: Facebook: https://ACDC.lnk.to/followFI Instagram: https://ACDC.lnk.to/followII Twitter: https://ACDC.lnk.to/followTI Website: https://ACDC.lnk.to/followWI Spotify: https://ACDC.lnk.to/followSI YouTube: https://ACDC.lnk.to/subscribeYD Chorus: You've been - thunderstruck #ACDC #Thunderstruck #LiveatDonington#HDRemaastered
Official audio for "T.N.T." by AC/DC Listen to AC/DC: https://ACDC.lnk.to/listen_YD Subscribe to the official AC/DC YouTube channel: https://ACDC.lnk.to/subscribeYD Watch more AC/DC videos: https://ACDC.lnk.to/listen_YC/youtube Follow AC/DC: Facebook: https://ACDC.lnk.to/followFI Instagram: https://ACDC.lnk.to/followII Twitter: https://ACDC.lnk.to/followTI Website: https://ACDC.lnk.to/followWI Spotify: https://ACDC.lnk.to/followSI YouTube: https://ACDC.lnk.to/subscribeYD [Chorus] 'Cause I'm T.N.T., I'm dynamite T.N.T., and I'll win the fight T.N.T., I'm a power load T.N.T., watch me explode #ACDC #TNT #Rock
This is my AC/DC Back in Black LE in action. This has to be Sterns best game for years, can't get enough!!! I put it on 5 ball as I was getting nowhere on 3!
AC/DC Pinball review. http://www.ClassicGameRoom.com Classic Game Room reviews AC/DC pinball machine from Stern based on the iconic rock band, AC DC. CGR AC DC pinball video review features the AC/DC LE machine (special edition) with the special trim and 2nd playfield. AC/DC pinball is a 2012 release from Stern and one of their best games in a while. Fabulous gameplay changes depending on what AC/DC song you select and even compliments the music by having you shoot things like the Hell's Bells, TNT, the cannon or AC DC train! The visual presentation is a bit cluttered compared to some other machines like Tron Legacy or TX Sector but reflects the loud nature of the band. Music and sound quality is excellent and AC/DC pinball even yells at and insults you! Get Thunderstruck with AC/DC pinbal...
Instructional pinball tutorial filmed at PAPA Headquarters. http://www.papa.org
A pinball Wizard Mode video filmed by Bowen Kerins at PAPA HQ.
Probably one of the better games I have played on this machine. Very complicated and lots of rules to get your head around but a very solid release from Stern. The music thumps from an extra large speaker in the bottom of the cab and the lightshow is fantastic. Would recommend this pin to anyone!
Another one sold..this pinball is a MUST for the AC DC fan! It's very easy to understand and plays LOTS of hit songs too!!. This was the version without the LED's that were added into reruns of this game in later years. .PLUS, a look at an upcoming Black Hole pinball machine!
PinballNinja.com compares ACDC Premium pinball versus Pro model. PinballNinja.com is a subsciption online webzine for pinball repairs and reviews. Over 650 repair entries, many with video.
New album Rock Or Bust is available now. Get your copy: Amazon: http://smarturl.it/RockOrBust_amz iTunes: http://smarturl.it/RockOrBust_iTunes Google Play: http://smarturl.it/RockOrBust_GP
Right out of the box...this beauty looks so much more dynamic than the original version with incandescent lights. LOOK at this now! A very low run of this special PRO edition! Todd shows you the new stuff with some help from Tony!
Like the vids? Sponsor John's Arcade!: https://gaming.youtube.com/johnsarcade Enjoy the vids? Consider supporting me! Thank you, John! https://youtube.streamlabs.com/johnsarcade#/ Subscribe ►► https://www.youtube.com/subscription_center?add_user=blkdog7 Twitter ►► http://www.twitter.com/blkdog7 Join the John's Arcade Forum and discuss with like-minded enthusiasts!: http://www.johnsarcade.com/forum/ Here's a video review of my friend's AC/DC premium pinball machine. This game was released by Stern in 2012. It was designed by famed pinball designer, Steve Ritchie who also designed Black Knight, High Speed, F-14 Tomcat, and more! This is the "premium" version which has more features and Toys as the "pro" version. The one big addition is the bell in the center of the playfield which is a v...
AC/DC are an Australian hard rock band, formed in November 1973 by brothers Malcolm and Angus Young, who continued as members until Malcolm's illness and departure in 2014. Commonly referred to as a hard rock or blues rock band, they are also considered pioneers of heavy metal and are sometimes classified as such, though they have always dubbed their music as simply "rock and roll".
AC/DC underwent several line-up changes before releasing their first album, High Voltage, on 17 February 1975; Malcolm and Angus were the only original members left in the band. Membership subsequently stabilised until bassist Mark Evans was replaced by Cliff Williams in 1977 for the album Powerage. Within months of recording the album Highway to Hell, lead singer and co-songwriter Bon Scott died on 19 February 1980 after a night of heavy alcohol consumption. The group considered disbanding, but buoyed by support from Scott's parents, decided to continue and set about finding a new vocalist. Ex-Geordie singer Brian Johnson was auditioned and selected to replace Scott. Later that year, the band released the new album, Back in Black, which was made as a tribute to Bon Scott. The album launched them to new heights of success and became their all-time best-seller.
Party gonna happen at the union hall
Shakin to the rhythm till everybody fall
Pickin up my woman in my Chevorlet
Glory hallelujah gonna rock the night away
I'm gonna roll roll roll
I'm gonna roll roll roll
I'm gonna take this town, turn it around
I'm gonna roll roll roll
Now theres a blue suede boppin on her high heel shoe
Rollin round together like a wreckin crew
Be bop a lula baby what I say
Ya gotta get a dose of rock n rollin each and every day
We're gonna roll roll roll
We're gonna roll roll roll
We're gonna take this town, turn it around
We're gonna roll roll roll
I'm gonna blow up my video
Shut down by radio
Told boss man where to go
Turned off my brain control
Thats the way I wanna rock n roll
Thats the way I wanna rock n roll
Thats the way
Thats the way I wanna rock n roll
Thats the way I wanna rock n roll
Thats the way, thats the way
Thats the way I wanna rock n roll
Thats the way, thats the way
Thats the way I wanna rock n roll
Thats the way, thats the way
To rock n roll
Roll roll roll, I got to roll roll roll roll
I'm gonna take this town, turn it around
I'm gonna roll roll roll
I gotta roll, thats the way I want it
Roll roll roll gotta hear it now
I'm gonna take this town, turn it around
I'm gonna roll roll roll
I'm gonna blow up my video
Shut down by radio
Told boss man where to go
Turned off my brain control
Thats the way I wanna rock n roll
Thats the way I wanna rock n roll