Opening Videos from Left Menu Requires Right Click

I have multiple Windows 7 computers with iTunes installed. I have noticed that whan trying to open videos from the left menu, the only way to get it working is to wight click on the mouse, left clicking does not work. Does anyone know anything about this and how to resolve it?

I encountered the same problem. A quicker workaround then restarting firefox is to just minimize and maximize. Don't know why but that works.

Similar Messages

  • Can open a site from bookmarks only by right-clicking and "open in a new tab". Whan's wrong?

    Hi.
    After some regular updates I can open a site from bookmarks only by right-clicking on it and "open in a new tab". Have this problem also on my PC and a notebook. (Win 7 & Win 8). Didn't add any new add-ons lately, seems like they all work well.
    My Mozilla Firefox is ver 31.0
    How this problem can be fixed?
    Thank you.

    hello, the easiest way to find out if the problem might be caused by an interfering addon is to launch firefox in safe mode once...
    [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]

  • Can't open nautilus from applications menu

    I find that I can't open nautilus from applications menu any more.
    In the terminal, it won't open nautilus when running 'nautilus' without specifying a location or --new-window option.
    I've checked and tried to modify /usr/share/applications/org.gnome.Nautilus.desktop and /usr/share/applications/nautilus-classic.desktop, but it didn't work.
    The values of Exec option in the two files are as follows:
    /usr/share/applications/org.gnome.Nautilus.desktop: Exec=nautilus --new-window %U
    /usr/share/applications/nautilus-classic.desktop:  Exec=nautilus --no-default-window --force-desktop
    Also, I have tried to reinstall nautilus. I didn't work, either.
    Any one can help?

    ooo wrote:
    Are you using gnome classic session? Or have you enabled desktop icons?
    Sounds like the nautilus-classic.desktop could be getting launched  during gnome-session startup, which should happen in both of the cases above.
    According to my testing, starting nautilus with 'nautilus --no-default-window --force-desktop' causes the exact behavior you're describing.
    I'm using standard gnome without desktop icons, and I don't have any issues with nautilus, so disabling them would probably help, although that could be a drag if you really want desktop icons.
    I still don't understand why the org.gnome.Nautilus.desktop wouldn't work though, since it has the --new-window flag. Apparently you can't even launch a new window via the right click menu item.
    This could happen if gnome-shell recognizes the nautilus-classic.desktop as nautilus, and starts using it's .desktop file instead when you try to launch a new window.
    If so you could probably fix this from the .desktop file somehow. I might be able to look into it later..
    I'm also using standard gnome, and I have enabled desktop icons.
    Disabling desktop icons makes it work.
    Thanks!
    I once tried to modify nautilus-classic.desktop to Exec=natilus --new-window, but it didn't help.

  • Pop up menu on right clicking an image?

    Hello,
    I am new to LabWindows/CVI. 
    Requirement: "To get a pop-up menu on right clicking on image"
    Right now, I display my images in window numbers (0 - 15). Is it possible to be able to get a pop-up menu on right clicking an image window. If yes, how? If not, could you please suggest other methods to achieve this task? Should I display the image in a separate parent panel for example? How could I do this?
    Any help would be great.
    Cheers

    I would use the code generator for right click event. then fill it up with whatever code you want under right click case. You can access these when you double click your UIR file, then on the top of the page click Code\Preferences\Default... then choose desired events for picture then go to Code\Generate\all callbacks and skip through the ones you don't want to be replaced.

  • I can't open a new tab unless I right click a link and hit "open in new tab"?

    I can't open a new tab unless I right click a link and hit "open in new tab."
    I click ctrl+t, click the new tab button, right click the tab bar and hit "new tab", and even click "File" and hit "New Tab", but it still won't open a tab!
    This has been going on for a week!
    I know it may not seem like too much of a problem since I can still open a tab, but it's terribly inconvenient that I can only open one by clicking a link.

    The Ask Toolbar is causing that in the Firefox 3.6.13+ versions. Uninstall that extension.
    There are a couple of places to check for the Ask toolbar:
    * Check the Windows Control panel for the Ask Toolbar - http://about.ask.com/apn/toolbar/docs/default/faq/en/ff/index.html#na4
    * Also check your list of extensions, you may be able to uninstall it from there - https://support.mozilla.com/kb/Uninstalling+add-ons

  • When I try to open a new tab using the "+" on the toolbar, nothing happens. Even trying to use the cntl t to open a new tab does not work. To open a new tab, I must right click on a hyperlink. how can I correct this? Using Firefox 3.6.18

    When I try to open a new tab using the "+" on the toolbar, nothing happens. Even trying to use the cntl t to open a new tab does not work. To open a new tab, I must right click on a hyperlink. how can I correct this? Using Firefox 3.6.18

    The Ask Toolbar is causing that in the Firefox 3.6.13+ versions. Uninstall that extension.
    There are a couple of places to check for the Ask toolbar:
    * Check the Windows Control panel for the Ask Toolbar - http://about.ask.com/apn/toolbar/docs/default/faq/en/ff/index.html#na4
    * Also check your list of extensions, you may be able to uninstall it from there - https://support.mozilla.com/kb/Uninstalling+add-ons

  • Menu on right-click for numeric control

    Hello,
    is there a way to program a "menu on right-click" for a control (e.g. numeric), like there is for table controls?
    I'm working with CVI 8.0.1 
    Thanks & Best Regards,
    Greg

    Yes, every control can be added a popup menu with a few instructions.
    Design the menu nar in the UIR editor; do not associate it to any panel
    Load the menu bar when needed with the line menuHandle = LoadMenuBar (0, "myfile.uir", menuBar): by passing 0 as the panel handle it will not be associated to any of them
    In the numeric callback add these instructions:
         switch (event) {
            case EVENT_RIGHT_CLICK:
                // Context menu
               choice = RunPopupMenu (menuHandle, menuBar_Menu, panel, eventData1, eventData2, 0, 0, 0, 0);
                switch (choice) {
                     case menuBar_menu_item1:
                              // menu item handling code
                              break;
                break;
    Passing eventData parameters to RunPopupMenu function ensures that the menu is displayed at the mouse position.
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

  • Displaying a context menu on right click on rich tree

    Please see the code below. I want to display a context menu on right click on a rich tree.
    <ui:composition xmlns="http://www.w3.org/1999/xhtml"
          xmlns:ui="http://java.sun.com/jsf/facelets"
          xmlns:h="http://java.sun.com/jsf/html"
          xmlns:f="http://java.sun.com/jsf/core"
          xmlns:a4j="http://richfaces.org/a4j"
          xmlns:rich="http://richfaces.org/rich">
        <style>
            .col1{ width:50%; vertical-align:top;
        </style>
        <h:form>   
            <h:panelGrid columns="1" width="100%" columnClasses="col1">
                 <rich:tree style="width:300px" nodeSelectListener="#{simpleTreeBean.processSelection}"
                    switchType="client"
                    value="#{simpleTreeBean.treeNode}" var="item" id="item">
                    <rich:componentControl event="onClick" for="menu" operation="show">
                    <f:param value="#{item.data}" name="send" />
                </rich:componentControl>
                </rich:tree>
                </h:panelGrid>
            <a4j:outputPanel ajaxRendered="true">
                <rich:panel>
                    <f:facet name="header">Last Menu Action</f:facet>
                    <h:outputText escape="false" value="Right Click :  #{simpleTreeBean.nodeTitle}" id="selectedNode" />
                    <br/>
                </rich:panel>      
            </a4j:outputPanel>
                 <rich:contextMenu event="oncontextmenu" actionListener="#{SimpleTreeBean.processCurrElement}" attached="true" id="menu" submitMode="ajax">
                <rich:menuItem ajaxSingle="true">
                <b> #{simpleTreeBean.nodeTitle}</b> Send To
                    <a4j:actionparam name="det" assignTo="#{ddmenu.current}" value=" #{simpleTreeBean.nodeTitle}"/>
                </rich:menuItem>
            </rich:contextMenu>
        </h:form>
    </ui:composition> With this code, i need left click at first then right click, then it will show the selected node. I want to get the value of the node title on right click. Please help me with it. The SimpleTreeBean code:
    package com.dW;
    import java.awt.event.ActionEvent;
    import java.io.IOException;
    import java.io.InputStream;
    import java.util.Properties;
    import javax.faces.FacesException;
    import javax.faces.context.ExternalContext;
    import javax.faces.context.FacesContext;
    import org.richfaces.component.UITree;
    import org.richfaces.event.NodeSelectedEvent;
    import org.richfaces.model.TreeNode;
    import org.richfaces.model.TreeNodeImpl;
    public class SimpleTreeBean
        private TreeNode rootNode = null;
        private String nodeTitle;
        private static final String DATA_PATH = "images/simpleTreeData.properties";
        private void addNodes(String path, TreeNode node, Properties properties) {
            boolean end = false;
            int counter = 1;
            while (!end) {
                String key = path != null ? path + '.' + counter : String.valueOf(counter);
                String value = properties.getProperty(key);
                if (value != null) {
                    TreeNodeImpl nodeImpl = new TreeNodeImpl();
                    nodeImpl.setData(value);
                    node.addChild(new Integer(counter), nodeImpl);
                    addNodes(key, nodeImpl, properties);
                    counter++;
                } else {
                    end = true; } }  }
        private void loadTree() {
            FacesContext facesContext = FacesContext.getCurrentInstance();
            ExternalContext externalContext = facesContext.getExternalContext();
            InputStream dataStream = externalContext.getResourceAsStream(DATA_PATH);
            try {
                Properties properties = new Properties();
                properties.load(dataStream);
                rootNode = new TreeNodeImpl();
                addNodes(null, rootNode, properties);
            } catch (IOException e) {
                throw new FacesException(e.getMessage(), e);
            } finally {
                if (dataStream != null) {
                    try {
                        dataStream.close();
                    } catch (IOException e) {
                        externalContext.log(e.getMessage(), e);
        public TreeNode getTreeNode() {
            if (rootNode == null) {
                loadTree();
            return rootNode;
        public void processSelection(NodeSelectedEvent event) {
            UITree tree = (UITree) event.getComponent();
            nodeTitle = (String) tree.getRowData();
        public void processCurrElement(ActionEvent event) {
            UITree tree = (UITree)event.getSource();
            nodeTitle = (String)tree.getRowData();
            System.out.println(nodeTitle);
        public String getNodeTitle() {
            return nodeTitle;
        public void setNodeTitle(String nodeTitle) {
            this.nodeTitle = nodeTitle;
    }

    Hi,
    Do you have a solution for this? Looking for exactly the same.
    As far as I have it at the moment I have the backing object added to the attributes of the node:
    <a4j:support event="oncontextmenu"
                                         oncomplete="#{rich:component('foldersContextMenu')}.doShow(event, {})"
                                         actionListener="#{customerBean.buildContextMenu}" reRender="foldersContextMenu, selectedNode">
                                <f:setPropertyActionListener value="#{item}" target="#{customerBean.nodeTitle}"/>
                                <f:attribute name="node" value="#{item}"/>
                            </a4j:support>This allows me to get the object in the backing bean:
    public void buildContextMenu(ActionEvent event) {
            UIComponent component = event.getComponent();
            log.info("component: " + component.getId());
            Category node = (Category) component.getAttributes().get("node");
            log.debug("node : " + node);But how I translate that to setting this as the current node is causing me problems.
    Thanks
    Jon

  • "Toast it" appearing in menu when right clicking

    The words "Toast it" appears in menu when right clicking an icon but Toast has been uninstalled. How can I remove it please?

    Try this previous discussion:
    https://discussions.apple.com/message/12533120#12533120
    Re: "Toast It" wont go from contextual menu

  • I am unable to open new tabs, in any way I attempt to do so. I have checked the settings and they are fine, so it's not those. The only way I can open a new tab is to right click on a link and instruct it to open in a new tab.

    Any way I attempt to open new tabs, be it clicking on the new tab button or using the short-cut Ctrl-t, I am unable to open any new tabs on my browser window.
    The only way I have found that I can open a new tab is to right-click on a link and instruct that link to open in a new window.

    Try disabling the Ask Toolbar extension.

  • How can I get Windows (v7 x64) to open in Dreamweaver (CS5) if I right click it?

    Hi
    How can I get Windows (v7 x64) to open in Dreamweaver (CS5) if I right click it?
    None of the normal mechanisms of setting an application to be the DEFAULT application for the .HTML file type seem to work...
    Extremely irritating.
    J

    Jon Fritz II wrote:
    So when you right-click an .html file and choose Open With, what are you seeing?
    Is the check box for "Always use the selected program to open this kind of file" checked?
    A list of various "recommended applications" but not including Dreamweaver. It's not in the list of Other Applications either. And if I browse for it, my selection of dreamweaver.exe is flatly ignored without message.
    >Is the check box for "Always use the selected program to open this kind of file" checked?
    Jon Fritz II wrote:
    So when you right-click an .html file and choose Open With, what are you seeing?
    Is the check box for "Always use the selected program to open this kind of file" checked?
    A list of various "recommended applications" but not including Dreamweaver. It's not in the list of Other Applications either. And if I browse for it, my selection of dreamweaver.exe is flatly ignored without message.
    > Is the check box for "Always use the selected program to open this kind of file" checked?
    Yes.
    J

  • I belong to a graphic site dreamies.de and my images are disappearing from there since I right clicked on what I thought was set as desktop background. There wa

    I belong to a graphic site dreamies.de and my images are disappearing from there since I right clicked on what I thought was set as desktop background. There was another entry under it that said block images from dreamies.de. That is the one that I clicked on by accident and no one knows how to reverse it. Does anyone here know how to reverse it? I was using firefox 3.6 beta 3 when this happened. I am now on firefox 12.
    I already tried right-click the page, choose View Page Info, then click Permissions. The first item is the site-specific permission for images and you should be able to reset back to the default here. This did not work.
    I also tried right-click View Page Info and click Media. Click the first image on the list and observe the Block Images checkbox above the preview at the bottom. Arrow down the list until you come to a site that is blocked and unblock it. There was no unblock just a delete, so I deleted it. This did not work either.
    I know it is a firefox issue because the images are all there when I log in using Internet explorer, but on firefox there are many of my images missing.

    This is the question that I need an answer to:
    I belong to a graphic site dreamies.de and my images are disappearing from there since I right clicked on what I thought was set as desktop background. There was another entry under it that said block images from dreamies.de. That is the one that I clicked on by accident and no one knows how to reverse it. Does anyone here know how to reverse it? I was using firefox 3.6 beta 3 when this happened. I am now on firefox 12.
    I already tried right-click the page, choose View Page Info, then click Permissions. The first item is the site-specific permission for images and you should be able to reset back to the default here. This did not work.
    I also tried right-click View Page Info and click Media. Click the first image on the list and observe the Block Images checkbox above the preview at the bottom. Arrow down the list until you come to a site that is blocked and unblock it. There was no unblock just a delete, so I deleted it. This did not work either.
    I know it is a firefox issue because the images are all there when I log in using Internet explorer, but on firefox there are many of my images missing.

  • JSF Popup Menu on right click

    Hi ,
    I want to popup menu on right click of any component(say tree).I searched on the net and found the tomahawk <t:popup> component.
    This component popup the menu when mouse pointer enter in to the component but I don't want this behavior.
    I want to popup the menu only when I right click on the component.
    This is sample program
    <t:popup id="a"
    styleClass="popup"
    closePopupOnExitingElement="true"
    closePopupOnExitingPopup="true"
    displayAtDistanceX="10"
    displayAtDistanceY="10" >
    <h:outputText id="oa" value="#{country.name}"/>
    <f:facet name="popup">
    <h:panelGroup>
    <h:panelGrid columns="1" >
    <h:outputText value="#{country.cities}"/>
    </h:panelGrid>
    </h:panelGroup>
    </f:facet>
    </t:popup>
    DO you have any component like this ? Or any other way to do like this ?
    Thanks in Advance,
    KK

    I wrote a component a while back that does something similar to what you want. You'd probably need to fix it up and add any features that you need that it doesn't already have. It pops up a menu on a right-click, it allows you to provide a facet to supply the contents of the menu. I doubt I made sure it works in IE or any browser other than Firefox... so there may be JS issues. It has some other component dependencies you might want to remove also. I could get it to the point where you could try it out and fix it up if you want, but I won't have time until next week.
    Ken Paulsen
    https://jsftemplating.dev.java.net

  • I can't open bookmarks from the menu in new tab on firefox 6.0 using the mouse middle button or right click. Is this normal?

    I can't open my bookmarks from the menu in a new tab.
    I'm wondering if this is simply not a feature and requires an add-on. I'd rather not need to use an add-on.
    can anybody help?

    Hello,
    '''Try Firefox Safe Mode''' to see if the problem goes away. Safe Mode is a troubleshooting mode, which disables most add-ons.
    ''(If you're not using it, switch to the Default theme.)''
    * You can open Firefox 4.0+ in Safe Mode by holding the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * Or open the Help menu and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Once you get the pop-up, just select "'Start in Safe Mode"''
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one. Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''
    Thank you.

  • Quicktime Movies on published iWeb require right click to start???

    I recently added several videos to my iWeb site. While in iWeb, the movies play fine with a normal left-click of the mouse on the play icon below the "movie screen". However, when I publish my site and go to my URL, I along with anyone else accessing my site, have to either double click the "movie screen" to get the movie to play or have to right-click the play icon. So frustrating... has anyone else had this problem? Anyone out there know how to fix it?
    The movies are exported from iMovie using the Export with Quicktime feature within iMovie.
    Please help!!!!

    The movie is overlapping the footer. Go to the Inspector/Page/Layout pane and increase the height of the content of each movie page by 100 pixels, publish and try again.
    Click to view full size
    You can see the overlap by typing Command+A while viewing the movie page in Safari.
    OT

Maybe you are looking for

  • Problem in compiling C file with JNI

    Hello to all, I have a simple JNI tutorial But after creating the header file using "javah -jni " command when I use that header file in to the C implementation it gives error Following code is of HelloWorld.cpp in which the header file in included #

  • SQL Server 7.0 = Oracle 8i

    I wanted to confirm whether Migration Workbench creates Oracle database while migrating. I have precreated database, but in Oracle Model database name is shows as the same as SQL Server database name. How can we use the existing database while migrat

  • Final Cut Pro X is exporting video with horizontal lines?

    I filmed a show with 2 different cameras (one is a canon vixia, the other is a canon dos 7D, i realize the quality is different for them) and I used the multi cam editor to match h up the clips and audio file to switch back and forth. I think i creat

  • Problems converting from CS2 - eps files show TIFF error

    I have multiple volumes of a violin method book in InDesign CS2 and was considering upgrading to InDesign CS5. While using the trial version (which I just downloaded last night), every single of my eps files (hundreds of images across multiple docume

  • CR2008: parameters ignored when using the PrintToPrinter method

    Hi all, Currently I'm using Crystal Reports in all my add-ons and my algorithm is has follows: - Create a New Report object; - Load the Reports; - Set the reports Parameters and SelectionFormula; - Set the server/database connection info and login in