Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×
Software

Microsoft Edge Will Start Automatically Pausing Less Important Flash Content (venturebeat.com) 79

An anonymous reader cites an article on VentureBeat: Microsoft Edge will "intelligently auto-pause" Flash content that is "not central to the webpage." If you want to try this out now, you can take the feature for a spin with Windows 10 build 14316, which was recently made available to Windows Insiders. Peripheral content like animations or advertisements built with Flash will be displayed in a paused state unless the user explicitly clicks to play that content. This significantly reduces power consumption and improves performance while preserving the full fidelity of the page. Flash content that is central to the page, like video and games, will not be paused. Microsoft wrote in a blog post, "We encourage the web community to continue the transition away from Flash and towards open web standards. We are planning for and look forward to a future where Flash is no longer necessary as a default experience in Microsoft Edge."
This discussion has been archived. No new comments can be posted.

Microsoft Edge Will Start Automatically Pausing Less Important Flash Content

Comments Filter:
  • by Billly Gates ( 198444 ) on Friday April 08, 2016 @10:04AM (#51867441) Journal

    IE (yes you did not misread that) doesn't have the problem that edge has. Edge reminds of IE 6 or IE 7 when you go to a site like youtube. Constant refreezing.

    I unpinned edge and pinned IE 11 on my windows 10 system for legacy sites still and Chrome for everything else. IE 11 is ok (not great), but MS in the past 4 years finally made a browser that didn't crash .... until Edge came out.

    • by Anonymous Coward

      You need to try Servo [servo.org]. It's the next-generation browser engine from Mozilla and it's fantastic. It's written in Rust so it's beyond secure, because Rust is the most secure programming language ever created. Rust is also native compiled like C so it's fast. Some people have even found Rust to be faster than C! Rust is the next-generation programming language from Mozilla in case you aren't aware. Rust and Servo are the future. They're taking the current state of the art and bumping it up not just one notch,

      • Re: (Score:3, Funny)

        by Anonymous Coward

        Holy crap, six notches! That's roughly four notches more then an average up-bumping.
        Wow, im so excited over the amount of next-generationness it contains.

      • by WarJolt ( 990309 )

        Rust is also native compiled like C so it's fast. Some people have even found Rust to be faster than C!

        Faster because of better code. Programmers are willing to adopt a new language like Rust are probably great coders.

        I know so many c++ programmers who don't effectively use the stl to speed up their code.

        Also runtime languages can be faster than native code if you have the right optimizer. They can keep track of hot code blocks and optimize the hottest sections at runtime. Unfortunately statically compiled languages can't adapt dynamically to execution.

        Most people's subjective analysis of runtime languages i

        • If you are talking about old traditional way of compiling language, then you are correct -- well coded gives better speed. However, nowadays, you don't know what your code will look like after it is compiled due to compiler optimization. As long as algorithm is correct, different coding style may not have much impact on the outcome speed (but does not mean it will be equal to or faster than a well coded ones).
    • by Flavianoep ( 1404029 ) on Friday April 08, 2016 @10:36AM (#51867659)
      Microsoft working with Linux, Firefox sucking, "IE is a real browser", the president of the US in Cuba... I get these days the SCO suit against Linux is the only thing holding the world together and preventing the hell from freezing over.
      • by c ( 8461 )

        I get these days the SCO suit against Linux is the only thing holding the world together and preventing the hell from freezing over.

        I wouldn't worry... even if the SCO suit dies, we'll still have Microsoft's mobile *giggle* strategy *snort*.

        • even if the SCO suit dies, we'll still have Microsoft's mobile *giggle* strategy *snort*.

          Lol, you mean the "Wait for us- we're the leader!" strategy, or the "That looks good, let's make a shitty copy of it" strategy?

          • by c ( 8461 )

            even if the SCO suit dies, we'll still have Microsoft's mobile *giggle* strategy *snort*.

            Lol, you mean the "Wait for us- we're the leader!" strategy, or the "That looks good, let's make a shitty copy of it" strategy?

            To be honest, I think it's well into the "fuck it, we've got money, let's do both of them!" stage.

  • by Anonymous Coward

    Pay us and we'll prioritize your Flash content as more important and central to the page. If you don't pay us and get your flash apps signed by us, they'll automatically be paused.

    It's a clever way for Microsoft to get a cut of advertising and website revenue, under the guise of being good for end users.

  • ... to finally catch up to what I've done in Chrome for years now ...

  • by Anonymous Coward

    Wait until Flash dies and people use JavaScript to animate HTML5 tags and such. How are you going to selectively block that?

    • by gmack ( 197796 ) <gmack@noSpAM.innerfire.net> on Friday April 08, 2016 @10:09AM (#51867477) Homepage Journal

      Wait until Flash dies and people use JavaScript to animate HTML5 tags and such. How are you going to selectively block that?

      Not that hard, at least in Chrome I use Disable HTML5 Autoplay [github.com] plugin.
       

      • That only pauses video and audio tags, it doesn't pause things like canvases (or misc DOM elements) being animated by JavaScript. JavaScript has one big flat namespace for every script in a page, so it's difficult to identify the bits of the script relating to an ad if they're not in an iframe (and advertisers don't want to put them in iframes, because then they're trivial to filter out).
        • by gstoddart ( 321705 ) on Friday April 08, 2016 @10:31AM (#51867627) Homepage

          Which is why Javascript also needs to be much more tightly controlled than simply running any damned thing on the page.

          Your average web page has 10-20 3rd parties, all of which want to run javascript, flash, set cookies, and do a host of other crap. Advertising has pretty much fucked up the permission model of the internet by saying "you need to let every asshole run anything they want because you have no idea if it's part of the functionality of the site or an ad, but we just assume you'll let it all run".

          Yeah, sorry, no. Flash is straight up disabled or uninstalled. I'll selectively whitelist sites who I trust, or at least temporarily do so. But almost no 3rd party scripts or content are EVER allowed ... because I don't want ads, and because I don't trust random web pages to run scripts. Because they're not trustworthy.

          If Javascript has only one big namespace, then maybe that needs to be fixed? Security holes like cross-site scripting and other stuff are enabled by web sites insisting they be able to write the most presumptively insecure code and then let it be the user's problem.

          This stuff needs to be sandboxed, treated like it's potentially hostile, and locked down from being able to do anything to the host computer. Instead what we have is stuff running which we have no idea what it is, which may or may not be malicious, and which can actively impact the host machine.

          It's time we stopped treating web pages like they're trusted by default, because so much of the web these days simply can't be trusted.

          Stop letting the advertisers tell us how the internet should work, and stop letting them be the ones who cause the damned thing to be insecure in the first place.

          • This stuff needs to be sandboxed, treated like it's potentially hostile, and locked down from being able to do anything to the host computer. Instead what we have is stuff running which we have no idea what it is, which may or may not be malicious, and which can actively impact the host machine.

            That is the intent, and that is how it's meant to be implemented. As properly construed, javascript running in the context of a webpage should never have access to do anything besides modify the current page (and by extension have the page render HTML, including canvas/audio/video now that they are part of HTML5), grab user input (if topmost) and set cookies per the user's cookie policy. To the extent that javascript can do more, or even pwn your computer, that's contrary to the design intent and is a bug i

      • Once upon a time, plugins were used to add functionality to a program, not remove it.

    • By disabling JavaScript.

      • So your pages go from annoying to completely non-functional. Sounds like a big win!

        • Try it. You'd be surprised just how many pages work great without JS.

          • by i.kazmi ( 977642 )

            Anything with ajax is going to break and since most web-apps use ajax (for everything from updating content to loading new content), you would not be able to use almost any web apps. You should technically be able to view most websites (albeit with slightly reduced functionality) with JS disabled but even that is not guaranteed and with the way things are going, I doubt there will be any maintained websites functioning without JS in a couple years time. You can hate it all you want but the writing is on the

      • By disabling JavaScript.

        I'd love that, but sadly a lot of sites won't work worth a crap (or at all) without javascript. That's not the way it should be, but it's the way it is.

        Most of my sites run fine with javascript turned off, but a few do rely heavily on jQuery, and there's no good way around that. If you want some useful AJAX response or some nice, clean effects coupled with functionality, sometimes javascript is the way to go.

  • by Anonymous Coward

    I haven't installed flash for years, and I don't believe I have missed out on anything.

    • I'm going back to Konqueror. Flash didn't work there and that was the problem that had me leave it. It comes with builtin ad block, gestures so I don't need any plugin. It even gives you an option to stop animated GIFs.
    • You missed a whole lots of 0day exploits. Your life must be incredibly boring.

  • by ohnocitizen ( 1951674 ) on Friday April 08, 2016 @10:12AM (#51867505)
    All browsers should have the ability to pause autoplay content (videos with sound especially) by default. This would be a game changer. Chrome has this: An article with an ironic autoplay advertisement. [pcworld.com]
    • Sometimes I forget how much levels of technology literacy makes our experiences of the web differ.

      I get that there are still people out there who don't run an adblock-like plugin for their browser. Some people even don't do it on purpose.

      I do really wonder at how many people haven't already learned to just set their flash plugin to "Ask to activate" status, so they only see flash content on a page if they actively want to. Without that, I don't see how you can browse the web on a default version of Windows

      • I run uBlock and Ghostery (which don't catch everything), and just didn't even think to check for it as an option. It should be in the browser by default. Even technically literate users won't remember to check every setting.
    • Comment removed based on user account deletion
    • by sycodon ( 149926 )

      If they really want to be useful, have all the page content load before the ads.

      • This is bad too, since when the ads load they can push content on the page. You get accidental clicks this way (though perhaps on some sites this is strategic).
  • If you were a bit more a-with-a-circumflexoeintelligent you'd know how to use the preview button.

  • Comment removed based on user account deletion
    • The tablet I currently use has more power than the ~100 watt, 4 (physical) core i7 processor in my 5 year old tower. It's not the hardware, it's the proliferation of ads with video content and web site developers who think that a 5-8MB download on a single web page is "fast".

  • Redmond, start your photocopiers.

  • by Opportunist ( 166417 ) on Friday April 08, 2016 @10:55AM (#51867799)

    I have that hunch that Edge will rather pause the YouTube videos than the noisy ads.

  • I stopped even installing the Flash plugin a while back - it's following in the footsteps of the Java browser plugin.

    I keep Chrome around just in case there's some Flash content I actually need to access, but that rarely happens. Google probably thinks I hardly ever browse the web, and that I like Flash-heavy sites when I do.

  • I can't stand autoplay *anything* in my browsers.

    Thankfully, due to judicious use of adblockers and various plugins, every flash player, HTML5 Video, GIF etc... needs me to actually click on it to make it start.

    It's my browser, and my machine, you don't start playing without my approval!

    Any web page I find where I can't turn off the autoplay anything, I simply never visit again.

  • I am using windows 10 on a laptop, and after 3 or 4 days I decided I absolutely HATED EDGE, it is cumbersome, stupidly organized, performs poorly and freezes up often. Calling it Edge is very stupid, as the only edge it seems to give is to any other browser and Apple or Linux.

  • by JustAnotherOldGuy ( 4145623 ) on Friday April 08, 2016 @03:17PM (#51870101) Journal

    And by " less important" they mean "content for which the owners haven't paid us not to interfere with".

  • So Edge will stop playing all these annoying Flash ads? I have to see it to believe it.

UNIX is hot. It's more than hot. It's steaming. It's quicksilver lightning with a laserbeam kicker. -- Michael Jay Tucker

Working...