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

Alpha Flight

Alpha Flight is a fictional superhero team published by Marvel Comics, noteworthy for being one of the few Canadian superhero teams. Created by John Byrne, the team first appeared in X-Men #120 (April 1979).

Within the Marvel Universe, Alpha Flight is described as "Canada's answer to the Avengers". Most team members have distinctly Canadian attributes, such as Inuit or First Nations heritage. Throughout most of its history, the team has worked for Department H, a fictional branch of Canada’s Department of National Defence that deals with super-powered villains.

The team was originally merely a part of the backstory of the X-Men’s Wolverine but, in 1983, Marvel launched an eponymous series featuring the group, which continued until 1994, lasting 130 issues as well as annuals and miniseries. Three short-lived revivals have been attempted since, most recently an eight-issue limited series in 2011-12, after the resurrection of the team in the one shot comic Chaos War: Alpha Flight during the Chaos War event.

Podcasts:

  • 11 (Every) Member OF Canadian Avengers, The Alpha Flight - Backstories And Powers Explored

    11 (Every) Member OF Canadian Avengers, The Alpha Flight - Backstories And Powers Explored #marvelcomics #marvel #mcu #comics #comicbooks #marvelstudios #mcu

    published: 31 Jan 2024
  • Wolverine vs Alpha Flight

    Wolverine was once part of the Alpha Flight a Canadian super hero team, he quit the team to go on to be part of the x-men they have never forgiven him to leaving them, This clip is they are once again reunited in the woods of canada, they want to trick him to come back. http://en.wikipedia.org/wiki/Alpha_Flight Please comment on this video and let me know what you think of the Alpha Team. http://forums.wolverinefiles.com/site/

    published: 19 Jun 2013
  • History and Origin of Marvel's ALPHA FLIGHT!

    This is the origin and the history of Marvel Comics' premiere superhero team named Alpha Flight! From their origin days with Wolverine to 2020, follow their story as we learn about Guardian, Vindicator, Northstar, Aurora, Marrina, Snowbird, Shaman and Sasquatch! #AlphaFlight #XMen #Wolverine

    published: 26 Jun 2020
  • Top 10 Alpha Flight Members Much Stronger Than You Think

    Top 10 Alpha Flight Members Much Stronger Than You Think 💚Subscribe To Top 10 Nerd💚: http://bit.ly/2eI6p18 💜Subscribe To Most Amazing Top 10 Anime💜: https://bit.ly/3wba66W Check Out Our Most Recent Uploads: https://www.youtube.com/watch?v=C9GLIAxxqlY&list=UUF5tN4DO3Eh-BBOddG09gHw Alpha Flight Marvel Legends is not a phrase I was expecting to use today but here we are. Going over an Alpha Flight Comics Explained list would be far too vast so instead, we'll do a comic breakdown on each of their most valuable members. Today on Top Ten Nerd, we bring you our list of the Top 10 Alpha Flight Members Much Stronger Than You Think. #top10 #alphaflight #marvel #mcu #marvelcomics #dccomics #dcu #dceu #superheroes #villains #comics #comicbooks #nerd #top10nerd 💛 Subscribe To Top 10 Nerd Elite: http...

    published: 07 Oct 2022
  • Alpha Flight by John Byrne Omnibus NEW PRINTING Overview & Comparison

    Here is your advance look at the latest printing of Alpha Flight by John Byrne Omnibus from Marvel Comics. I talk about the stories, build of the omnibus and the differences between the original printing and this printing. The book is due out on the Book Market and the Direct Market October 25th. Patreon tiers - We offer multiple tiers starting at $1 to give you access to notes, voting, Discord, AMA, recognition, and private consultations! See which tier best fits your needs. https://www.patreon.com/nearmintcondition NMC merch can be purchased here: https://shop.spreadshirt.com/near-mint-condition Check out our sponsors: https://www.cheapgraphicnovels.com In Europe: https://waltscomicshop.com You can send fan mail or giveaway donations to: Near Mint Condition PO Box 5204 Frankfort,...

    published: 17 Oct 2023
  • ALPHA FLIGHT Teaser (2023) With John Cena & Kevin Durand

    ALPHA FLIGHT Teaser (2023) With John Cena & Kevin Durand ✅ Subscribe to us → https://www.youtube.com/c/FilmRoyalty?sub_confirmation=1 🔔 Turn on notifications to never miss a new upload! ✅ Follow us on Instagram → https://www.instagram.com/filmroyalty About: Alpha Flight is a fictional team of Canadian superheroes appearing in American comic books published by Marvel Comics. The characters premiered in The Uncanny X-Men #120 (April [l1979), and were created to serve as part of the X-Men member Wolverine's backstory. Marvel published an Alpha Flight comic book series from 1983 to 1994. The team serves as Canada's premier superhero team akin to America's Avengers. "Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as critic...

    published: 25 Oct 2022
  • What's Next for Canada's ONLY Super Team in Alpha Flight #5

    In today's video let's talk about what's next for Canada's only super team in Alpha Flight #5, and why prison bars might just be it. 🔴 Don’t forget to Hulk Smash that LIKE button 👍🏿 and SUBSCRIBE ⚡ 🔴 Want more? Become a member and get access to exclusive videos like the Top 5 Comics of the Week every week and other things! https://www.youtube.com/channel/UCKNV3if6zB7MM55Gr0DCQ9w/join 🔴 Click this link to become Earth's Mightiest Patron!: https://www.patreon.com/BlerdWithoutFear 🔴 JOIN the DISCORD!: https://discord.gg/PTsPbpx Make sure to READ the RULES and verify yourself at the bottom of the rules thread, otherwise you will NOT gain access to the server! 🔴 FOLLOW ME HERE! Twitter.com/BlerdMinusFear Facebook.com/BlerdWithoutFear/ Instagram.com/blerdwithoutfear 🔴 BWF T-SHIRTS (courte...

    published: 19 Dec 2023
  • What's so great about Alpha Flight!?

    It's time for Raiders of the Long Box! When, we dig into our comicbook collect a pull out something cool- well hopefully! This time it's the first six issues John Byrne's 1983 series, Alpha Fight! Marvel as he tries craft seven “nothing” characters into “real” characters!

    published: 01 Mar 2023
  • Let's Talk About Canada's Stance on MUTANTS in Alpha Flight #1

    In today's video let's talk about Canada's stance on Mutants in Alpha Flight #1, and whether or not America's Top Hat can afford to face a mutant schism during the Fall of X. 🔴 Don’t forget to Hulk Smash that LIKE button 👍🏿 and SUBSCRIBE ⚡ 🔴 Want more? Become a member and get access to exclusive videos like the Top 5 Comics of the Week every week and other things! https://www.youtube.com/channel/UCKNV3if6zB7MM55Gr0DCQ9w/join 🔴 Click this link to become Earth's Mightiest Patron!: https://www.patreon.com/BlerdWithoutFear 🔴 JOIN the DISCORD!: https://discord.gg/PTsPbpx Make sure to READ the RULES and verify yourself at the bottom of the rules thread, otherwise you will NOT gain access to the server! 🔴 FOLLOW ME HERE! Twitter.com/BlerdMinusFear Facebook.com/BlerdWithoutFear/ Instagram.co...

    published: 21 Aug 2023
  • Top 10 Most Powerful Alpha Flight Villains

    Top 10 Most Powerful Alpha Flight Villains 💚Subscribe To Top 10 Nerd💚: http://bit.ly/2eI6p18 💜Subscribe To Most Amazing Top 10 Anime💜: https://bit.ly/3wba66W Check Out Our Most Recent Uploads: https://www.youtube.com/watch?v=l9r0SZjLA-8&list=UULFF5tN4DO3Eh-BBOddG09gHw Alpha Flight are Marvel Legends we've been talking about for a long time here on our channel but we wanted to highlight their villains instead! In this comic breakdown, we'll be exploring some of the most powerful Alpha flight villains you've probably never heard of before. Today on Top Ten Nerd, we bring you our comics explained list of the Top 10 Most Powerful Alpha Flight Villains. #top10 #marvel #mcu #marvelcomics #dccomics #dcu #dceu #superheroes #villains #comics #comicbooks #nerd #top10nerd 💛 Subscribe To Top 10 Ner...

    published: 21 Feb 2023
