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

Steve Wynn

Stephen Alan "Steve" Wynn ( Weinberg; born January 27, 1942) is an American businessman and art collector. He is well known for his involvement in the American luxury casino and hotel industry. Early in his career he oversaw the construction and operation of several historically notable Las Vegas and Atlantic City hotels, including the Golden Nugget, the Golden Nugget Atlantic City, The Mirage, Treasure Island, the Bellagio, and Beau Rivage in Mississippi, and he played a pivotal role in the resurgence and expansion of the Las Vegas Strip in the 1990s. In 2000, Wynn sold his company Mirage Resorts to MGM Grand, resulting in the formation of MGM Mirage. Wynn afterwards took his company Wynn Resorts public in an initial public offering, and he remains Wynn Resorts' CEO and Chairman of the Board.

Through Wynn Resorts he has overseen the construction and development of several luxury resorts, opening Wynn Las Vegas in 2005, Wynn Macau in 2006, Encore Las Vegas in 2008, and Encore at Wynn Macau in 2010. Current projects include Wynn Palace in China and Wynn Everett near Boston. In 2006 Wynn was inducted into the American Gaming Association Hall of Fame. As of September 2015, Wynn's net worth was estimated by Forbes at $2.4 billion, making him the 279th wealthiest American. Steve Wynn is an avid collector of fine art, often exhibiting pieces by artists such as Picasso and Claude Monet in Wynn Resorts' hotels.

Steve Wynn (musician)

Steven Lawrence "Steve" Wynn (born February 21, 1960) is an American songwriter. He led the band the Dream Syndicate from 1981 to 1989 in Los Angeles, and afterward began a solo career.

Career

Origins in Davis, California

Before forming the Dream Syndicate, Wynn played guitar in the Davis-based band Suspects, whose members included vocalist Kendra Smith (with whom he later founded The Dream Syndicate), and Russ Tolman and Gavin Blair (who would form True West). In 1979, Suspects released a single, "Talking Loud" b/w "It's Up to You", and the band remained active through 1981.

After Suspects disbanded, Wynn formed the trio 15 Minutes with two members of Alternate Learning, bass player Carolyn O'Rourke and drummer Eric Landers. With 15 Minutes, Wynn wrote and produced the 1981 single "That's What You Always Say," b/w "Last Chance For You," which he engineered with Alternate Learning's frontman, Scott Miller. The A-side, "That's What You Always Say," was later performed by the Dream Syndicate.

Steve Wynn (disambiguation)

