SpryTabbedPanel: Flash player in tabs do not play video streams

Note: I am a complete noob (no experience with Javascript and rudimentary experience with htlm/css). Please be patient (I hope that this is the correct forum for this) and know that I am appreciative of any help or solution that anyone can provide.
Using Dreamweaver CS4 on Mac OS 10.5.8
We recently switched all of our streaming servers from Windows Media (good riddance) to Flash Media Server 3.5 (now getting awesome H.264 quality in comparison).
I was asked to re-design this webpage with the aim of re-organizing the content so that it is more accessible:
http://www.librarymedia.net/VideoGallery.html
We used Adobe's test page for our first page:
http://www.librarymedia.net/flash/videoplayer.html?source=rtmp://63.116.232.4/live/livestr eam&type=live&idx=10
This was meant as a temporary page to get us started, and as you can see, it needs work but at least it works.
I've been working the the final version of this page. My boss wants a tabbed web page with links to our video streams (tab for each category of streams).
This is what I have so far:
http://www.librarymedia.net/Flash2/videoplayer2.html?source=rtmp://63.116.232.4/live/lives tream&type=live&idx=10
I realize that I had several options before building this. One, I could have made a separate page for each tab and linked them with a tab menu. In hindsight, this might have been a better option since I could have just copied the working page that we already have for each tab. Or I could have done what I have tried to do: to use Dreamweaver's SpryTabbedPanel to make the tabs and insert a Flash player with links into each tab.
The problem:
1. The streams do not play. The player says "initializing" and then "please enter a stream name and play". Please note that I used SpryURLutils to get each link to open in the appropriate tab.
2. After reading about the benefits of external vs. inline javascript, I took all of the inline javascript that was contained in Adobe's sample page and placed it in an external file. I tried placing the javascript back into the source code (inline), but this did not fix the problem. I guess there is a Javascript problem or I need extra Javascript code to get this to work.  The javascript code is below. Use view source in your web browser to see source code. Please let me know if I need to provide more information.
Thanks.
// (C) Copyright 2008 Adobe Systems Incorporated. All Rights Reserved.
// NOTICE:  Adobe permits you to use, modify, and distribute this file in accordance with the terms of the Adobe license agreement accompanying it. 
// If you have received this file from a source other than Adobe, then your use, modification, or distribution of it requires the prior
// written permission of Adobe.
// THIS CODE AND INFORMATION IS PROVIDED "AS-IS" WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
// PARTICULAR PURPOSE.
// THIS CODE IS NOT SUPPORTED BY Adobe Systems Incorporated.
// Version check based upon the values defined in globals
                                            var hasRequestedVersion = DetectFlashVer(10, 0, 0);
                                            if(!hasRequestedVersion)
                                                var div = document.getElementById("flashcontent");
                                                div.innerHTML = '<a href="http://www.adobe.com/go/getflashplayer/" style="color:black"><img src="images/ERROR_getFlashPlayer.gif" width="641" height="377" /></a>';
                                            else{
                                                    AC_FL_RunContent(
                                                        "src", "swfs/videoPlayer",
                                                        "width", "640",
                                                        "height", "377",
                                                        "id", "videoPlayer",
                                                        "quality", "high",
                                                        "bgcolor", "#000000",
                                                        "name", "videoPlayer",
                                                        "allowfullscreen","true",
                                                        "type", "application/x-shockwave-flash",
                                                        "pluginspage", "http://www.adobe.com/go/getflashplayer",
                                                        "flashvars", flashVars
                                      // -->  
// Javascript in original page
function MM_preloadImages() { //v3.0
  var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
    var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
    if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
function changeImages() {
    if (document.images && (preloadFlag == true)) {
        for (var i=0; i<changeImages.arguments.length; i+=2) {
            document [changeImages.arguments[i]].src = changeImages.arguments[i+1];
var preloadFlag = false;
function preloadImages() {
    if (document.images) {
        navi_01_over = newImage("images/button_dynamic_up.gif");
        navi_02_over = newImage("images/button_samples_up.gif");
        navi_03_over = newImage("images/button_interactive.gif");
        preloadFlag = true;
function changetab(obj, obj2, obj3, left1, left2, left3, nav1, nav2, nav3){
    document.getElementById(obj).style.display = 'block';
    document.getElementById(obj2).style.display = 'none';
    document.getElementById(obj3).style.display = 'none';
    document.getElementById(left1).style.display = 'block';
    document.getElementById(left2).style.display = 'none';
    document.getElementById(left3).style.display = 'none';
    document.getElementById(nav1).src = "images/" + nav1 + "_up.gif";
    document.getElementById(nav2).src = "images/" + nav2 + "_down.gif";
    document.getElementById(nav3).src = "images/" + nav3 + "_down.gif";
function tabout(obj, nav){
    if (document.getElementById(obj).style.display == 'block'){
        document.getElementById(nav).src = "images/" + nav + "_up.gif";
    else{
        document.getElementById(nav).src = "images/" + nav + "_down.gif";
function tabover(obj){
    document.getElementById(obj).src = "images/" + obj + "_up.gif";
// Functionality
    <script language="javascript">
        var queryParameters = new Array();
        var flashVars = "";
        var tag = "";
        var url = "";
        window.onload = function ()
            for(var i=1 ; i<=10;i++)
                var ids = String("sel"+i.toString());
                document.getElementById( ids ).style.visibility = "hidden";
                document.getElementById( ids ).className = "style76";
            // mark the entry for that index
            if(queryParameters['idx'] != "")
                document.getElementById("td" + queryParameters['idx'] ).className = "style75";
                document.getElementById("sel" + queryParameters['idx'] ).style.visibility = "visible";
        function initialise()
            function getUrlParam( name )
                  name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
                  var regexS = "[\\?&]"+name+"=([^&#]*)";
                  var regex = new RegExp( regexS );
                  var results = regex.exec( window.location.href );
                  if( results == null )
                        return "";
                  else
                        return unescape( results[1] );
            queryParameters['source'] = getUrlParam('source');
            queryParameters['type'] = getUrlParam('type');
            queryParameters['idx'] = getUrlParam('idx');
               flashVars += "&videoWidth=";
            flashVars += 0;
            flashVars += "&videoHeight=";
            flashVars += 0;
            flashVars += "&dsControl=";
            flashVars += unescape("manual");
            flashVars += "&dsSensitivity=";
            flashVars += 100;
            flashVars += "&serverURL=";
            flashVars += queryParameters['source'];
            flashVars += "&DS_Status=";
            flashVars += "true";
            flashVars += "&streamType=";
            flashVars += queryParameters['type'];
            flashVars += "&autoStart=";
            flashVars += unescape("true");
            tag = "&lt;object width='640' height='377' id='videoPlayer' name='videoPlayer' type='application/x-shockwave-flash' classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' &gt;&lt;param name='movie' value='swfs/videoPlayer.swf' /&gt; &lt;param name='quality' value='high' /&gt; &lt;param name='bgcolor' value='#000000' /&gt; &lt;param name='allowfullscreen' value='true' /&gt; &lt;param name='flashvars' value= '"+                   
            flashVars+"'/&gt;&lt;embed src='swfs/videoPlayer.swf' width='640' height='377' id='videoPlayer' quality='high' bgcolor='#000000' name='videoPlayer' allowfullscreen='true' pluginspage='http://www.adobe.com/go/getflashplayer'   flashvars='"+ flashVars +"' type='application/x-shockwave-flash'&gt; &lt;/embed&gt;&lt;/object&gt;";
        function playStream()
            var url = "source=" + document.getElementById('inputURL').value;
            var type;
            if(document.getElementById('vodCheckbox').checked==true)
                type="vod";
            else
                type="live";
            url += ("&type=" + type);
            document.getElementById('playBtn').href="videoplayer.html?" + url;
        function checkbox(type)
            if(type=="vod")
                if(document.getElementById('liveCheckbox').checked==true)
                    document.getElementById('liveCheckbox').checked=false;
            if(type=="live")
                if(document.getElementById('vodCheckbox').checked==true)
                    document.getElementById('vodCheckbox').checked=false;
        initialise();

Should I have posted this in the Spry forum instead? My apologies if this is the wrong forum.
>There is a sample application of the code included with the zip file  which shows how to implement it.
The sample doesn't really tell me what I need to do to the code to make it work (I do not know javascript), and unfortunately, I have not found any helpful instructions/documentation online. You've given me the answer, I just don't know enough to implement it. This is what I've done:
1. Placed the FAVideo.js file in my site folder and linked it to the page: <script src="FAVideo.js" type="text/javascript"></script>
2. I added the following code (taken from the SimpleDemo.html example inside the FAVideo folder). My comments in bold. Page at
http://www.librarymedia.net/Flash2/videoplayer2.html?source=rtmp://63.116.232.6/vod/mp4:Ol ympics2010_640x480.mov
         <! To the <body> section:-->
<body onLoad="">
    <div id="divOne"></div>
<!-Do I have to place the entire page within the "divOne" div (or just the section containing the tabs) in order for the javascript to work?-->
         <!-In the <head> section: -->
   <script type="text/javascript">
        playerOne = new FAVideo("divOne", "TabbedPanels1", "demo_video.flv",0,0,{ autoLoad:true, autoPlay:true });
    </script>
<!- I noticed that the body code added a div id called "divOne", so I added the "TabbedPanels1" div id to the above code thinking that this would apply the javascript code to all of the tabs. Dreamweaver adds <div id="TabbedPanels1" class="TabbedPanels"> to the page when you insert the tabbed menu, so I'm thinking the javascript has to point to either one of those for it to work. The "demo_video.flv",0,0 code is probably unneccesary, right? As you can see, I'm completely clueless. -->
    <script>
        playerOne.addEventListener("playheadUpdate",this,myHandler);
        playerOne.removeEventListener("playheadUpdate",this,myHandler);
        function myHandler() {
            //alert("eh");
    </script>
</body>
Once again, thanks for your help.

Similar Messages

  • Even when i have updated version of adobe flash player, some sites do not play video

    Hi,
    Even when i have updated version of adobe flash player and active x from adobe.com, some sites do not play the video. A request box, install the plug in comes. When i click it, it again tries to install the same version of adobe, which i have already downloaded. it is only for some sites.
    May be it is because, it is site problem? How to overcome it

    ActiveX is part of the Windows operating system. Plus the ActiveX version of Adobe Flash is for Internet Explorer. Other browsers need their own version of Flash' Firefox needs the Plugin version of Flash.
    If you go to the Adobe website to download Flash while using Firefox, Adobe will provide the correct version of Flash automatically. Just make sure you de-select any other programs that Adobe may want to stick you with before you actually download Flash. Then close Firefox and run the Adobe Flash installer.

  • Adobe Flash Player 11 plugin will not show video's or  show chat rooms

    Adobe Flash Player 11 plugin will not show video's or  show chat rooms

     the operating system is Windows Vista " Home Basic" Service Pack 2  (2007)
    web browser is Yahoo Mozilla Firefox
    shows a blank screen...
    Thanks for any help u can give me ...Jake

  • Flash player 11.3.300.257 plays video too fast

    Hi
    I have just updated to the lastest version of flashplayer 11.3.300.257.  Now, all vidoes in youtube and bbc iplayer etc that use flashplayer run very fast and without sound (just like fast forwarding x4).
    I am on Windows Vista Business Edition (all updates included)
    Browser is IE9.
    I have tried a clean reinstall of flash player a number of times but same issue.
    I have cleared caches and deleted all history etc via the advanced section of the software.
    I have also removed the hardware acceleration.  Nothing has helped.
    However, if i run in "safe mode" it seems to run at the correct speed.  I have uninstalled all recent software updates (such as skype) but still the issue remains.  Is it likely to be a conflict issue?
    I have tried to install a previous version of flashplayer from the archives page but get an error message 1722.
    Can anyone help?
    Nigel

    For my reference, here's the bug:
    https://bugbase.adobe.com/index.cfm?event=bug&id=3217331 - Flash player 11.3.300.257 plays video too fast
    In order to get traction on this, they're going to need to be able to reproduce it.
    It would be great if you could do two things:
    - Provide direct links to a couple videos that reproduce this problem. 
      If they're on different sites, and based in the US, even better.  (Geographic restrictions make it hard to troubleshoot.  We can VPN, but that can mask/introduce network and timing problems.)
    - Provide the output of dxdiag.exe
      Go to Start > Run > and type "debugdiag" no qoutes, then hit [Enter]
    Save the output and attach it to the bug above.

  • Flash player 11.8 does not play YouTube video Windows 7 Enterprise

    Since I spent days troubleshooting this, I thought I might save others the same.
    Environment:
    windows 7 enterprise 32 bit (System meets requirements for flash player)
    Workstation part of an AD Domain
    Occurs on all workstations
    Using a proxy to access the internet (this is not the problem as chrome works fine and HTML5 works fine)
    Flash Player 11.8
    Browsers: IE 8, IE9, IE10, FireFox, Chrome
    Chrome plays videos fine
    HTML5 Player plays fine in all browsers
    IE8, 9, and 10 do not play videos; it starts to play then loops then dies with youtube error message
    FireFox does not play youtube videos same as IE
    I tried all solutions found on the internet, adjusting browser settings or uninstalling and reinstalling flash none of it worked.
    solution down grade flash player

    "Chrome plays videos fine
    HTML5 Player plays fine in all browsers"
    Chrome has its own embedded Flash Player - the installed version DOESN'T affect it.
    HTML5 DOESN'T use Flash (It's MP4 or webm)
    Download the Flash Player uninstaller. Flash Player uninstaller
    Download the Adobe Flash Player installer directly by clicking the following links.
    Flash Player for ActiveX (Internet Explorer)
    Flash Player Plug-in (All other browsers)
    SAVE all files.
    On each workstation:
    Run the uninstaller to remove both ActiveX and regular Flash Player.
    Reboot and then run the installers to replace both plugins.
    Check to be sure FP is enabled for IE: http://forums.adobe.com/thread/885448
    Disable ActiveX filtering: http://forums.adobe.com/thread/867968

  • After trying all procedures I can find in Flash Player Help I still cannot play videos on Firefox, I

    I am running Windows 7 64-bit and have tried every procedure I can find, and I still cannot get video on any browser.

    Do you mean you can not play video but you can play game or other Flash contents?
    What about version info page which is extremely simple Flash contents?
    Hitomi

  • Flash Player requires "Kick start" to play video contents

    Am presently Flash Player 11.5.502.146 on Windows 7 64 Bit with Firefox 18.0.1.
    I have been having a rather odd occurence.  When I go to youtube.com and select a video, all I get is a black box with no controls and nothing happens. (This also happens on other sites such as CBSSports.com)  If I right click on said black box, it just says "About Adobe Flash Player 11.5.502.146" which obviously takes me to the Aodobe websight.
    Here is the strange part:  If I start a video on Facebook, it runs, even if I opt to open it up on youtube.  Then if I select another video or close and reopen the browser, we are back to the black box.  It is almost as if the other website "kick start" the player. 
    Another odd thing I noticed is that when working with the adobe sites troubleshooting tools (like detecting versions etc) when ever there was supposed to be a box generated from the Adobe sight with some controls or options, it would never appear.  I also tried all of the solutions suggested here:
    http://helpx.adobe.com/flash-player/kb/flash-player-games-video-or.html#main_5__Delete_all _Flash_Player_browsing_data  to no avail.
    I have installed 11.6 beta as well as Adobe Shockwave, tried switching to IE9 as well as Chrome with no resolution.

    Not sure it is the "Total Defense" Program as I tried to repeat my earlier results (too bad I did not have the forsight to write down which processes I was stopping) and started with all CA/Total Defencse processes I could locate, logging off and into my son's profile(as this is logging off seemed to be a factor in my earlier success) but have been unable to isolate what service/process is the culprit.  I also tried uninstalling Itunes and all the other stuff that came with it (such as Bonjour and Apple Mobile EDevice support) as this was installed around the time this issue started but again no luck.  Just this morning I had the task manager open and went to youtube and it showed 2 flashplayer related processes were running but still got the "movie not loaded" message with the right click.
    I am going to install an app called Process explorer which from what I gather, gives more details than taks manager and see if that helps in my endevour.
    Thanks again for your time!

  • Flash Player 11 causes all attempts at video streaming to crash my computer

    Hi
    I too have been having problems since installing Flash Player 11.  I uninstalled it and hoped to reinstall 10.3.  All attempts at this brought me back to Flash Player 11.  I re-installed again - this time with my Anti-virus program off.  Now animations will work, but youTube, internet games and internet videos do not.
    I have a PC with Windows XP, Internet Explorer 8 and the anti virus and firewall are supplied by my internet provider - Rogers-Yahoo.
    Can anyone help me with this problem?  I'd greatly appreciate it.  Thanks.

    Hi libflashplayer.so,
    Thanks for answering.  The version of Adobe Flash Player I have is 11.0.1.152  .
    Regarding You Tube...I can bring up the site or type in what I'm looking for and a page will come up  - like this page for example: http://http://www.youtube.com/results?search_query=andrea+bocelli+time+to+say+goodbye&aq=1 &oq=Andrea+Bo  . ( I cannot make screenshots. When I push Alt + PrtScn SysRq, nothing happens.
    The problem occurs after I choose a video, like Anreas Bocelli singing with Sarah Brightman.  The little iconic TV Screen will appear as if the video is going to load (Ie. a little black screen with the transparent start arrow.  Then my entire computer screen goes black.  There is no error message given.  A note comes onto the screen in white letters saying something like "Entering Auto  Mode" or something like that.
    If I go to the website for ctv : http://shows.ctv.ca/ and then scroll down & click to watch an episode from Law & Order: SVU here://http://shows.ctv.ca/LawAndOrderSVU.aspx  , the Law & Order SVU "TV Screen" comes up.  All I need to do is click the semi-transparent "Play" - but if I do that the computer crashes again and goes into the mode I explained above.   The computer just crashes when this happens.
    I WAS able to open & watch this ad that a friend sent.  Windows Media Player opened first & then this ad came on screen: 
    Hmmm. It won't let me paste it!  Its a wmx file I believe,
    Hope that gives you sufficient info for now.
    Sincerely,
    vocalchord

  • Problem in flash player 11.7.700.169 in video streaming

    We have an application written on flex that play video and when ther is cue point it  loads slide which is swf version As2.
    since we dowloaded the new player 11.7.700.169 when slide is change the audio stop and the stream continue but you can't here nothing.
    th eonly way to continue hear is to make full screen or refresh.
    Any workaround? any idea how that happened ? what cause it?

    https://bugbase.adobe.com/index.cfm?event=bug&id=3539635
    https://bugbase.adobe.com/index.cfm?event=bug&id=3541557
    https://bugbase.adobe.com/index.cfm?event=bug&id=3541576
    Please add your vote. We're dying because of this issue.

  • Have W7 64bit, Firefox 7.01 and Flash Player 11 but unable to play videos in BBC News channel although can use BBCi and Win Internet Explorer works with both.

    Have looked at Flash Settings but not able to find solution. Tried reverting to Firefox v.6.02 but this did not resolve the problem.

    Try version 4.01 works great with flash for me at least
    ftp://ftp.mozilla.org/pub/firefox/releases/4.0.1/win32/
    I have been having crash issues with v 6 and 7 of Firefox. Make sure you update to latest version of adobe as well

  • Is there any timeline soon that apple users will be able to open things that need adobe flash player?  I can not even play any games on Facebook, I can't open certain files, pictures sent to me or things like forms I news to see when I am not home

    I am so frustrated about Adobe Flash player. I can not play any Facebook games, open certain files and pictures and documents that I need to access because not only does this phone not do it but my old Palm Pre couldn't do it either. I have had so many times where I needed to access things either online or via email, or message that I can not even look at because of this. I have to wait until I for home or ask someone else to do it for me which is embarrassing. I rave about my iPhone 4S all the time because it is truly great except for this. When it use to happen with my Pal Pre I figures once I got my iPhone that it wouldn't happen anymore but I guess I was completely wrong. I have had this problem for years and always get a message saying that it's being worked on. Well a couple of years is a long time to work on it. I understand about contracts and stuff but why is it taking a company such as Apple to be able to get it for their products? I get a lot and always want to play the games on Facebook but I can't do it on most of them at least the ones I have tried. So I can not play against anyone at that time I have to wait until I get home or use someone else's computer or something. Please tell me that in the extremely near future that this will not be a problem anymore. PLEASE!!  I am sure I am not the only one out there who is having issues and if you do get it available please let there be an upload/upgrade for current phones and not just for future versions of Apple phones. That just wouldnt be very fair to all of your loyal customers and tell everyone to get your products because they are great and end up leaving this little problem out until they by your phone.  Especially if they just got the phone they have. You guys are awesome with technology I have faith that you can make this available to all Apple products old and new by uploads or upgrades. Thank you hopefully can give me some info about the status with this or if there wen is one. I would have thought that being a company such as you are that it would already be taking care of right from the beginning and not wait years to take care of somewhat that is very important ro have especially when there is so much our there using Adobe Flash now. I am not sure if this is just a blog with customers or if the company actually sees these posts but I am just hoping company or not that someone knows something about this. Thank you for your time and for reading this entire post if you have even gotten this far.

    Oh no... NOT THE 99-PAGER!!! Anything but THAT!!!

  • After uninstalling and downloading the latest Abobe Flash player, I can no lnger play youtube videos. I get the message "blocked plug-in". It works in Firefox, but not Safari.

    After uninstalling and downloading the latest Abobe Flash player, I can no lnger play youtube videos. I get the message "blocked plug-in". It works in Firefox, but not Safari?

    Frostbitblue,
    in Safari’s Preferences, select its Security tab, and make sure that its “Internet plug-ins: Allow Plug-ins” checkbox is checked.

  • I just bought an Ipad and find that it is not compatible with Adobe flash player which I need to play Bridge on line on BBO.  Is there a solution for this problem?

    I just bought an I pad abd find that it is compatible with Adobe Flash Player which I need to play bridge on BBO.  Is there a solution to this problem?

    No Flash for iPads, iPhones, or iPods
    Here's why there's is no Flash available for iDevices or other mobile devices. Adobe was unable to provide a product that was suitable to the needs of battery powered mobile devices used for Internet browsing. Existing Flash technology used too much memory, ate battery life, and was buggy. Simply put Flash did not work well on mobile devices.
    Apple's Steve Jobs led the escape from Flash dependency when Apple introduced the iPhone, and later introduced the iPad. There was a hue and cry over the omission. Time proved Jobs was right on target.
    So this is why there is no Flash for your iPhone or iPad or iPod nor for most SmartPhones. Flash has been abandoned by many sites in favor of supported technologies such as HTML5 or by providing their own custom app.
    Here is Steve Jobs official comment on his momentous decision to omit Flash from iDevices: Steve Jobs on Flash.
    Here is Adobe's later announcement to cease development of Flash for mobile devices: Adobe on Mobile Flash.
    Now, you are not necessarily out on a limb. There are some apps that can display some Flash, but don't count on there ability to display anything using Flash.
    Apps that can display some Flash from the Web:
    Puffin
    SkyFire
    Photon Flash
    Browse2Go
    iSwifter
    Also, note that many sites that use Flash provide their own app for accessing their material. So check with your favorite sites and find out if "there's an app for that."

  • Flash Player that auto appeared on my screen. Ever since I can not play video, and my system has become painfully slow. I have Mac OS Lion 10.7.5 and software is up to date. Before this everything was running beautifully. Can you please provide a link so

    Dear Adobe.
    Yesterday I installed the latest version of Flash Player that auto appeared on my screen. Ever since I can not play video, and my system has become painfully slow. I have Mac OS Lion 10.7.5 and software is up to date. Before this everything was running beautifully. Can you please provide a link so I can uninstall the latest version only. Thank you. Stephen Kress. Melbourne. Australia

    When you run the uninstaller, it will uninstall all Flash Player versions.
    If you want to revert to an older version after that, get it from http://helpx.adobe.com/flash-player/kb/archived-flash-player-versions.html

  • I have just bought a MacBook Air and i cannot play videos from the internet as it asks for a flash player to be installed i try to download Adobe flash player and it will not allow me to do so?

    I have just bought a MacBook Air and i cannot play videos from the internet as it asks for a flash player to be installed i try to download Adobe flash player and it will not allow me to do so?

    Ziatron is correct that Flash does not work on an iPad, but it does work on a Mac. See Adobe Flash Player 11.2.202.160.

Maybe you are looking for