11 (Every) Member OF Canadian Avengers, The Alpha Flight - Backstories And Powers Explored
14:54

11 (Every) Member OF Canadian Avengers, The Alpha Flight - Backstories And Powers Explored

  • Order:
  • Duration: 14:54
  • Uploaded Date: 31 Jan 2024
  • views: 64998
11 (Every) Member OF Canadian Avengers, The Alpha Flight - Backstories And Powers Explored #marvelcomics #marvel #mcu #comics #comicbooks #marvelstudios #mcu
https://wn.com/11_(Every)_Member_Of_Canadian_Avengers,_The_Alpha_Flight_Backstories_And_Powers_Explored
Wolverine vs Alpha Flight
2:50

Wolverine vs Alpha Flight

  • Order:
  • Duration: 2:50
  • Uploaded Date: 19 Jun 2013
  • views: 378656
Wolverine was once part of the Alpha Flight a Canadian super hero team, he quit the team to go on to be part of the x-men they have never forgiven him to leaving them, This clip is they are once again reunited in the woods of canada, they want to trick him to come back. http://en.wikipedia.org/wiki/Alpha_Flight Please comment on this video and let me know what you think of the Alpha Team. http://forums.wolverinefiles.com/site/
https://wn.com/Wolverine_Vs_Alpha_Flight
History and Origin of Marvel's ALPHA FLIGHT!
13:58

