Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

wrongcoast

macrumors newbie
Original poster
Oct 29, 2009
16
0
LA
I know there are always complaints about Flash but here's another. Every time I upgrade (going back before Yosemite) afterwards my fans take off and the only way to fix it is to remove Flash. Anyone else have the same problem and any idea why and how to fix it for good?
Thanks.
 

Zazoh

macrumors 68000
Jan 4, 2009
1,516
1,121
San Antonio, Texas
My favorite way to fix this ...
Screen Shot 2016-12-05 at 2.45.50 PM.png

I don't have installed. Its on the way out and websites have had years to adopt to HTML5.
 
  • Like
Reactions: Rok73 and zaxxon72

Weaselboy

Moderator
Staff member
Jan 23, 2005
34,463
16,163
California
I know there are always complaints about Flash but here's another. Every time I upgrade (going back before Yosemite) afterwards my fans take off and the only way to fix it is to remove Flash. Anyone else have the same problem and any idea why and how to fix it for good?
Thanks.
What I have done is uninstall Flash then install Chrome, which has flash included. Then when I hit a site that requires flash, I jump over into Chrome. This happens less and less often.

You paste this into Script Editor and save as an Application for a quick way to open the existing Safari page in a new Chrome page.

Code:
if application "Safari" is running then
    tell application "Safari"
        try
            set currentSafariURL to URL of current tab of front window
            set pageName to name of current tab of front window
        on error
            return "There are no pages open in Safari at the moment"
        end try
    end tell
    
    tell application "Google Chrome"
        activate
        
        # If Chrome has no windows open make a new window
        if (count of windows) is 0 then make new window
        set currentChromeURL to URL of active tab of front window
        
        # Don't do anything if the page is already open in Chrome
        if currentChromeURL is not currentSafariURL then
            
            # If the active tab is in use make a new tab
            if currentChromeURL is not "chrome://newtab/" then
                make new tab at end of tabs of front window
            end if
            
            # Open the URL from Safari
            set URL of active tab of front window to currentSafariURL
            
        else
            return "The current Safari tab is already open in Chrome"
        end if
    end tell
    
    # Enable the following line to post notifications after sending URLs to Chrome
    --return "Opening '" & pageName & "' in Chrome"
else
    return "Safari is not open at the moment"
end if
 
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.