Flashmediaplayback only working in certain browsers?

I am having a problem with a flash media playback on my website. I have installed the flashmediaplayback.swf on my server and embedded the relevant code and the videos were playing great on my video site -  no problems at all.
However I got a couple of emails from people who told me they could not see the videos on my site -  they were getting just a 'black box'. So I decided to check on a different computer (my laptop)  and sure enough I couldnt get the videos to play when I accessed  my site via my laptop. (I got the 'blackbox' as well)
So I simply cannot figure out why the player seems to be working properly on my site, but only when accessing via certain pcs. Is this some sort of browser issue perhaps?  My PC is IE8, my laptop is IE7, yet i have confirmed that someone else can watch videos using IE7, so it appears problem is not the IE browser version.
Is this something to do with the flash plugins? or would you know what is causing this strange problem, I'm baffled why videos only play for some people and not others.
Hoping someone can advise. many thanks

Hi,
FMP is hosted on Adobe servers. Are you sure it's not Strobe Media Playback you're concerned?
Can you provide more info? A link to the non-working instance?
Besides that, with the information you provided, I would ask what Flash Player version the viewers are using.

Similar Messages

  • Why does the sound only work for certain programs?

    The sound is only working for certain programs on my iPad. Does anyone know why? Any help is appreciated.

    It sounds like you have System Sounds muted. Either the switch on the side, or double tap the home button and swipe to the right, ICON will be on the far left. If the ICON is screen lock related, then it is the switch on the side.

  • Complaints from clents that Edge Animate built sites will not work in certain browsers

    Has Edge animate sorted out the problem of not working in IE browsers - I updated my Edge Animate ro version 2.0 - is there version 3.0 or later out yet that addresses this problem?

    Hi,
    i have had a few issues with different versions of IE mainly to do with the code added in. I use the website below to check what is supported in certain versions of browser
    CSS3 Reference
    Maintain Browser Compatibility with Adobe Edge Animate CC - For Dummies
    hope this is some help to you

  • Blackberry Messenger only works at certain times of day.

    a few days ago my phone crashed, leaving my blackberry messanger not working, a few hours later it started up and everything was fine, however the next day my bbm only worked early in the morning and then started up again around 4, and its did it again this morning, i have restarted it many times, i have deleted it then reinstalled it, its just very annoying it doesnt work, and im not really sure what to do with  it
    any help would be much appreciated

    Ella, that's got to be some intermittent connect with your mobile provider.
    The next time your BBMessenger is NOT working, check On your Manage Connections screen, click on the Services Status. What is the status of the BlackBerry Internet Service at that time?
    ALSO:  You have your mobile phone number listed as your "My Mobile Provider" or carrier. Putting your phone number out on the internet on these public forums for the world to see, is not wise. To change that, at the top of this page click on My Settings > Personal Profile > Personal Information, and in the entry block for "Carrier" type the name of your mobile provider.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Mag safe adapter only works with certain macbook pros

    My Adapter is only working with other macbooks and not its own, It sometimes flics on for a second and then No go..
    I can charge with others...
    Solutions?? HELP PLEASE!!!!
    thanks!
    Dee

    Try SMC Reset
    http://support.apple.com/kb/HT3964
    PRAM reset
    http://support.apple.com/kb/HT1379

  • Wifi on my iPod Touch 2g only works in certain instances

    I noticed about a week ago that my iPod was not connecting to the internet in any of my apps. I loaded up Safari and it seemed to work fine (it loaded google), and I also checked my mail, which also worked fine. I disconected and reconected to my router a couple of times but the problem persisted. Upon further inspection, I realized that while it seemed like Safari was working, it was actually loading up the google page from last month when the google banner had the black slab over it to protest SOPA. Anyway, I tried going to other sites and it could not load anything that it had not recently cached. So I don't really think Safari works either.
    To sum up:
    Mail still works, App Store still works
    Pretty much everything else does not work.
    This seems like a fairly strange problem given that the ipod can still connect and can clearly access the internet in certain instances. Any help would be very much appreciated. Thank you!

    Thank you very much for the help. After following your instructions, I was able to get Safari working again. I also think I figured out where the problem was coming from: after I got safari working I opened up the "This American Life" app which I bought around a week ago (when the problem started). It seems to crash whenever it tries to access the internet and then subsequently breaks safari for some reason. I had to reboot my ipod again and follow your instructions to get safari working again. Anyway, thanks again for the help. I'm guessing the only thing that I can do about the app is email the creators.

  • Making a customable resizable JPanel, but it only works in certain L&F

    Hi,
    I have created the following resizable JPanel (so that I can set a minimum size it can be dragged to).
    However, I need it to work under the system L&F, which is XP, but it wont work.
    The code is below. if you run it the first time, and try to resize the dialog to a small value, you will see it shrinks in size, to a certain point.
    then if you comment out the 2 lines i specified, and run it again, it wont. Anyone have any ideas? is this a known bug?
    import javax.swing.*;
    import java.awt.event.ComponentListener;
    import java.awt.event.ComponentEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import java.awt.*;
    public class ResizeTest extends JDialog {
         public ResizeTest(JFrame owner) {
              super(owner);
              this.addComponentListener(resizeListener);
              /* comment out the following 2 lines */
              setUndecorated(true);                  
            getRootPane().setWindowDecorationStyle(JRootPane.PLAIN_DIALOG);
         private ComponentListener resizeListener = new ComponentListener() {
              public void componentHidden( ComponentEvent i_e ) { }
              public void componentMoved( ComponentEvent i_e ) { }
              public void componentResized( ComponentEvent i_e ) {
                   int width = ResizeTest.this.getWidth();
                   int height = ResizeTest.this.getHeight();   
                  if( width < 50 ) { width = 50; }
                   if( height < 50 ) { height = 50; }
                   ResizeTest.this.setSize( width, height );
             public void componentShown( ComponentEvent i_e ) { }
         private static void test() {
              final JFrame frame = new JFrame();
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              JButton launchButton = new JButton("showDialog");
              frame.setContentPane(launchButton);
              final ResizeTest testDialog = new ResizeTest(frame);
              testDialog.setMinimumSize(new Dimension(300, 300));
              testDialog.setSize(500, 500);
              testDialog.setPreferredSize(new Dimension(500, 500));
              launchButton.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        testDialog.pack();
                        testDialog.setVisible(true);
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        frame.pack();
                        frame.setVisible(true);
         public static void main(String[] args) {
              test();
    }

    okay... I see what the problem is.
    1) With those lines uncommented: The L&F is handling the window decorations. Because of this, it's basically a JWindow with custom painting and mouse handling. When you resize, it's constantly calling setSize, which constantly firing events, so your minimum sizing works as you expect.
    2) With those lines commented: The OS is handling the window decorations. Because of this, there are 2 caveats:
    a) There is a minimum width of the window of what looks like about 120-130 pixels. So you can't go any smaller then that for width. And for height, no smaller then the titlebar and lower border.
    b) It only fires the component events when the mouse is released, cuz that's how the undelying native windows deal with it... or at least with Java.
    For #1 above, there's still a minimum size for the L&F decorated windows. But this is related to what content is showing in the titlebar. Which in the case of the decorations showing, is smaller then what your were defining as a minimum.
    So, basically, it's not a bug. It's just the way it is. It's always been like this.

  • Ethernet port on MacBook Pro only works under certain conditions

    Since I've purchased my MacBook Pro over two years ago now with an initial installment of OSX 10.5.x, I've had a small annoyance if while the OS was up and running and my physical network interface was disconnected and reconnected, a connection could not be reestablished until I shutdown, restart or put my Mac to sleep and woke it back up with the cable connected to the ethernet port. It would randomly work as it should if I connected and disconnected it over and over again until the machine decided I've stimulated it enough to allow me to use it. But it's recently become a real annoyance for me since the tab on my longest ethernet cable broke and it no longer locks it in place and now the slightest budge displaces the cable and I have to put the laptop to sleep often to reestablish a connection.
    I would opt to Wi-Fi, but my Mac (surprise, surprise) out of 4 other laptops is the only one whose signal is too weak to use where I use them most. I've reinstalled the OS once to no avail months ago and the problem persisted after downgrading to Slowleopard a day after it's release.
    Anyone have any ideas what may be going on? Any help would be appreciated. Thanks.

    Hello DavidJoyce
    Best thing to do is to buy a new Cat 6 Ethernet cable.

  • Why isn't my iMessage working. It's only working with certain people

    My iPhone 4 has been strange lately. It only sends iMessage to certain people. How do I fix it?

    hmmm.. When you go to settings>Messages>send and recieve> are you signed in? Or does it say "Use your appleid for imessage" ? If so , does signing out and signing back in fix the issue?

  • Selfhosted webfont not working in certain browsers

    Selfhosted web font that I added into muse is working on safari but not other browsers like chrome. I have the ttf file, svg file, dot file, and the woff file. When I added the font to muse if ask me to located the desktop version of the font family and it was listed there because i had it installed. Then everything seems to be fine until I look at the site on different browsers. completely changed the font! Please help!

    Hi,
    Check out Why Muse local fonts not view Google Chrome? in case you are running into the same issue. If not, please post your site URL.
    Abhishek

  • Autofill username/password only works on certain websites

    I just started using my macbook and have noticed that autofill for usernames and passwords only functions on a limited number of websites.
    I've researched this topic and only seen this answer that appears to be relevant. Some websites use a security that prohibits the saving of usernames and passwords.
    If these websites were banks, or secure company portals I might buy this answer but they are not.
    They are standard web forums. On my PC I used Norton password management software that saved all of my nearly 200 usernames and passwords, with limited exceptions like my bank for example. If I can not resolve this it will have a pretty huge negative impact on my web browsing experience with Safari.
    Anyone know of a workaround for this or is Safari just hyper sensitive to this issue?
    Is there any 3rd party password management software that functions better than Keychain?
    Is Firefox a better option for password management? I'd prefer not to use multiple web browsers if possible since it complicates bookmark/favorites management.
    Thanks in advance. Steve

    1Password, I find it to be the ultimate password manager. You can even have it remember and autofill credit cards, address info, just about everything.
    Another great feature is it can generate random, complex passwords and remember them for you so you're not using the same generic password for everything like most people do.

  • The built-in dictionary on my iPad only works with certain sites.  What do I need to do so that I can it all the time. (For example, it does not work when I read e-newspaper.)

    What do I need to do so that I can use the built-in dictionary all the time? My iPad 2's dictionary functions on Japanese e-newspapers but not on the Arizona Republic or other e-newspapers.

    Rikirannu wrote:
    My iPad 2's dictionary functions on Japanese e-newspapers but not on the Arizona Republic or other e-newspapers.
    Are you talking about the English dictionary?  Mine seems to work ok on the AZ republic web page.  Does yours not work on all webpages?  Does it not work when you type an English word in Notes and then do select and define?

  • Airport only works on certain computers...

    I have two APX and two AX. Even if I use just one APX still only my 15in powerbook will have inernet. My other computers (G4 Cube, and two older iBooks) will recognize my network, but in the network status pane in system preferences it registers yellow (may not be able to connect to the internet). Where as on my powerbook it is green.
    I am pretty savy with the network and have rebooted and reset the entire thing many of times. What is the problem?

    One suggestion could be that somehow the mode has changed from 802.11b/g to just 802.11g. This would stop the older machines using the network, although I do believe that they may still see it.
    Applications > Utilities > Airport Admin Utility > Airport Tab > Mode (At the bottom)
    Make sure that the mode is set to 802.11 b/g compatible.
    Will
    1GHz G4, 15" PowerBook, Airport Network, 1G iPod Mini   Mac OS X (10.4.6)   >>Updated iWeb Hints n Tips<<</a>

  • Box shadow not working in certain browsers

    Hello! I created a box shadow and I implemented code so it would show up in the popular browsers. I noticed though, the box shadow will not show up in Explorer and Mozilla. It does show up in Google Chrome and Safari. This is the code I added in. Am I missing something? Thanks.
    -webkit-box-shadow: 2px 1px 5px 7px #3FF;
    -moz-box-shadow: 2px 1px 5px 7px #3FF;

    What versions of those browsers (IE and Firefox) are you using?
    The bright green box shadow shows fine here, though Firefox no longer needs the -moz prefix so you should have a line for...
    box-shadow: 2px 1px 5px 7px #3FF;
    ...at the end of your browser prefix versions.
    Could it be a browser cache issue?

  • JVMTI SetBreakpoint only works on certain instructions

    Hello,
    I'm developing a java decompiler and bytecode debugger application and have been playing around with JVMTI, in particular the SetBreakpoint function (so i can set a breakpoint on each instruction and step-through them).
    For example, I have a simple java method which calls System.out.println(n) several times.
    This is the decompiled bytecode:
    public void method1() {
              //(0):getstatic #0, #18
              //(1):ldc #52
              //(2):invokevirtual #0, #54
              //(3):iconst_0
              //(4):istore_1
              //(5):iinc #1, #1
              //(6):getstatic #0, #18
              //(7):ldc #57
              //(8):invokevirtual #0, #54
              //(9):getstatic #0, #18
              //(10):ldc #59
              //(11):invokevirtual #0, #54
              //(12):getstatic #0, #18
              //(13):ldc #61
              //(14):invokevirtual #0, #54
              //(15):getstatic #0, #18
              //(16):ldc #63
                    ...etc
    }I can set a breakpoint on any instruction (with no jvmtiErrors returned), but my breakpoint event handler function in my agent is only called when i set breakpoints on instructions: 0, 3, 5, 8, 9, 10, 13, 16.
    When i set a breakpoint on line 2 for example, I get a this erro message from the JVM:
    # An unexpected error has been detected by HotSpot Virtual Machine:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6d6d1046, pid=4988, tid=1456
    # Java VM: Java HotSpot(TM) Client VM (1.5.0_06-b05 mixed mode)
    # Problematic frame:
    # V [jvm.dll+0x61046]
    # An error report file with more information is saved as hs_err_pid4988.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    Does anyone have any idea what the cause of this intermittent behaviour is?? It seems very odd that I can set a breakpoint on instruction 8 which is an invokevirtual bytecode, but not on instruction 11 which is also an invokevirtual instruction!
    Also, what could be causing the EXCEPTION_ACCESS_VIOLATION error inside the JVM?
    Any help would be greatly appreciated.
    Thank you for your time.
    Joe

    I apologise, I've solved my own problem.
    I was looking too closely at my decompiler's bytecode output; the setBreakpoint() function's bytecode location index argument does not mean 'bytecode instruction index', but rather byte index.
    I was attempting to set breakpoints on operand byte indexes rather than instructions themselves, hence why i was getting inconsistent results.
    Still though, it would have been nice if the jvmti api or the jvm error message made that clearer.
    Oh well, hope this post is useful to someone with the same problem in the future.
    Cheers anyway,
    Joe

Maybe you are looking for

  • Error in deploying from JDeveloper 10.1.3.1 to Oracle AS 10.1.3

    Hi! all. I'm getting an error while deploying my application from new JDeveloper10.1.3.1 to Oracle AS 10.1.3 It says: isActive()z Can anyone tell me where the error lies? The same application is getting deployed from 10.1.3.0.4 Should I have to add a

  • Can't get rid of an icon of myself

    Guys, I have a weird problem.  A picture of myself that I took through my MBP (which is hedious) is showing up along with my yahoo e-mail.  Whenever I send a message, the picture or icon of myself is showing up as a little picture appearing in the up

  • How to find os x lion file in new macbook pro?

    I bought macbook pro about a month ago( already installed os x lion when it came out), and i tried to install windows 7 in newest macbook pro. But i realized i need os x lion dvd file for install windows 7 in macbook pro successfully. How can i find

  • GRC 10.0 Access Request Creation- Data Source of User Details

    Hi Experts, I was doing GRC 10.0 Configuration and found a query which I am not able to resolve. While creation of any kind of Access Request in GRC through NWBC> Acces Management Tab>Access Request>Access Request Creation. In the user details sectio

  • I cant receive my verification email for apple ID

    Help plz!!!!! i cant receive my verification email for apple ID..