Jump to content

rts

Members
  • Posts

    4
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

rts's Achievements

Newbie

Newbie (1/14)

  1. Hey, that trick worked like a charm! Nice one HHM! Goes to show that "noobs" aren't all dumb... haha! Confirmed and Seconded. :)
  2. The new code: if (window.top != window && browser.firefox() && version < 9) { div = "needsFlash9Upgrade"; means you need majorVersion 9 or higher. But it looks like the real kicker is the window.top != window which (someone who knows for sure) means the iframe is what is "breaking" the Jar (and why the workaround works). In other words, if you're using PJ (which sticks the player in an iframe) and Flash version is less than 9, you'll get the needsFlash9Upgrade div displayed instead of the pandora player.
  3. // grab local version of browser object because jquery will wipe out $ browser = $.browser; checkBrowser = true; (function() { var div; var version = deconcept.SWFObjectUtil.getPlayerVersion().major; if (window.top != window &amp;&amp; browser.firefox() &amp;&amp; version &lt; 9) { div = "needsFlash9Upgrade"; } else if (checkBrowser &amp;&amp; browser.win() &amp;&amp; browser.msie() &amp;&amp; browser.version.number() &lt; 5.5) { div = "needsIEUpgrade"; } else if (version == 0 &amp;&amp; window.ActiveXObject &amp;&amp; !hasActiveX()) { div = "needsActiveX"; } else if (version == 0) { div = "needsFlashInstall"; } else if (version &lt; MINIMUM_FLASH_VERSION) { div = "needsFlashUpgrade"; } else if (location.search &amp;&amp; location.search.match(/error=(w+)/)) { div = RegExp.$1; } else { div = null; } if (div == null) { // flash is installed. embed away. So if you're using Firefox and Flash < v9 it'll display the div rather than embedding the flash. Someone with better javascript skills than me should be able to override that methinks. Perhaps a little greasemonkey action?
  4. Mac users should grab this Firefox extension: http://www.sephiroth.it/weblog/archives/20...her_for_osx.php and make sure to select flash v.8.0 r27. Then it should work fine as long as you use the pandora.sh OR set your $TEMP manually. That's the real key - if $TEMP is not set, it's a bust. Flash v.9 seems to either disable the plugin's temporary storage of the mp3 or hides it somewhere other than the default ~/Library/Caches/TemporaryItems...
×
×
  • Create New...