History and Origin of Marvel's ALPHA FLIGHT!

  • Order:
  • Duration: 13:58
  • Uploaded Date: 26 Jun 2020
  • views: 132970
This is the origin and the history of Marvel Comics' premiere superhero team named Alpha Flight! From their origin days with Wolverine to 2020, follow their story as we learn about Guardian, Vindicator, Northstar, Aurora, Marrina, Snowbird, Shaman and Sasquatch! #AlphaFlight #XMen #Wolverine
https://wn.com/History_And_Origin_Of_Marvel's_Alpha_Flight
Top 10 Alpha Flight Members Much Stronger Than You Think
10:22

Top 10 Alpha Flight Members Much Stronger Than You Think

  • Order:
  • Duration: 10:22
  • Uploaded Date: 07 Oct 2022
  • views: 45191
Top 10 Alpha Flight Members Much Stronger Than You Think 💚Subscribe To Top 10 Nerd💚: http://bit.ly/2eI6p18 💜Subscribe To Most Amazing Top 10 Anime💜: https://bit.ly/3wba66W Check Out Our Most Recent Uploads: https://www.youtube.com/watch?v=C9GLIAxxqlY&list=UUF5tN4DO3Eh-BBOddG09gHw Alpha Flight Marvel Legends is not a phrase I was expecting to use today but here we are. Going over an Alpha Flight Comics Explained list would be far too vast so instead, we'll do a comic breakdown on each of their most valuable members. Today on Top Ten Nerd, we bring you our list of the Top 10 Alpha Flight Members Much Stronger Than You Think. #top10 #alphaflight #marvel #mcu #marvelcomics #dccomics #dcu #dceu #superheroes #villains #comics #comicbooks #nerd #top10nerd 💛 Subscribe To Top 10 Nerd Elite: https://bit.ly/3BC5JTP 💙 Follow Top 10 Nerd Facebook: https://www.facebook.com/top10nerdofficial Time Codes: 0:00 - Intro 0:40 - Northstar and Aurora 1:32 - Sasquatch 2:28 - Thunder 3:43 - Snow Bird 4:52 - Talisman 5:30 - Madison Jefferies 6:22 - Guardian 7:30 - Puck 8:15 - Marrina 8:56 - Shaman For business inquiries please contact top10nerdchannel@gmail.com Hosted By: Andrew Boyd Edited By: Ryan Lorenzetti: https://www.instagram.com/ryan_lor/
https://wn.com/Top_10_Alpha_Flight_Members_Much_Stronger_Than_You_Think
Alpha Flight by John Byrne Omnibus NEW PRINTING Overview & Comparison
29:01

