Add-On... Having trouble finding the correct add-on to use to view a video on a webpage.

I am a photographer. I post videos on my blog for people to view as a slide show. I use animoto.com to create the slide shows and then copy and past the code onto my site. From my mobile device, wehere the video screen is, it tells me I need to use an add-on and to click there to download (which doens't allow an actual click). I went to the add-on area in firefox mobile but don't know which add-on to use.
Thanks for your help in advance.

The page uses Flash. We have our own page rendering core and making use of the Android Adobe Flash plugin has been difficult to implement.

Similar Messages

  • I'm having trouble finding the HEALTH magazine app for my iPad.  The mag insists that it has a free app.  Help!!

    I'm having trouble finding the HEALTH magazine app for my iPad.  The mag insists that it has a free app.  Help!!

    What country are you in ? Is this the app : Health magazine ?

  • I have Final Cut Pro X (10.0.9) and would like to change my project settings but I am having trouble finding the 'Modify Settings button.'  Where exactly is it located?

    I have Final Cut Pro X (10.0.9) and would like to change my project settings but I am having trouble finding the 'Modify Settings button.'  Where exactly is it located?  Here is the link which gives the instructions but doesn't seem to say where the 'Modify Settings Button' is located: http://support.apple.com/kb/PH12526?viewlocale=en_US

    You have to choose – one settigf or another.
    The thing is.your HD clips will look better in an SD project than your SD clips will in an HD project.
    WIthout knowing much more about your project and the kind of content, it's really hard to be specific. But generally I'd let my project settings be guided by what fraction of my timeline will be made up of HD clips and how much SD clips. If it's 75% HD, I'd probably do an HD project…and so on,
    Good luck.
    Russ

  • I am having trouble finding the Accept button for my licensing agreement and would like to accept.

    I am having trouble finding the Aceept button for my licensing agreement and would like to accept.

    Well, it's probably below the table... Sounds like you didn't consider the system requirements and installed on a system with too small screen resolution. If so, only using a larger res may possibly revela the magic button...
    Mylenium

  • I can't get my Epson Stylus SX438W to work. Has anyone had trouble finding the correct model when installing the driver?

    I am having trouble completing the installation of my new Epson Stylus SX438W Wi-Fi printer. The printer is connected to my network and so is my Mac. I have put the Epson software disc in the Mac and followed the procedure to installing everything that is needed. I am stuck at a point that Epson have not been able to help with, and as advised to ask my router provider whether it does MAC filtering. It does not apparently. Then i have been advised to contact Apple. So that's where i am. The problem is that at the point where i have to add the printer to the printer list the correct model does not show in the provided list, so i hit the "more printers" tab. Not in here either. Epson have guided me through the installation of the latest driver and the prinnter still, does not show up in any lists. We have tried setting it up manually (i believe!, i am far, far from really knowing at all what i am doing). When trying to print a document from Microsoft word all that comes out is jargon on the sheets. Obviously not what i am after. I realise my description may be very unhelpful to you but i am REALLY stuck i don't know what to do now. Any help or guidance will be greatly appreciated.
    P.S. i have attached an image of the screen i have got to if that is of any help and i can get more screen shots etc. if anyone needs them!

    OK, let's try these................ 
    1 - Boot up from your install DVD and run "Repair Disk" from the Utility menu.  When done, restart back to your desktop, repair permissions and restart your computer.  Re-connect your printer. 
    2 - Download & install the Gimp drivers. Make sure the one you install is compatible w/your OS-Gutenprint 5.2.8-pre1.   Repair permissions, restart your computer & re-connect your printer when done.
    The Epson model I have, in order to get it to print wirelessly, I had to install a Gimp driver.
    3 - Check out the following KB Articles:
    Mac OS X 10.4 Help: Connecting to a network printer
    Epson Printer Drivers v2.10 OS X
    Adding a printer to your printer list in Mac OS X
    Mac OS X 10.4 Help: The printer I'm adding says "Driver not installed"
    ======================
    If still unsuccessful after trying all of the above, the problem could be your iBook or human error.  You can either call Epson & ask to speak with a Mac savy supervisor or return the printer & find another that is compatible w/your current OS.

  • Having trouble finding the height of a Binary Tree

    Hi, I have an ADT class called DigitalTree that uses Nodes to form a binary tree; each subtree only has two children at most. Each node has a "key" that is just a long value and is placed in the correct position on the tree determined by its binary values. For the height, I'm having trouble getting an accurate height. With the data I'm using, I should get a height of 5 (I use an array of 9 values/nodes, in a form that creates a longest path of 5. The data I use is int[] ar = {75, 37, 13, 70, 75, 90, 15, 13, 2, 58, 24} ). Here is my code for the whole tree. If someone could provide some tips or clues to help me obtain the right height value, or if you see anything wrong with my code, it would be greatly aprpeciated. Thanks!
    public class DigitalTree<E> implements Copyable
       private Node root;
       private int size;
       public DigitalTree()
           root = null;
           size = 0;
       public boolean add(long k)
           if(!contains(k))
                if(this.size == 0)
                    root = new Node(k);
                    size++;
                    System.out.println(size + " " + k);
                else
                    String bits = Long.toBinaryString(k);
                    //System.out.println(bits);
                    return add(k, bits, bits.length(), root);
                return true;
           else
               return false;
       private boolean add(long k, String bits, int index, Node parent)
           int lsb;
           try
               lsb = Integer.parseInt(bits.substring(index, index - 1));
           catch(StringIndexOutOfBoundsException e)
               lsb = 0;
           if(lsb == 0)
               if(parent.left == null)
                   parent.left = new Node(k);
                   size++;
                   //System.out.println(size + " " + k);
                   return true;
               else
                   return add(k, bits, index-1, parent.left);
           else
               if(parent.right == null)
                   parent.right = new Node(k);
                   size++;
                   //System.out.println(size + " " + k);
                   return true;
               else
                   return add(k, bits, index-1,  parent.right);
       public int height()
           int leftHeight = 0, rightHeight = 0;
           return getHeight(root, leftHeight, rightHeight);
       private int getHeight(Node currentNode, int leftHeight, int rightHeight)
           if(currentNode == null)
               return 0;
           //else
           //    return 1 + Math.max(getHeight(currentNode.right), getHeight(currentNode.left));
           if(currentNode.left == null)
               leftHeight = 0;
           else
               leftHeight = getHeight(currentNode.left, leftHeight, rightHeight);
           if(currentNode.right == null)
               return 1 + leftHeight;
           return 1 + Math.max(leftHeight, getHeight(currentNode.right, leftHeight, rightHeight));
       public int size()
           return size;
       public boolean contains(long k)
            String bits = Long.toBinaryString(k);
            return contains(k, root, bits, bits.length());
       private boolean contains(long k, Node currentNode, String bits, int index)
           int lsb;
           try
               lsb = Integer.parseInt(bits.substring(index, index - 1));
           catch(StringIndexOutOfBoundsException e)
               lsb = 0;
           if(currentNode == null)
               return false;
           else if(currentNode.key == k)
               return true;
           else
               if(lsb == 0)
                   return contains(k, currentNode.left, bits, index-1);
               else
                   return contains(k, currentNode.right, bits, index-1);
       public Node locate(long k)
            if(contains(k))
                String bits = Long.toBinaryString(k);
                return locate(k, root, bits, bits.length());
            else
                return null;
       private Node locate(long k, Node currentNode, String bits, int index)
           int lsb;
           try
               lsb = Integer.parseInt(bits.substring(index, index - 1));
           catch(StringIndexOutOfBoundsException e)
               lsb = 0;
           if(currentNode.key == k)
               return currentNode;
           else
               if(lsb == 0)
                   return locate(k, currentNode.left, bits, index-1);
               else
                   return locate(k, currentNode.right, bits, index-1);
       public Object clone()
           DigitalTree<E> treeClone = null;
           try
               treeClone = (DigitalTree<E>)super.clone();
           catch(CloneNotSupportedException e)
               throw new Error(e.toString());
           cloneNodes(treeClone, root, treeClone.root);
           return treeClone;
       private void cloneNodes(DigitalTree treeClone, Node currentNode, Node cloneNode)
           if(treeClone.size == 0)
               cloneNode = null;
               cloneNodes(treeClone, currentNode.left, cloneNode.left);
               cloneNodes(treeClone, currentNode.right, cloneNode.right);
           else if(currentNode != null)
               cloneNode = currentNode;
               cloneNodes(treeClone, currentNode.left, cloneNode.left);
               cloneNodes(treeClone, currentNode.right, cloneNode.right);
       public void printTree()
           System.out.println("Tree");
       private class Node<E>
          private long key;
          private E data;
          private Node left;
          private Node right;
          public Node(long k)
             key = k;
             data = null;
             left = null;
             right = null;
          public Node(long k, E d)
             key = k;
             data = d;
             left = null;
             right = null;
          public String toString()
             return "" + key;
    }

    You were on the right track with the part you commented out; first define a few things:
    1) the height of an empty tree is nul (0);
    2) the height of a tree is one more than the maximum of the heights of the left and right sub-trees.
    This translates to Java as a recursive function like this:
    int getHeight(Node node) {
       if (node == null) // definition #1
          return 0;   
       else // definition #2
          return 1+Math.max(getHeight(node.left), getHeight(node.right));
    }kind regards,
    Jos

  • For some reason I am having trouble finding the program

    I clicked Try and then It istalled stuff but at the end I could not find the program at all! It is not on my desktop or in programmes, why is this, have I done something wrong? Were could I find it ? Please help!

    It should be in the typical location.  Which operating system are you using exactly?  What Adobe software did you just install?

  • Having trouble creating the windows 8 installation usb using bootcamp

    Hello Everyone,
    I am trying to install windows 8 on my early 2013 MacBook Pro retina. I am using Mavericks if that matters. I have got the iso file that I need but I am having troube creating the install disk/usb. Everytime I go to create it, I get an error message telling me that the drive could not be formatted properly. I have looked up possible solutions but nothing seems to work, I have unmounted the iso file, tried putting it on the Mac's HD but nothing I do works. Please help.

    Welcome to the Apple Support Communities
    After using Boot Camp, your computer will start always in Windows. To start in OS X, just hold the X key while your Mac is starting. If you want to start always in OS X, after starting in OS X, go to System Preferences > Startup Disk, and select the OS X partition.
    By default, Windows can't read the filesystem that OS X uses for the partition, so that's why you can't access to the OS X partition. Also, you should have burnt the drivers onto a DVD or a USB drive.
    As you have already downloaded the drivers, after starting in OS X, copy them to a USB drive or burn them into a DVD. Then, start in Windows and install them. Note that Windows 8 requires Boot Camp 5 drivers, that you can only get from Boot Camp Assistant if you are running OS X 10.8.3. If you want to be sure that you install the correct drivers, I recommend you to download again the Boot Camp 5 drivers from the Apple webpage > http://support.apple.com/kb/DL1638

  • I am having issues finding the correct adobe reader for mac os 10.8.4

    having issues with adobe and 10.8.4 mac os

    This is a known issue with Safari and Reader in Mountain Lion.
    Unfortunately the damaged PDFs can't be repaired.
    Download AppZapper and install it (it's a free trial)
    Launch AppZapper and drag the Reader app to it.
    "Zap" all files to the trash and quit AppZapper.
    Go to: Mac HD/Library/Internet Plugins
    Trash the AdobePDFviewer.plugin and AdobePDFViewerNPAPI.plugin files from there.
    Empty the Trash.
    Download Reader 11 and reinstall it:
    Relaunch Safari and open the Preferences
    Under the Security tab, make sure "Allow all other Plugins is checked"

  • I'm having trouble finding the music on my ipod touch!

    i've just updated my ipod to the newest software, now when i've unplugged it the music is unable to be shown on my ipod, however, i connect it to my computer and the music is there on my ipod playing! any suggestions or help without needing to restore my ipod to factory settings and losing everything?

    Was the content purchased from iTunes?  If not, it will not transfer.

  • I purchased Martha Stewart Living for IPad then realized it was free for me if I already received it in the mail. Now I need help in canceling the order and am having trouble finding the best way to do this easily and quickly. Please help.

    How can I most easily get refunded for subscribing to Martha Stewart Living on iPad in error?

    Normally there are no refunds, but you can try your luck.
    You can report issues with your iTunes Store purchases directly through the iTunes Store:
      http://support.apple.com/kb/HT1933

  • Trouble finding the sampler in logic 8???

    Hello, I'm having trouble finding the esx24 sampler in logic 8. I see videos of people accessing it through the inspector menu on the left side of the screen under "inserts." I've looked several times through here and can't find it. I can't believe that I am already stumped. any help would be great

    nevermind, I found it. thanks

  • Having trouble finding Character viewer

    I am having trouble finding the Character Viewer.  I've looked in the Launchpad and also in Finder under Applications.  If I accidentally sent it to the Trash and emptied it can I reinstall?
    OS X 10.8.5

    Actually I'm not looking for the Font Book , I'm looking for the Character Viewer.  FontBook I can find and it does not appear to give me what I want.  I was already using the Character Viewer quite a bit for a while, using it to find the pi sign, upside down exclamation points, fractions, foreign currency symbols and stuff like that.
    I suspect I turfed the app without realizing what I was doing at the time.  This is my first Mac and I am still acclimatizing to it.  Like I said, it can't be found in Finder under Applications so I'm thinking it must be missing.

  • I'm having trouble with the folder "Automatically add" function. She opens a folder "not added". My machine is a Vaio with Windows 7 home basic antivirus using Microsoft. Regards.

    I'm having trouble with the folder "Automatically add" function. She opens a folder "not added". My machine is a Vaio with Windows 7 home basic antivirus using Microsoft. Regards.

    Its a 64 bits.

  • Adding/Deleting T codes to roles. Finding the correct roles to add/delete T

    Hi Folks
    I would like solutions to 3 questions.
    1) How do you Add/Delete transaction codes to roles (ECC6)
    2) How do you find the correct roles to Add/Delete these T codes
    3) Has anyone any documentation and or screenshots on Versa, the Compliance Calibrator.
    We are using single roles within composite roles.
    Useful answers will be rewarded.
    Thank you very much
    Mark W

    Hi Mark,
    Typically the functional team or organisational design team will specify the roles required and the transaction assignment to those roles.  By working with them, you can understand what part of the business processes the roles represent and get an idea about which transactions go in what roles.  They will also be able to advise if a new role is required id a transaction is missing.
    The allocation of tx to roles should only be approved by role owners or appropriate responsible resource, and they should stipulate exactly which roles those tcodes go into.  If you have not been involved in the role design then it is not appropriate for them to expect you to make those kind of decisions.
    All of the recent compliance calibrator docs are on the service marketplace, I'm sure that the basis team on your current project will either give you their OSS ID to let you download them, or alternatively will download the docs for you if they have concerns about sharing the ID.  From memory, if you have security certification, you should be able to get an individual OSS ID from SAP.
    There is some high level info available from www.sap.com/grc and a brief overview of an install of CC5.1 here: http://www.*********************/sox_sod/sox_sod.htm
    Hope that helps
    Cheers
    Alex

Maybe you are looking for