Steve Wynn may refer to:

  • Steve Wynn (entrepreneur)
  • Steve Wynn (songwriter)
  • See also

  • Steve Winn, Welsh rugby union player


  • The Rise and Fall

    The Rise and Fall or Rise and Fall may refer to:

  • "Rise & Fall" (Justice Crew song)
  • "Rise & Fall" (song), a 2003 song by Craig David featuring Sting
  • Rise and Fall (band), a Belgian hardcore band
  • Rise and Fall (Dargaard album), 2004
  • Rise and Fall (The Warlocks album), 2001
  • The Rise & Fall (album), a 1982 album by Madness
  • See also

  • Rise and Fall: Civilizations at War, a 2006 computer game
  • Rise and Fall, Rage and Grace, an album by The Offspring
  • The Rise and Fall of Butch Walker and the Let's-Go-Out-Tonites, 2006
  • The Rise and Fall of Brainwash Projects, a 1998 album by Brainwash Projects
  • Rises and falls
  • Podcasts:

    Steve Wynn

    ALBUMS

    • The Rise and Fall of Steve Wynn: Uncovering the Tragic Story [DOCUMENTARY]

      In this documentary, we'll explore the story of Steve Wynn, one of the most controversial and dramatic figures in Las Vegas history. Wynn helped user in a new era of Las Vegas, and has seemingly lost it all. From his meteoric rise to his devastating fall, we explore the life and history of Steve Wynn, the kid from Connecticut who changed Las Vegas with the Mirage, Treasure Island, and Bellagio to the powerful casino mogul accused of multiple s_xual assaults. Help fund more quality content? 👉 Support via Patreon https://patreon.com/notleavinglasvegas 👉 Support Financially one time: https://notleavinglasvegas.com/donate PO BOX That is very nice of you Steven Campbell 7835 south rainbow Blvd #4-194 Las Vegas NV 89139 👉buying stuff on Amazon? I LOVE this book at this link - even if yo...

      published: 20 Jan 2023
    • From Billionaire Mogul to Scandal: The Steve Wynn Story

      Welcome back to Details in Luxury, we are going to talk about the Steve Wynn history. Steve Wynn was one of the most influential people when talking about Las Vegas. Steve has a long history with it where there was some ups and downs, we will be covering a little bit of Steve Wynn's life history and current situation of him and his properties. Thank you for watching Details In Luxury : From Billionaire Mogul to Scandal: The Steve Wynn Story If you like the video, please SUBSCRIBE and don’t forget to press the bell, 🔔 like, comment and share. Stay safe and Love all. 😍 In this video we used some clips from YouTube to create visual representation of some of the places. This video was inspired by: Not Leaving Vegas- a Vegas Video Channel: https://youtu.be/YGVx_ECd9zs Credits: Consume...

      published: 13 Feb 2023
    • Steve Wynn & The Miracle 3 - Amphetamine (Live on KEXP)

      Steve Wynn & The Miracle 3 perform "Amphetamine" live from Mellow Johnny's Bike Shop in Austin, TX, during KEXP's broadcast at SXSW. Recorded 3/18/2011. Host: Cheryl Waters Engineer: Kevin Suggs Cameras: Jim Beckmann, Shelly Corbett, Scott Holpainen & Christopher Meister Edits: Scott Holpainen

      published: 30 Aug 2011
    • Part I: Steve Wynn discusses his journey into the Las Vegas hotel and casino business

      Part I: Wynn Resorts owner Steve Wynn discusses his life, his dad's death, being broke, and how he got into the hotel and casino business. Wynn came to Las Vegas for a vacation, met Frank Sinatra, and fell in love with the city. Wynn's banker said, "Steve, this town needs young people. If you stay here you'll end up owning the place." Wynn stayed and enjoys running a successful hotel and casino business. Watch part II here https://www.youtube.com/watch?v=eOesXyfJGI0

      published: 17 Jul 2014
    • Steve Wynn agrees to $10 million fine, end to any ties with Nevada gaming industry

      Steve Wynn has agreed to pay a $10 million fine to settle a Nevada Gaming Control Board complaint. The settlement effectively ends Wynn's involvement in the Nevada gaming industry, declaring he is "unsuitable" for any job connected to the business he helped to build until sexual misconduct allegations emerged in 2018 for incidents that spanned the six previous years.

      published: 20 Jul 2023
    • This $3 million Ferrari flip cost Steve Wynn his dealership

      Rich & Gloss-It detailed Ed's SLR - https://youtu.be/j7FqYNgKS2A @GlossIt working on this car! https://youtu.be/u26y2hXWPQU Check out Premier Financial Services at https://vinwiki.com/r/pfs21 to learn more about their simple lease and to see how easy it can be to own your dream car! Rich Light from Gloss-It describes his relationship with Steve Wynn. Subscribe to the @GlossIt YouTube channel and follow them on Instagram. Gloss-It's latest VINwiki offer: https://vinwiki.com/r/glossit21 VINwiki on iOS - https://vinwiki.com/ios VINwiki on Android - https://vinwiki.com/android VINwiki Merchandise - https://store.vinwiki.com Support our 2021 Sponsors: AutoTempest - https://vinwiki.com/r/autotempest21 AvalonKing - https://vinwiki.com/r/avalonking21 Policy Genius - https://vinwiki.com/r/pg21...

      published: 20 Apr 2021
    • Titans Of Industry with Nelson Peltz and Steve Wynn | FII Priority | Miami | #FIIPriority

      "Titans of Industry," an unexpected conversation between Nelson Peltz and Steve Wynn, took place at FII PRIORITY. On March 30-31, 2023, FII PRIORITY, powered by FII Institute, convened global leaders, CEOs, investors, innovators, engaged citizens and media for two days in Miami to craft a roadmap for humanity in today's challenging times.

      published: 31 Mar 2023
    • Inside Steve Wynn's New $4.2 Billion Macau Resort

      Aug. 17 -- Steve Wynn, chief executive officer, executive director and founder of Wynn Macau, spoke with Bloomberg's Oanh Ha in Macau on Monday, ahead of the Wynn Palace resort's Aug. 22 opening. Like this video? Subscribe to Bloomberg on YouTube: http://www.youtube.com/Bloomberg?sub_confirmation=1 And subscribe to Bloomberg Politics for the latest political news: http://www.youtube.com/BloombergPolitics?sub_confirmation=1 Bloomberg is the First Word in business news, delivering breaking news & analysis, up-to-the-minute market data, features, profiles and more: http://www.bloomberg.com Connect with us on... Twitter: https://twitter.com/business Facebook: https://www.facebook.com/bloombergbusiness Instagram: https://www.instagram.com/bloombergbusiness/ Bloomberg Television brings yo...

      published: 17 Aug 2016
    • Part II: Steve Wynn discusses the future of his business

      Steve Wynn, founder of Wynn Resorts, in the second part of his interview, discusses further his life as an entrepreneur, what he does to motivate his employees, and how he creates experiences that keep customers’ returning. Wynn also expresses his views on Obamacare, America’s fiscal policy, and the future of his business. “I take sides only on the issues that pertain to the health of my workforce,” explains Wynn. He has resorts in Las Vegas, Macau, China, and hopes to soon begin building another in Massachusetts. Watch part I here https://www.youtube.com/watch?v=m9Lg7uKhTMs

      published: 25 Jul 2014
    • Steve Wynn Message to Employees

      The employees at MVHS receive a heartfelt message from Steve Wynn.

      published: 14 Jun 2021
    developed with YouTube
    The Rise and Fall of Steve Wynn: Uncovering the Tragic Story [DOCUMENTARY]
    14:05

    The Rise and Fall of Steve Wynn: Uncovering the Tragic Story [DOCUMENTARY]

    • Order:
    • Duration: 14:05
    • Uploaded Date: 20 Jan 2023
    • views: 747740
    In this documentary, we'll explore the story of Steve Wynn, one of the most controversial and dramatic figures in Las Vegas history. Wynn helped user in a new era of Las Vegas, and has seemingly lost it all. From his meteoric rise to his devastating fall, we explore the life and history of Steve Wynn, the kid from Connecticut who changed Las Vegas with the Mirage, Treasure Island, and Bellagio to the powerful casino mogul accused of multiple s_xual assaults. Help fund more quality content? 👉 Support via Patreon https://patreon.com/notleavinglasvegas 👉 Support Financially one time: https://notleavinglasvegas.com/donate PO BOX That is very nice of you Steven Campbell 7835 south rainbow Blvd #4-194 Las Vegas NV 89139 👉buying stuff on Amazon? I LOVE this book at this link - even if you do NOT buy this book using this link to shop for ANYTHING pays us an affiliate commission https://amzn.to/3A0Zpp9 👉 Support me by buying cool gear! http://nllvgear.com (this link pays the channel money if you order merchandise) 👉 Email me: nllvcontact@gmail.com #lasvegas #notleavinglasvegas Video Chapters: 0:00 Intro 1:09 Steve Wynn Childhood 3:13 Steve Wynn Enters the Gaming Industry 3:50 Steve Wynn and the Frontier Hotel 4:50 Steve Wynn Purchases the Golden Nugget Las Vegas 5:28 Steve Wynn Mirage Construction 6:00 Steve Wynn Elaine Wynn First Divorce 6:20 Steve Wynn Seems to Threaten Reporter 6:50 Steve Wynn Creates the Modern Day Casino 6:58 Steve Wynn Finances the First Casino with Wall Street Money 7:30 Steve Wynn Mirage Grand Opening Risks 7:40 Mirage Grand Opening Day Footage 7:55 How Mirage Grand Opening Changed Vegas Hotels 8:05 Steve Wynn Builds Treasure Island 8:15 Steve Wynn Brings Cirque du Soleil Mystere to Vegas 8:28 Mirage Volcano and Treasure Island Pirate Show Changes Vegas 9:00 Steve Wynn Cocktail Waitress "Fat" Lawsuit 9:30 Bellagio Grand Opening Day Footage 9:55 Steve Wynn Sells Mirage Resorts to MGM Grand 10:00 Steve Wynn Purchases Desert Inn and becomes a Billionare 10:15 Wynn Hotel Grand Opening 10:34 Steven Wynn Builds Encore Las Vegas 10:40 Encore Las Vegas Grand Opening TV Commercial 11:00 Steve and Elaine Wynn Divorce Again 11:15 Steve Wynn History of Lawsuits 11:30 Wall Street Journal Accusatios 12:50 Steve Wynn Resigns from Wynn Resorts 12:55 Final Thoughts on Wynn
    https://wn.com/The_Rise_And_Fall_Of_Steve_Wynn_Uncovering_The_Tragic_Story_Documentary
    From Billionaire Mogul to Scandal: The Steve Wynn Story
    6:06

    From Billionaire Mogul to Scandal: The Steve Wynn Story

    • Order:
    • Duration: 6:06
    • Uploaded Date: 13 Feb 2023
    • views: 23824
    Welcome back to Details in Luxury, we are going to talk about the Steve Wynn history. Steve Wynn was one of the most influential people when talking about Las Vegas. Steve has a long history with it where there was some ups and downs, we will be covering a little bit of Steve Wynn's life history and current situation of him and his properties. Thank you for watching Details In Luxury : From Billionaire Mogul to Scandal: The Steve Wynn Story If you like the video, please SUBSCRIBE and don’t forget to press the bell, 🔔 like, comment and share. Stay safe and Love all. 😍 In this video we used some clips from YouTube to create visual representation of some of the places. This video was inspired by: Not Leaving Vegas- a Vegas Video Channel: https://youtu.be/YGVx_ECd9zs Credits: Consumer Time Capsule: https://www.youtube.com/@ConsumerTimeCapsule 8 News NOW Las Vegas: https://www.youtube.com/@8newsnowlasvegas656 Wall Street Journal commercial classics: https://www.youtube.com/@commercialclassic AccessVegas.com: https://www.youtube.com/@accessvegas Johnny V: https://www.youtube.com/@JohnnieV/videos CBS Boston: https://www.youtube.com/@cbsboston Inspiration and Beyond: https://www.youtube.com/@inspirationandbeyond1491 FAIR USE NOTICE: This video may contain copyrighted material. Such material is made available for informational and entertaining purposes only. This constitutes a 'fair use' of any such copyrighted material as provided for in Title 17 U.S.C. section 106A-117 of the US Copyright Law. If you have any question or suggestion about the clips used in this video please contact us at: detailsinluxurybusiness@gmail.com ----------------- ▶️ Please Subscribe: https://www.youtube.com/channel/UCw3eBMaXQZ0igzCTNYIvsDw ----------------- ▶️ Follow Us: • Facebook: https://www.facebook.com/Details-in-Luxury-106350197827466 • Twitter: https://twitter.com/DetailsLuxury ----------------- ▶️ For business inquiries: detailsinluxurybusiness@gmail.com ----------------- ▶️ Other Videos: • SteveWillDoIt Craziest Moments: https://youtu.be/l_tGJ0EQepE • Top Best Hotels In Tulum: https://youtu.be/zO8zOeL3Kww • Top 5 Best Resorts In Dominican Republic: https://youtu.be/rF_dgZpspWA • Top 7 Best Hotels In Milan: https://youtu.be/e3LdkpE27FM ---------------------------- #detailsinluxury #lasvegas #stevewynn #vegas #wynn #detailsinluxurylasvegas #wynnlasvegas #vegas #historyofvegas #lasvegasstrip #hotelsinlasvegas
    https://wn.com/From_Billionaire_Mogul_To_Scandal_The_Steve_Wynn_Story
    Steve Wynn & The Miracle 3 - Amphetamine (Live on KEXP)
    7:05

    Steve Wynn & The Miracle 3 - Amphetamine (Live on KEXP)

    • Order:
    • Duration: 7:05
    • Uploaded Date: 30 Aug 2011
    • views: 307363
    Steve Wynn & The Miracle 3 perform "Amphetamine" live from Mellow Johnny's Bike Shop in Austin, TX, during KEXP's broadcast at SXSW. Recorded 3/18/2011. Host: Cheryl Waters Engineer: Kevin Suggs Cameras: Jim Beckmann, Shelly Corbett, Scott Holpainen & Christopher Meister Edits: Scott Holpainen
    https://wn.com/Steve_Wynn_The_Miracle_3_Amphetamine_(Live_On_Kexp)
    Part I: Steve Wynn discusses his journey into the Las Vegas hotel and casino business
    24:01

    Part I: Steve Wynn discusses his journey into the Las Vegas hotel and casino business

    • Order:
    • Duration: 24:01
    • Uploaded Date: 17 Jul 2014
    • views: 203253
    Part I: Wynn Resorts owner Steve Wynn discusses his life, his dad's death, being broke, and how he got into the hotel and casino business. Wynn came to Las Vegas for a vacation, met Frank Sinatra, and fell in love with the city. Wynn's banker said, "Steve, this town needs young people. If you stay here you'll end up owning the place." Wynn stayed and enjoys running a successful hotel and casino business. Watch part II here https://www.youtube.com/watch?v=eOesXyfJGI0
    https://wn.com/Part_I_Steve_Wynn_Discusses_His_Journey_Into_The_Las_Vegas_Hotel_And_Casino_Business
    Steve Wynn agrees to $10 million fine, end to any ties with Nevada gaming industry
    2:24

    Steve Wynn agrees to $10 million fine, end to any ties with Nevada gaming industry

    • Order:
    • Duration: 2:24
    • Uploaded Date: 20 Jul 2023
    • views: 22045
    Steve Wynn has agreed to pay a $10 million fine to settle a Nevada Gaming Control Board complaint. The settlement effectively ends Wynn's involvement in the Nevada gaming industry, declaring he is "unsuitable" for any job connected to the business he helped to build until sexual misconduct allegations emerged in 2018 for incidents that spanned the six previous years.
    https://wn.com/Steve_Wynn_Agrees_To_10_Million_Fine,_End_To_Any_Ties_With_Nevada_Gaming_Industry
    This $3 million Ferrari flip cost Steve Wynn his dealership
    10:06

    This $3 million Ferrari flip cost Steve Wynn his dealership

    • Order:
    • Duration: 10:06
    • Uploaded Date: 20 Apr 2021
    • views: 2025610
    Rich & Gloss-It detailed Ed's SLR - https://youtu.be/j7FqYNgKS2A @GlossIt working on this car! https://youtu.be/u26y2hXWPQU Check out Premier Financial Services at https://vinwiki.com/r/pfs21 to learn more about their simple lease and to see how easy it can be to own your dream car! Rich Light from Gloss-It describes his relationship with Steve Wynn. Subscribe to the @GlossIt YouTube channel and follow them on Instagram. Gloss-It's latest VINwiki offer: https://vinwiki.com/r/glossit21 VINwiki on iOS - https://vinwiki.com/ios VINwiki on Android - https://vinwiki.com/android VINwiki Merchandise - https://store.vinwiki.com Support our 2021 Sponsors: AutoTempest - https://vinwiki.com/r/autotempest21 AvalonKing - https://vinwiki.com/r/avalonking21 Policy Genius - https://vinwiki.com/r/pg21 Off The Record - https://vinwiki.com/r/otr21 Carly - https://vinwiki.com/r/carly21 ModFind - https://vinwiki.com/r/modfind21 Gloss-It - https://vinwiki.com/r/glossit21 Lux Rally - https://vinwiki.com/r/luxrally AP3 Paint Protection - https://vinwiki.com/r/ap3 Support the Cannonball Memorial Run - https://vinwiki.com/r/cmr Support the Brock Yates Memorial Fund - https://vinwiki.com/r/yates #LasVegas #SteveWynn #GlossIt
    https://wn.com/This_3_Million_Ferrari_Flip_Cost_Steve_Wynn_His_Dealership
    Titans Of Industry with Nelson Peltz and Steve Wynn | FII Priority | Miami | #FIIPriority
    24:50

    Titans Of Industry with Nelson Peltz and Steve Wynn | FII Priority | Miami | #FIIPriority

    • Order:
    • Duration: 24:50
    • Uploaded Date: 31 Mar 2023
    • views: 7903
    "Titans of Industry," an unexpected conversation between Nelson Peltz and Steve Wynn, took place at FII PRIORITY. On March 30-31, 2023, FII PRIORITY, powered by FII Institute, convened global leaders, CEOs, investors, innovators, engaged citizens and media for two days in Miami to craft a roadmap for humanity in today's challenging times.
    https://wn.com/Titans_Of_Industry_With_Nelson_Peltz_And_Steve_Wynn_|_Fii_Priority_|_Miami_|_Fiipriority
    Inside Steve Wynn's New $4.2 Billion Macau Resort
    3:41

    Inside Steve Wynn's New $4.2 Billion Macau Resort

    • Order:
    • Duration: 3:41
    • Uploaded Date: 17 Aug 2016
    • views: 117982
    Aug. 17 -- Steve Wynn, chief executive officer, executive director and founder of Wynn Macau, spoke with Bloomberg's Oanh Ha in Macau on Monday, ahead of the Wynn Palace resort's Aug. 22 opening. Like this video? Subscribe to Bloomberg on YouTube: http://www.youtube.com/Bloomberg?sub_confirmation=1 And subscribe to Bloomberg Politics for the latest political news: http://www.youtube.com/BloombergPolitics?sub_confirmation=1 Bloomberg is the First Word in business news, delivering breaking news & analysis, up-to-the-minute market data, features, profiles and more: http://www.bloomberg.com Connect with us on... Twitter: https://twitter.com/business Facebook: https://www.facebook.com/bloombergbusiness Instagram: https://www.instagram.com/bloombergbusiness/ Bloomberg Television brings you coverage of the biggest business stories and exclusive interviews with newsmakers, 24 hours a day: http://www.bloomberg.com/live Connect with us on... Twitter: https://twitter.com/bloombergtv Facebook: https://www.facebook.com/BloombergTelevision Instagram: https://www.instagram.com/bloombergtv
    https://wn.com/Inside_Steve_Wynn's_New_4.2_Billion_Macau_Resort
    Part II: Steve Wynn discusses the future of his business
    30:26

    Part II: Steve Wynn discusses the future of his business

    • Order:
    • Duration: 30:26
    • Uploaded Date: 25 Jul 2014
    • views: 145537
    Steve Wynn, founder of Wynn Resorts, in the second part of his interview, discusses further his life as an entrepreneur, what he does to motivate his employees, and how he creates experiences that keep customers’ returning. Wynn also expresses his views on Obamacare, America’s fiscal policy, and the future of his business. “I take sides only on the issues that pertain to the health of my workforce,” explains Wynn. He has resorts in Las Vegas, Macau, China, and hopes to soon begin building another in Massachusetts. Watch part I here https://www.youtube.com/watch?v=m9Lg7uKhTMs
    https://wn.com/Part_Ii_Steve_Wynn_Discusses_The_Future_Of_His_Business
    Steve Wynn Message to Employees
    2:19

    Steve Wynn Message to Employees

    • Order:
    • Duration: 2:19
    • Uploaded Date: 14 Jun 2021
    • views: 14181
    The employees at MVHS receive a heartfelt message from Steve Wynn.
    https://wn.com/Steve_Wynn_Message_To_Employees
    developed with YouTube
    PLAYLIST TIME:
    • Most Related
    • Most Recent
    • Most Popular
    • Top Rated
    • The Rise and Fall of Steve Wynn: Uncovering the Tragic Story [DOCUMENTARY]
      14:05
      The Rise and Fall of Steve Wynn: Uncovering the Tragic Story [DOCUMENTARY]remove from playlist
    • From Billionaire Mogul to Scandal: The Steve Wynn Story
      6:06
      From Billionaire Mogul to Scandal: The Steve Wynn Storyremove from playlist
    • Steve Wynn & The Miracle 3 - Amphetamine (Live on KEXP)
      7:05
      Steve Wynn & The Miracle 3 - Amphetamine (Live on KEXP)remove from playlist
    • Part I: Steve Wynn discusses his journey into the Las Vegas hotel and casino business
      24:01
      Part I: Steve Wynn discusses his journey into the Las Vegas hotel and casino businessremove from playlist
    • Steve Wynn agrees to $10 million fine, end to any ties with Nevada gaming industry
      2:24
      Steve Wynn agrees to $10 million fine, end to any ties with Nevada gaming industryremove from playlist
    • This $3 million Ferrari flip cost Steve Wynn his dealership
      10:06
      This $3 million Ferrari flip cost Steve Wynn his dealershipremove from playlist
    • Titans Of Industry with Nelson Peltz and Steve Wynn | FII Priority | Miami | #FIIPriority
      24:50
      Titans Of Industry with Nelson Peltz and Steve Wynn | FII Priority | Miami | #FIIPriorityremove from playlist
    • Inside Steve Wynn's New $4.2 Billion Macau Resort
      3:41
      Inside Steve Wynn's New $4.2 Billion Macau Resortremove from playlist
    • Part II: Steve Wynn discusses the future of his business
      30:26
      Part II: Steve Wynn discusses the future of his businessremove from playlist
    • Steve Wynn Message to Employees
      2:19
      Steve Wynn Message to Employeesremove from playlist
    developed with YouTube
    PLAYLIST TIME:

    The Rise and Fall of Steve Wynn: Uncovering the Tragic Story [DOCUMENTARY]

    In this documentary, we'll explore the story of Steve Wynn, one of the most controversial and dramatic figures in Las Vegas history. Wynn helped user in a new era of Las Vegas, and has seemingly lost it all. From his meteoric rise to his devastating fall, we explore the life and history of Steve Wynn, the kid from Connecticut who changed Las Vegas with the Mirage, Treasure Island, and Bellagio to the powerful casino mogul accused of multiple s_xual assaults. Help fund more quality content? 👉 Support via Patreon https://patreon.com/notleavinglasvegas 👉 Support Financially one time: https://notleavinglasvegas.com/donate PO BOX That is very nice of you Steven Campbell 7835 south rainbow Blvd #4-194 Las Vegas NV 89139 👉buying stuff on Amazon? I LOVE this book at this link - even if you do NOT buy this book using this link to shop for ANYTHING pays us an affiliate commission https://amzn.to/3A0Zpp9 👉 Support me by buying cool gear! http://nllvgear.com (this link pays the channel money if you order merchandise) 👉 Email me: nllvcontact@gmail.com #lasvegas #notleavinglasvegas Video Chapters: 0:00 Intro 1:09 Steve Wynn Childhood 3:13 Steve Wynn Enters the Gaming Industry 3:50 Steve Wynn and the Frontier Hotel 4:50 Steve Wynn Purchases the Golden Nugget Las Vegas 5:28 Steve Wynn Mirage Construction 6:00 Steve Wynn Elaine Wynn First Divorce 6:20 Steve Wynn Seems to Threaten Reporter 6:50 Steve Wynn Creates the Modern Day Casino 6:58 Steve Wynn Finances the First Casino with Wall Street Money 7:30 Steve Wynn Mirage Grand Opening Risks 7:40 Mirage Grand Opening Day Footage 7:55 How Mirage Grand Opening Changed Vegas Hotels 8:05 Steve Wynn Builds Treasure Island 8:15 Steve Wynn Brings Cirque du Soleil Mystere to Vegas 8:28 Mirage Volcano and Treasure Island Pirate Show Changes Vegas 9:00 Steve Wynn Cocktail Waitress "Fat" Lawsuit 9:30 Bellagio Grand Opening Day Footage 9:55 Steve Wynn Sells Mirage Resorts to MGM Grand 10:00 Steve Wynn Purchases Desert Inn and becomes a Billionare 10:15 Wynn Hotel Grand Opening 10:34 Steven Wynn Builds Encore Las Vegas 10:40 Encore Las Vegas Grand Opening TV Commercial 11:00 Steve and Elaine Wynn Divorce Again 11:15 Steve Wynn History of Lawsuits 11:30 Wall Street Journal Accusatios 12:50 Steve Wynn Resigns from Wynn Resorts 12:55 Final Thoughts on Wynn
    14:05
    The Rise and Fall of Steve Wynn: Uncovering the Tragic Story [DOCUMENTARY]
    In this documentary, we'll explore the story of Steve Wynn, one of the most controversial ...
    published: 20 Jan 2023
    Play in Full Screen
    6:06
    From Billionaire Mogul to Scandal: The Steve Wynn Story
    Welcome back to Details in Luxury, we are going to talk about the Steve Wynn history. Ste...
    published: 13 Feb 2023
    Play in Full Screen
    7:05
    Steve Wynn & The Miracle 3 - Amphetamine (Live on KEXP)
    Steve Wynn & The Miracle 3 perform "Amphetamine" live from Mellow Johnny's Bike Shop in Au...
    published: 30 Aug 2011
    Play in Full Screen
    24:01
    Part I: Steve Wynn discusses his journey into the Las Vegas hotel and casino business
    Part I: Wynn Resorts owner Steve Wynn discusses his life, his dad's death, being broke, an...
    published: 17 Jul 2014
    Play in Full Screen
    2:24
    Steve Wynn agrees to $10 million fine, end to any ties with Nevada gaming industry
    Steve Wynn has agreed to pay a $10 million fine to settle a Nevada Gaming Control Board co...
    published: 20 Jul 2023
    Play in Full Screen
    10:06
    This $3 million Ferrari flip cost Steve Wynn his dealership
    Rich & Gloss-It detailed Ed's SLR - https://youtu.be/j7FqYNgKS2A @GlossIt working on this ...
    published: 20 Apr 2021
    Play in Full Screen
    24:50
    Titans Of Industry with Nelson Peltz and Steve Wynn | FII Priority | Miami | #FIIPriority
    "Titans of Industry," an unexpected conversation between Nelson Peltz and Steve Wynn, took...
    published: 31 Mar 2023
    Play in Full Screen
    3:41
    Inside Steve Wynn's New $4.2 Billion Macau Resort
    Aug. 17 -- Steve Wynn, chief executive officer, executive director and founder of Wynn Mac...
    published: 17 Aug 2016
    Play in Full Screen
    30:26
    Part II: Steve Wynn discusses the future of his business
    Steve Wynn, founder of Wynn Resorts, in the second part of his interview, discusses furt...
    published: 25 Jul 2014
    Play in Full Screen
    2:19
    Steve Wynn Message to Employees
    The employees at MVHS receive a heartfelt message from Steve Wynn.
    published: 14 Jun 2021
    Play in Full Screen

    Steve Wynn

    Stephen Alan "Steve" Wynn ( Weinberg; born January 27, 1942) is an American businessman and art collector. He is well known for his involvement in the American luxury casino and hotel industry. Early in his career he oversaw the construction and operation of several historically notable Las Vegas and Atlantic City hotels, including the Golden Nugget, the Golden Nugget Atlantic City, The Mirage, Treasure Island, the Bellagio, and Beau Rivage in Mississippi, and he played a pivotal role in the resurgence and expansion of the Las Vegas Strip in the 1990s. In 2000, Wynn sold his company Mirage Resorts to MGM Grand, resulting in the formation of MGM Mirage. Wynn afterwards took his company Wynn Resorts public in an initial public offering, and he remains Wynn Resorts' CEO and Chairman of the Board.

    Through Wynn Resorts he has overseen the construction and development of several luxury resorts, opening Wynn Las Vegas in 2005, Wynn Macau in 2006, Encore Las Vegas in 2008, and Encore at Wynn Macau in 2010. Current projects include Wynn Palace in China and Wynn Everett near Boston. In 2006 Wynn was inducted into the American Gaming Association Hall of Fame. As of September 2015, Wynn's net worth was estimated by Forbes at $2.4 billion, making him the 279th wealthiest American. Steve Wynn is an avid collector of fine art, often exhibiting pieces by artists such as Picasso and Claude Monet in Wynn Resorts' hotels.

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