Alpha Flight by John Byrne Omnibus NEW PRINTING Overview & Comparison

  • Order:
  • Duration: 29:01
  • Uploaded Date: 17 Oct 2023
  • views: 10310
Here is your advance look at the latest printing of Alpha Flight by John Byrne Omnibus from Marvel Comics. I talk about the stories, build of the omnibus and the differences between the original printing and this printing. The book is due out on the Book Market and the Direct Market October 25th. Patreon tiers - We offer multiple tiers starting at $1 to give you access to notes, voting, Discord, AMA, recognition, and private consultations! See which tier best fits your needs. https://www.patreon.com/nearmintcondition NMC merch can be purchased here: https://shop.spreadshirt.com/near-mint-condition Check out our sponsors: https://www.cheapgraphicnovels.com In Europe: https://waltscomicshop.com You can send fan mail or giveaway donations to: Near Mint Condition PO Box 5204 Frankfort, KY 40602 nearmintcon@gmail.com #alphaflightomnibus #johnbyrne #alphaflight #marvelomnibus
https://wn.com/Alpha_Flight_By_John_Byrne_Omnibus_New_Printing_Overview_Comparison
ALPHA FLIGHT Teaser (2023) With John Cena & Kevin Durand
8:35

ALPHA FLIGHT Teaser (2023) With John Cena & Kevin Durand

  • Order:
  • Duration: 8:35
  • Uploaded Date: 25 Oct 2022
  • views: 48685
ALPHA FLIGHT Teaser (2023) With John Cena & Kevin Durand ✅ Subscribe to us → https://www.youtube.com/c/FilmRoyalty?sub_confirmation=1 🔔 Turn on notifications to never miss a new upload! ✅ Follow us on Instagram → https://www.instagram.com/filmroyalty About: Alpha Flight is a fictional team of Canadian superheroes appearing in American comic books published by Marvel Comics. The characters premiered in The Uncanny X-Men #120 (April [l1979), and were created to serve as part of the X-Men member Wolverine's backstory. Marvel published an Alpha Flight comic book series from 1983 to 1994. The team serves as Canada's premier superhero team akin to America's Avengers. "Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for "fair use" for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use." About us: Film Royalty is the #1 destination for all movie fans to catch the latest movie breakdowns, news, featurettes as well as exclusive movie secrets & more! Always Expect the latest content from your most anticipated movies! We work around the clock to bring you the hottest content including breakdowns, news & more the second it drops. Hashtags: #alphaflight #2023 #alphaflightmarvel #alphaflighttrailer #marvel #dc #mcu #dcu #canadianavengers #theavengers #alphaflightofficialtrailer #johncena #kevindurand #upcomingmovies #newsuperhero #dccomics #comics #marvelcomics #ironman #spiderman #thehulk #shehulk #daredevil
https://wn.com/Alpha_Flight_Teaser_(2023)_With_John_Cena_Kevin_Durand
What's Next for Canada's ONLY Super Team in Alpha Flight #5
11:43

What's Next for Canada's ONLY Super Team in Alpha Flight #5

  • Order:
  • Duration: 11:43
  • Uploaded Date: 19 Dec 2023
  • views: 7237
In today's video let's talk about what's next for Canada's only super team in Alpha Flight #5, and why prison bars might just be it. 🔴 Don’t forget to Hulk Smash that LIKE button 👍🏿 and SUBSCRIBE ⚡ 🔴 Want more? Become a member and get access to exclusive videos like the Top 5 Comics of the Week every week and other things! https://www.youtube.com/channel/UCKNV3if6zB7MM55Gr0DCQ9w/join 🔴 Click this link to become Earth's Mightiest Patron!: https://www.patreon.com/BlerdWithoutFear 🔴 JOIN the DISCORD!: https://discord.gg/PTsPbpx Make sure to READ the RULES and verify yourself at the bottom of the rules thread, otherwise you will NOT gain access to the server! 🔴 FOLLOW ME HERE! Twitter.com/BlerdMinusFear Facebook.com/BlerdWithoutFear/ Instagram.com/blerdwithoutfear 🔴 BWF T-SHIRTS (courtesy of TeeSpring): https://teespring.com/stores/blerdwithoutfear 🔴 DONATE money to the Blerd Without Fear!: https://www.paypal.me/blerdwithoutfear INTRO ANIMATION: Animation by Oliver Banks. Go check out his Youtube Channel: https://www.youtube.com/user/BroODBanks INTRO MUSIC: Intro & Outro: Dreamweaver by SkyBlew https://youtu.be/VhQyQbOL2lk #marvel #xmen #comics
https://wn.com/What's_Next_For_Canada's_Only_Super_Team_In_Alpha_Flight_5
What's so great about Alpha Flight!?
9:34

