Movie menu item no longer visible

The movie item is no longer visible on the menu bar.  Internet, Computer and General are all there.  Everything works including access to YouTube.  Just the movie rental item is not longer there.  Any ideas?

.....this problem is known and is fixed easily but making changes to the network config.  I was hoping someone knew about that.
Most network issues are as a result of interference, with a lesser number being as a result of set up, you could try using another wifi channel for your network if the problem reoccurs at regular intervals after restarting your equipment.

Similar Messages

  • Firefox 18.0.1 Mac OS 10.6.8: "Services Menu" items no longer available, "No Services Apply" only item showing.

    Where have the 'services menu' items gone? How can they be recovered/reinstated? Tried 'reset' ; tried restart -- still no 'services' (e.g. "email address", "open URL").

    Thanks, that answer would SEEM to make sense.
    But I deleted  all the preference files (not just the one you suggest) and restarted , etc... several times.
    End result: Flash CS4 still crashes, if not on opening, then everytime I try to open my old documents and reset the preferences.
    I am currently reinstalling my entire hard drive just to try to get CS4 to work again.
    I have worked with Flash since 1998, using it professionally for everything from short interactive demos to feature length animated films.
    CS4 is without a doubt the most poorly designed, inefficient version I have ever dealt with.
    A great and useful animation program was turned into a piece of bloated garbage filled with bugs and inefficiencies.
    I will switch to the first animation program that comes along to replace it, now that adobe seems to think the only real use for flash is to create low level acton scripts (despite being used for tv show level animation production for years.)
    These forums amply demonstrate that adobe has almost no useful support for its products and no real vision or idea of what it is doing.
    The fact that you can no longer even export flash as a quicktime movie that actually accurately plays is another nail in the coffin.
    I wish somebody at Adobe cared.

  • 1st Gen Movie Menu Items Missing

    I have a first generation Apple TV. However, recently I am unable to purchase Movies, TV shows etc because the Menu Items to do so no longer appear. There are main menus for Movies, TV shows etc but there are no sub-menus beneath them to puchase a movie or watch trailers etc. I have switched the Apple TV on and off, logged out and back into my iTunes and WiFi account, done a complete factory reset of the Apple TV and reconnected to iTunes on my MacBook but still the Menu options to purchase movies etc have not reappeared. iTunes on my Macbook syncs perfectly with the Apple TV and I can watch movies that have been synced, I just cannot buy or view movies/TV shows etc because the option to do so are not on the respective menus. Very frustrating. Any help appreciated.
    Cheers,
    PS

    There is a fault with iTunes and apple tv 1
    See this thread
    https://discussions.apple.com/thread/6099057?start=165&tstart=0
    Report it to apple

  • FrontRow freezes on attempt to leave Movies menu item.

    There are times after I've watched a few videos in Front Row by using it to browse my movies directory that when I press menu to back out it will get to the root Movies menu and just pause, unable to return to the full root menu where you select between Movies, iTunes, iPhoto and DVD Player.
    I'm not too sure what is causing this, just that it happens rather indiscriminately thought it seems to happen when I've watched a few videos (25 minutes in length) and then try to back out of Front Row.
    Anyone know why this might be and/or a way I can fix it?

    Same here.
    I was watching a movie streamed wirelessly from an external drive last night, after an hour I hit Menu on the remote, and got a frozen black screen.
    This is on a brand new Mini with 2GB RAM.
    Somehow the Mini had also dropped the bluetooth connection with the keyboard, so I couldn't even Force Quit out. Eventually I had to do a hard reboot with the power button, which was something I'd never expected to do with a brand new Apple computer.
    Overall, a very disappointing experience.

  • Menue item is not visible

    heloo
    this is code for My jframe
    i try to put file menu and i put it in but there is problem and drop menue is not visible but it dos work (if u now where the items are )and
    if you have no idea then is it possible to create 3 different menue and ask action performed to look at there event instead of Jmenue item.
    because if i cant find solution then thats my only way
    bu how should i ask for actionPerforme to listen to them.
    class ChessMa extends JFrame implements ActionListener {
    JMenuItem item;
    JMenu m;
    JMenuBar bar;
    public ChessMa()
    {  setTitle("CHESS PLAYER GAME" );
    setSize(400,490);
         addWindowListener(new java.awt.event.WindowAdapter() {
         public void windowClosing(java.awt.event.WindowEvent e) {
    System.exit(0);
    JMenu m= new JMenu ( "File");
    m.addActionListener(this);
    m.setPopupMenuVisible(true);
    item =new JMenuItem("Save");
    item.addActionListener(this);
    m.add(item);
    repaint();
    item=new JMenuItem("Load");
    item.addActionListener(this);
    m.add(item);
    JMenuBar bar = new JMenuBar () ;
    bar.add(m) ;
    setJMenuBar(bar);
    public void actionPerformed(ActionEvent e)
         //if (e .getSource() instanceof item)
    String arg= e.getActionCommand();
    if (arg.equals("Save"))
              { System.out.println("save");}
         else if (arg.equals("Load"))
              {System.out.println("load");}
         else if (arg.equals("File"))
              {System.out.println("���22222222���!!");}
    public class ChessMan{
    public static void main(String[] args) {
    JFrame frame = new ChessMa();
    ImageIcon customImageIcon = new ImageIcon("ac516.gif");
              Image customImage = customImageIcon.getImage();
              frame.setIconImage(customImage);
              // Japplet Class
    ChessPlayer javaAppletication = new ChessPlayer();
              javaAppletication.init();
    javaAppletication.start();
              Container content = frame.getContentPane();
         content.add(javaAppletication, BorderLayout.CENTER);
    javaAppletication.setBackground (Color.black);
         frame.setVisible(true);
    frame.show();
    frame.pack(); // invokes getPreferredSize()
    // invokes paint();
    }

    Hi,
    I think you want your file menu to be visible as soon as your frame opens. If I'm correct, then you can run the code pasted below. You were trying to make file menu visible when it was not showing.
    Best regards,
    Pratap
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class ChessMa extends JFrame implements ActionListener, WindowListener {
         JMenuItem item;
         JMenu m;
         JMenuBar bar;
         public ChessMa()
              setTitle("CHESS PLAYER GAME" );
              setSize(400,490);
              addWindowListener(new java.awt.event.WindowAdapter() {
                   public void windowClosing(java.awt.event.WindowEvent e) {
                   System.exit(0);
              m= new JMenu ( "File");
              m.addActionListener(this);
              m.setPopupMenuVisible(true);
              item =new JMenuItem("Save");
              item.addActionListener(this);
              m.add(item);
              repaint();
              item=new JMenuItem("Load");
              item.addActionListener(this);
              m.add(item);
              JMenuBar bar = new JMenuBar () ;
              bar.add(m) ;
              setJMenuBar(bar);
              addWindowListener(this);
         public void actionPerformed(ActionEvent e)
              //if (e .getSource() instanceof item)
              String arg= e.getActionCommand();
              if (arg.equals("Save"))
                   System.out.println("save");
              else
              if (arg.equals("Load"))
                   System.out.println("load");
              else
              if (arg.equals("File"))
                   System.out.println("���22222222���!!");
         public static void main(String[] args) {
              ChessMa f = new ChessMa();
              f.setLocation(300,300);
              f.show();
         public void windowOpened(WindowEvent e) {
              m.doClick();
         public void windowClosing(WindowEvent e) {}
         public void windowClosed(WindowEvent e) {}
         public void windowIconified(WindowEvent e) {}
         public void windowDeiconified(WindowEvent e) {}
         public void windowActivated(WindowEvent e) {}
         public void windowDeactivated(WindowEvent e) {}
    }

  • Can i move menu items(i.e. PhotoShop) from my mac to an ipad

    i want to have menu boxes displayed on an ipad to keep my screen free of clutter, organized and to make the menus a little more ledgable.

    Not entirely sure what you mean, but you can't move/copy Mac program's onto the iPad as they are different operating systems and they aren't compatible. You can arrange your apps on the iPad into app folders by resting and holding one of them until they start to shake and then dragging one app over and on top of another app - folders are covered in the iPad manual : http://support.apple.com/manuals/iPad

  • Finding which menu item has been clicked

    Does oracle forms have anyway of knowing which menu item has been clicked.
    I have a security structure set up where menu items are made visible depending on their name, which in turn is based on the individual forms that a particular user can access.
    I would like to write a generic method for all menu items where it uses the name of the clicked menu item to perform a query, the result could be used to open a new form.
    So is there a build in or some 'secret source' which tells me the name or gives me the id of a clicked menu item?
    Message was edited by:
    gazbarber

    Not entirely sure what you mean, are you sugesting i have a generic method with a switch statment and uses the input paramter to decide what to do?
    It's not really what i'm after, rather I already have the name of the menu item in the database, the same table also contains the module filename that clicking the button should go to.
    So the idea would be somthing like
    declare
    begin
    select module name into new form from secutity table where menu item = :system.current menu item;
    open_form(new form);
    end;
    :sysem.current menu item is the missing ingreadiant.
    My menu has many items in the hundreds i think so even the generic switch staement would be pretty tedious and i want changes in the database to be felt system wide as they are else where in my system.
    Thanks for you help and i hope this explains my question better.
    Regards,
    Gareth
    Message was edited by:
    gazbarber

  • Moving menu items

    Blackberry Curve 8330 - Is it possible to move Menu items? For example - While in the Inbox, and highlighted on an email, I press the Blackberry key / button to the left of the trackball and the list of menu items opens. The "Reconcile Now" option is far down on the list. Is there a way to move that up?

    Hi,
    Sorry NO,.
    The menus are hard coded into the OS.
    Checked out my Blackberry FAQ's and Links to Needed Articles here
    http://darkeen.homelinux.com/index.php/Blackberryfaq

  • My search bar for my library no longer works. Also, the menu bar is no longer visible. Noticed this problem last Saturday. Can anyone help me with this?

    My search bar for my iTunes library no longer works. Also, the menu bar is no longer visible. Noticed this problem last Saturday. This might be an issue with my desktop, and not iTunes itself Can anyone help me with this?

    Press Ctrl-B to toggle the menu bar on and off.
    When you say that the "search bar for my iTunes library no longer works" can you be more specific?  The operation of the search function has changed in iTunes 12, essentially having two very distinct modes:
    when Search Entire Library is checked, entering a search string will generate a dropdown of all matching items within your whole library, from which multiple operations are available via context menus
    when Search Entire Library is unchecked, entering a search string creates a filtered view of whatever your current focus is (e.g., if you're looking at a playlist the filter applies only to items in that playlist) with none of the dropdown options as in the first case

  • Menu item moves in active state

    I'm using the "Right Icon" to implement a long vertical seperator between menu items:
    laurensilverceramics.businesscatalyst.com
    I've deleted the Rollover, Mouse-Down and Active states of the menu items.  But when a menu item becomes active - it move put by 20 pixels or so.  Any idea on how I can fix this?

    Hi Ryan,
    From looking at the navigation on the site and the corresponding code, it seems you are using a Composition Widget rather than a Menu Widget. The code generated for the Industries link is different than the others as if in its case, the link was applied to chunks of text/content inside the trigger rather than the trigger itself. Recreating that particular item in the composition and applying link just like others should apparently fix this. I would appreciate if you could send your current .muse file to [email protected] along with a reference to this forum thread and mark it to my attention in the Subject? If the file is larger than 20MB, please use an online file sharing service such as WeTransfer or YouSendIt.
    Cheers,
    Vikas

  • Autoplay to next menu items without making it an autoplay movie

    I have created my dvd menus.. I have 6 different movies within the dvd.. when you click on any of the menus it plays that movie and then returns to the main menu.. Is their a way to have it just automatically go to the next menu item? I know how to create an autoplay movie, but that just plays the entire dvd... what if someone wants to start with the third movie.. I can't find anywhere to allow this to happen,, any help would be great..
    thanks,

    Bengt is correct about there being a way to put videos into the slideshow well of iDVD and then they will play consecutively. Here is a visual from Old Toad showing how to do this:
    http://homepage.mac.com/toad.hall/.Pictures/Forum/iDVD8movieSS.png
    You could also put all the videos into one iMovie and then mark each one as a chapter in the movie. Then you would have the options of playing the movie or selecting which chapter to view. As with commercial DVDs, selecting a chapter will play the movie from that chapter to the end of the movie.
    The only way to have both is to do what Bengt said and have one long movie for the 'play all' option and separate individual movies that can be selected separately and played, returning to the menu after each one.

  • Setting visible/invisible when menu item is contained/not contained

    Hello All,
    I have a vertical rectangle (the containerButtonsRect) that contains menu items (text). The items slide up and down when using up and down keys. When the items go out the container I want to make them invisible. When they come back in the containerButtonsRect I want to make them visible. The following code does not work:
    override public function create(): Node {
            for (i in [0..sizeof labelButtons - 1]) {
                def menuItem:MenuItem = MenuItem {
                            x: bind containerButtonsRect.x
                            y: bind (containerButtonsRect.y + (i+1)*ySpacing + i*maxButtonHeight)
                            width: bind containerButtonsRect.width
                            height: bind maxButtonHeight
                            content: labelButtons[i]
                            translateY: bind tracker*deltaY
                            visible: bind ((menuItem.y + translateY > containerButtonsRect.y) and ((menuItem.y + translateY + maxButtonHeight) < (containerButtonsRect.y + containerButtonsRect.height)))
                insert menuItem into menuItems;
                if (i == focusedIndexItem) {
                    menuItems[focusedIndexItem].selected = true;
                updateMaxSize(menuItem);
            return Group {
                content: bind [
                    containerButtonsRect,
                    selectionRect,
                    menuItems
        }It is strange that the following line:
    visible: bind ((menuItem.y + translateY > containerButtonsRect.y) and ((menuItem.y + translateY + maxButtonHeight) < (containerButtonsRect.y + containerButtonsRect.height)))does not do the job.
    Is there a better way to set the visible attribute based on the logic described above?
    Thanks.
    Edited by: sacchett88 on Jun 9, 2010 2:10 PM

    Thank for the response.
    The translateY is set to provide vertical motion. A time line is controlling the tracker variable. So when I move arrow up/down the items scroll up/down.
    I agree JavaFX have way complicated the different variables you can set to position components and retrieve width and height. This cause a lot of problems hard to debug.
    Interesting your ideas of setting the clip of the group. I am not to familiar with that attribute as well the description in the docs: http://java.sun.com/javafx/1.3/docs/api/javafx.scene/javafx.scene.Group.html is poor:
    "Specifies a Node to use to define the the clipping shape for this Node."
    Is there any example you could point me out to ?
    Thanks.

  • HT1368 why is the "buy all" no longer visible on my wish list? and it is not letting me delete items.?

    why is the "buy all" no longer visible on my wish list? and it is not letting me delete items.?

    The 'buy all' has, for some reason, been removed from the current version of iTunes - you can try leaving feedback for Apple and maybe it'll be added back in a future update :http://www.apple.com/feedback/itunesapp.html . Until then you can only buy items individually.
    In terms of the 'x' for deleting items from it, other people have posted about that and it's affecting me as well. I assume that there is a bug with the current version of iTunes and/or a problem at Apple's end which they need to fix.

  • Strange ATV2 behaviour - Movies can't be selected for downloaded & most menu items not selectable??

    ATV2 fully online, previews movies, downloads YouTube, Homesharing all good (and a seasoned ATV owner and user)
    However download movies is not working, and no error message just a "beep" sound when you select "rent movie".
    Also many of the menu items cannot be selected.  You cannot down select most of the items under General, so it's impossible to change settings, or to do any troubleshooting.  You get the same "beep" sound when you select Name, Network, iTunes Store, Reset, etc.
    I have done the usual power down, plus reset using remote, but the system doesn't seem to go back to factory default.  I haven't tried the mini-USB connection to MAC as I don't have a cable but hoping someone can help?

    <Button guid="guidCBExtensionPkgCmdSet" id="cmdIdCBAutoSave" priority="0x0100" type="Button">
    <Parent guid="guidCBExtensionPkgCmdSet" id="CBAutoSaveGroup" />
    <Icon guid="guidImages" id="bmpDisk" />
    <CommandFlag>TextChanges</CommandFlag>
    <!--<CommandFlag>DefaultDisabled</CommandFlag>-->
    <Strings>
    <ButtonText>Enable Document AutoSave</ButtonText>
    </Strings>
    </Button>
    private void OnBeforeQueryStatus(object sender, EventArgs e)
    DbgMessage("OnBeforeQueryStatus");
    var myCommand = sender as OleMenuCommand;
    if (null != myCommand)
    switch (myCommand.CommandID.ID)
    case (int)PkgCmdIdList.CmdIdCBAutoSave:
    myCommand.Enabled = true;
    myCommand.Text = _autosaveEnabled ? "Disable Document AutoSave" : "Enable Document AutoSave";
    break;
    case (int)PkgCmdIdList.CmdIdCBAutoSaveProject:
    myCommand.Text = _autosaveProjectEnabled ? "Disable AutoSaveProject" : "Enable AutoSaveProject";
    myCommand.Enabled = _autosaveEnabled;
    break;
    default:
    break;
    DbgMessage(string.Format("Id: {0} Text: {1}", myCommand.CommandID.ID, myCommand.Text));
    Very puzzling that I have only seen the bad behavior on Win8.1, and not when debugging the extension.  (Haven't been able to try the extension on Win8, but have tried it on several Win7 computers, and one WinServer 2012 R2 computer.)
    Is there someplace to look for runtime exceptions?  I haven't seen any in the Output window when the bad behavior occurs....
    (If you want to try the extension, you can add a gallery and point it to www.cbates.net/VSIX/atom.xml.)

  • Why does my Desktop Mouse freeze (moves erratically) when selecting menu items in PSE13 Editor?

    It seems that my computer with 8GB of memory may not be enough to use PSE13.    The Organizer menu works fine when I select menu items.   The problem is when I switch to the Editor.   My mouse starts to freeze, move fast, or too slow.  It is difficult to select
    a menu item in this situation.

    Unusual. In theory PSE13 should be better as it's a 64 bit application.
    Can you try re-setting the prefs then close and re-launch the Editor. First you need to go to:
    Edit >> Preferences >> General
    Then click the button shown on the image below.

Maybe you are looking for

  • Smaller desktop size but preserving screen resolution (add borders)

    Does anyone know if it's possible to add borders to my screen (the device) (using xrandr maybe)? I have some old TV which has HDMI connector. It can show 720p resolution. Problem is that, for some very odd reason, it cuts about 20px from _every_ side

  • Document Type UB

    Hi Can it possible to assign document type UB to sto with delivery and sto without delivery at same time ?

  • Performanance issue

    Hi, I have a performance issue in my package. I am getting "comma seperated" records(apprxly 5000) from front end to my package and i am inserting the records into the table by calling the table package.It is taking 2 mins to load 1000 records.But i

  • Performance degrades after stats collection

    Oracle 11gR2 OEL 5 We have several very large tables (40 million rows and up) and recently we gathered stats on the tables and it degraded our performance. It started doing full table scans instead of using the indexes. The same queries are fine in o

  • Doubt on Hardware Load Balancing?

    Hi Community,      I think there are two ways to perform the load balancing.One of them is proxy and other one is hardware load balancing.I have know something about the Proxy related Load balancing using Apache,oracle HTTP server and others.My quest