What's so great about Alpha Flight!?

  • Order:
  • Duration: 9:34
  • Uploaded Date: 01 Mar 2023
  • views: 6867
It's time for Raiders of the Long Box! When, we dig into our comicbook collect a pull out something cool- well hopefully! This time it's the first six issues John Byrne's 1983 series, Alpha Fight! Marvel as he tries craft seven “nothing” characters into “real” characters!
https://wn.com/What's_So_Great_About_Alpha_Flight
Let's Talk About Canada's Stance on MUTANTS in Alpha Flight #1
15:20

Let's Talk About Canada's Stance on MUTANTS in Alpha Flight #1

  • Order:
  • Duration: 15:20
  • Uploaded Date: 21 Aug 2023
  • views: 14748
In today's video let's talk about Canada's stance on Mutants in Alpha Flight #1, and whether or not America's Top Hat can afford to face a mutant schism during the Fall of X. 🔴 Don’t forget to Hulk Smash that LIKE button 👍🏿 and SUBSCRIBE ⚡ 🔴 Want more? Become a member and get access to exclusive videos like the Top 5 Comics of the Week every week and other things! https://www.youtube.com/channel/UCKNV3if6zB7MM55Gr0DCQ9w/join 🔴 Click this link to become Earth's Mightiest Patron!: https://www.patreon.com/BlerdWithoutFear 🔴 JOIN the DISCORD!: https://discord.gg/PTsPbpx Make sure to READ the RULES and verify yourself at the bottom of the rules thread, otherwise you will NOT gain access to the server! 🔴 FOLLOW ME HERE! Twitter.com/BlerdMinusFear Facebook.com/BlerdWithoutFear/ Instagram.com/blerdwithoutfear 🔴 BWF T-SHIRTS (courtesy of TeeSpring): https://teespring.com/stores/blerdwithoutfear 🔴 DONATE money to the Blerd Without Fear!: https://www.paypal.me/blerdwithoutfear INTRO ANIMATION: Animation by Oliver Banks. Go check out his Youtube Channel: https://www.youtube.com/user/BroODBanks INTRO MUSIC: Intro & Outro: Dreamweaver by SkyBlew https://youtu.be/VhQyQbOL2lk #xmen #alphaflight #comics
https://wn.com/Let's_Talk_About_Canada's_Stance_On_Mutants_In_Alpha_Flight_1
Top 10 Most Powerful Alpha Flight Villains
11:41

Top 10 Most Powerful Alpha Flight Villains

  • Order:
  • Duration: 11:41
  • Uploaded Date: 21 Feb 2023
  • views: 12813
Top 10 Most Powerful Alpha Flight Villains 💚Subscribe To Top 10 Nerd💚: http://bit.ly/2eI6p18 💜Subscribe To Most Amazing Top 10 Anime💜: https://bit.ly/3wba66W Check Out Our Most Recent Uploads: https://www.youtube.com/watch?v=l9r0SZjLA-8&list=UULFF5tN4DO3Eh-BBOddG09gHw Alpha Flight are Marvel Legends we've been talking about for a long time here on our channel but we wanted to highlight their villains instead! In this comic breakdown, we'll be exploring some of the most powerful Alpha flight villains you've probably never heard of before. Today on Top Ten Nerd, we bring you our comics explained list of the Top 10 Most Powerful Alpha Flight Villains. #top10 #marvel #mcu #marvelcomics #dccomics #dcu #dceu #superheroes #villains #comics #comicbooks #nerd #top10nerd 💛 Subscribe To Top 10 Nerd Elite: https://bit.ly/3BC5JTP 💙 Follow Top 10 Nerd Facebook: https://www.facebook.com/top10nerdofficial Time Codes: 0:00 - Intro 0:58 - Lady Deathstrike 1:59 - Bedlam 2:47 - Delphine Courtney 3:59 - Tanaraq 4:54 - Scramble Omega 5:54 - Tundra 6:43 - New Weapon X 7:53 - Llan The Sorcerer 8:38 - Dreamqueen 9:31 - The Master Of The World For business inquiries please contact top10nerdchannel@gmail.com Hosted By: Andrew Boyd Edited By: Claudia Leung: https://www.instagram.com/claudzleung/
https://wn.com/Top_10_Most_Powerful_Alpha_Flight_Villains
PLAYLIST TIME:
  • Most Related
  • Most Recent
  • Most Popular
  • Top Rated
  • 11 (Every) Member OF Canadian Avengers, The Alpha Flight - Backstories And Powers Explored
    14:54
    11 (Every) Member OF Canadian Avengers, The Alpha Flight - Backstories And Powers Exploredremove from playlist
  • Wolverine vs Alpha Flight
    2:50
    Wolverine vs Alpha Flightremove from playlist
  • History and Origin of Marvel's ALPHA FLIGHT!
    13:58
    History and Origin of Marvel's ALPHA FLIGHT!remove from playlist
  • Top 10 Alpha Flight Members Much Stronger Than You Think
    10:22
    Top 10 Alpha Flight Members Much Stronger Than You Thinkremove from playlist
  • Alpha Flight by John Byrne Omnibus NEW PRINTING Overview & Comparison
    29:01
    Alpha Flight by John Byrne Omnibus NEW PRINTING Overview & Comparisonremove from playlist
  • ALPHA FLIGHT Teaser (2023) With John Cena & Kevin Durand
    8:35
    ALPHA FLIGHT Teaser (2023) With John Cena & Kevin Durandremove from playlist
  • What's Next for Canada's ONLY Super Team in Alpha Flight #5
    11:43
    What's Next for Canada's ONLY Super Team in Alpha Flight #5remove from playlist
  • What's so great about Alpha Flight!?
    9:34
    What's so great about Alpha Flight!?remove from playlist
  • Let's Talk About Canada's Stance on MUTANTS in Alpha Flight #1
    15:20
    Let's Talk About Canada's Stance on MUTANTS in Alpha Flight #1remove from playlist
  • Top 10 Most Powerful Alpha Flight Villains
    11:41
    Top 10 Most Powerful Alpha Flight Villainsremove from playlist
PLAYLIST TIME: 0:00 / 2:07:58

11 (Every) Member OF Canadian Avengers, The Alpha Flight - Backstories And Powers Explored

11 (Every) Member OF Canadian Avengers, The Alpha Flight - Backstories And Powers Explored #marvelcomics #marvel #mcu #comics #comicbooks #marvelstudios #mcu
14:54
11 (Every) Member OF Canadian Avengers, The Alpha Flight - Backstories And Powers Explored
11 (Every) Member OF Canadian Avengers, The Alpha Flight - Backstories And Powers Explored...
published: 31 Jan 2024
Play in Full Screen
2:50
Wolverine vs Alpha Flight
Wolverine was once part of the Alpha Flight a Canadian super hero team, he quit the team t...
published: 19 Jun 2013
Play in Full Screen
13:58
History and Origin of Marvel's ALPHA FLIGHT!
This is the origin and the history of Marvel Comics' premiere superhero team named Alpha F...
published: 26 Jun 2020
Play in Full Screen
10:22
Top 10 Alpha Flight Members Much Stronger Than You Think
Top 10 Alpha Flight Members Much Stronger Than You Think 💚Subscribe To Top 10 Nerd💚: http:...
published: 07 Oct 2022
Play in Full Screen
29:01
Alpha Flight by John Byrne Omnibus NEW PRINTING Overview & Comparison
Here is your advance look at the latest printing of Alpha Flight by John Byrne Omnibus fr...
published: 17 Oct 2023
Play in Full Screen
8:35
ALPHA FLIGHT Teaser (2023) With John Cena & Kevin Durand
ALPHA FLIGHT Teaser (2023) With John Cena & Kevin Durand ✅ Subscribe to us → https://www.y...
published: 25 Oct 2022
Play in Full Screen
11:43
What's Next for Canada's ONLY Super Team in Alpha Flight #5
In today's video let's talk about what's next for Canada's only super team in Alpha Flight...
published: 19 Dec 2023
Play in Full Screen
9:34
What's so great about Alpha Flight!?
It's time for Raiders of the Long Box! When, we dig into our comicbook collect a pull out...
published: 01 Mar 2023
Play in Full Screen
15:20
Let's Talk About Canada's Stance on MUTANTS in Alpha Flight #1
In today's video let's talk about Canada's stance on Mutants in Alpha Flight #1, and wheth...
published: 21 Aug 2023
Play in Full Screen
11:41
Top 10 Most Powerful Alpha Flight Villains
Top 10 Most Powerful Alpha Flight Villains 💚Subscribe To Top 10 Nerd💚: http://bit.ly/2eI6p...
published: 21 Feb 2023
Play in Full Screen

Alpha Flight

Alpha Flight is a fictional superhero team published by Marvel Comics, noteworthy for being one of the few Canadian superhero teams. Created by John Byrne, the team first appeared in X-Men #120 (April 1979).

Within the Marvel Universe, Alpha Flight is described as "Canada's answer to the Avengers". Most team members have distinctly Canadian attributes, such as Inuit or First Nations heritage. Throughout most of its history, the team has worked for Department H, a fictional branch of Canada’s Department of National Defence that deals with super-powered villains.

The team was originally merely a part of the backstory of the X-Men’s Wolverine but, in 1983, Marvel launched an eponymous series featuring the group, which continued until 1994, lasting 130 issues as well as annuals and miniseries. Three short-lived revivals have been attempted since, most recently an eight-issue limited series in 2011-12, after the resurrection of the team in the one shot comic Chaos War: Alpha Flight during the Chaos War event.

'); } else { var query = elem.find('.keywords').html(); $.ajax({ context: elem, url: 'https://wn.com/api/upge/cheetah-search-adv/video', cache: true, data: { 'query': query }, dataType: 'jsonp', success: function(text) { if (text.length > 0) { video_id = text[0].id; elem.find('.player').html(''); } } }); } } var stopAllYouTubeVideos = function() { var iframes = document.querySelectorAll('iframe'); Array.prototype.forEach.call(iframes, function(iframe) { iframe.contentWindow.postMessage(JSON.stringify({ event: 'command', func: 'pauseVideo' }), '*'); }); } jQuery(function() { jQuery(".playVideo").live("click", function() { if(!$(this).hasClass("played")){ stopAllYouTubeVideos(); var elem = $(this); setTimeout(function(){ mouseOverMe(elem); }, 1000); } }); jQuery(".description_box .expandContent").live("click", function() { elem = $(this).parent().parent().parent().find('.descContent'); if(elem.height() > 51) { elem.css('height', '44px'); $(this).html('Show More '); }else{ elem.css('height', 'auto'); $(this).html('Hide '); } }); jQuery('.interview-play-off').click(function() { $(".interview-play-off").hide(); $(".interview-play").show(); $(".videoplayer-control-pause").click(); }); jQuery(".video-desc .show_author_videos").live("click", function() { query = $(this).attr('title'); container = $(this).parent().parent().parent().find('.video-author-thumbs'); $(this).parent().parent().parent().find('.video-author-thumbs').css('height', '220px'); jQuery.ajax({ url: '/api/upge/cheetah-photo-search/videoresults', data: {'query': query}, success: function(text) { if(!text) { text = i18n("No results"); } container.html(jQuery(text)); } }); }); }); // -->

Latest News for: alpha flight

Edit

Sharjah's viral Meliha milk will now be served to Air Arabia passengers

Khaleejtimes 17 Apr 2025
Mark Whelan, managing director at Alpha Flight Services (dnata Catering & Retail UAE), expressed enthusiasm about this collaboration. "Today, we are excited to introduce our first organic product onboard Air Arabia flights.
  • 1
×