Video controls does not not in IE11

Hello

I have a typical IE-problem: I have included some videos in my animation (in mp4, WebM and ogv) and his works well in all browsers except IE (I'm using Version 11.0.9600 on Windows 8). He plays the video, but the user cannot use the video controls.

I tried the following remedy:

-disable the video controls: IE shows trhem anyway (other browsers are hiding their as planned)

-create my own video controls on board: works fine in all other browsers, IE execpt - it shows the buttons, but you cannot use them.

-put the videos in an extra Sym

-put the videos on a top layer...

The problem appears during local accommodation and when I put the server, too.

I work with the latest version of edge animate CC2015.

I did a resaeach on google one I have tried a few solutions spooky, with no success.

Is anyone know the problem one fashioned a solution? It would give me a better sleep at all

THX

BeBo

It seems that the only answer reasonable accommodation of YouTube videos ist and nest them. It works very well in all browsers devices. And it produces less traffic on your own server, I guess.

Maybe this solution helps a person at a given time

Tags: Edge Animate

Similar Questions

  • Video controls does not...?

    Hi, guys

    I have a problem;

    in this video player works fine but other controls like play, pause, stop, min/max, mute, mute are not woking,

    scrub bar moving but the video does not. also the volume. (poor in eng)

    // ############# CONSTANTS  
    const BUFFER_TIME:Number                    = 8;
    const SMOOTHING:Boolean                         = true;
    const DEFAULT_VOLUME:Number                    = 0.6;
    const DISPLAY_TIMER_UPDATE_DELAY:int     = 10;
    
    // ############# Variables
    
    var videoURL:String = "filename";
    var connection:NetConnection;
    var stream:NetStream;
    var video:Video = new Video();
    var shoVideoPlayerSettings:SharedObject = SharedObject.getLocal("playerSettings");
    var intLastVolume:Number               = DEFAULT_VOLUME;
    var bolLoaded:Boolean                         = false;
    var bolVolumeScrub:Boolean                    = false;
    var bolProgressScrub:Boolean               = false;
    var objInfo:Object;
    var bolDescriptionHover:Boolean = false;
    var bolDescriptionHoverForward:Boolean      = true;
    var tmrDisplay:Timer;
    var intActiveVid:int;
    var urlLoader:URLLoader
    var urlRequest:URLRequest;
    
    function initVideoPlayer():void {
         
         // hide buttons
         mcVideoControls.btnUnmute.visible               = false;
         mcVideoControls.btnPause.visible               = false;
         mcVideoControls.btnFullscreenOff.visible     = false;
    
    // set the progress/preload fill width to 1
         mcVideoControls.mcProgressFill.mcFillRed.width     = 1;
         mcVideoControls.mcProgressFill.mcFillGrey.width     = 1;
         
    // set time and duration label
         mcVideoControls.lblTimeDuration.htmlText          = "<font color='#ffffff'>00:00</font> / 00:00";
    
    // add global event listener when mouse is released
         stage.addEventListener(MouseEvent.MOUSE_UP, mouseReleased);
    
    // add fullscreen listener
         stage.addEventListener(FullScreenEvent.FULL_SCREEN, onFullscreen);
    
         
    // add event listeners to all buttons
         mcVideoControls.btnPause.addEventListener(MouseEvent.CLICK, pauseClicked);
         mcVideoControls.btnPlay.addEventListener(MouseEvent.CLICK, playClicked);
         mcVideoControls.btnStop.addEventListener(MouseEvent.CLICK, stopClicked);
         mcVideoControls.btnMute.addEventListener(MouseEvent.CLICK, muteClicked);
         mcVideoControls.btnUnmute.addEventListener(MouseEvent.CLICK, unmuteClicked);
         mcVideoControls.btnFullscreenOn.addEventListener(MouseEvent.CLICK, fullscreenOnClicked);
         mcVideoControls.btnFullscreenOff.addEventListener(MouseEvent.CLICK, fullscreenOffClicked);
                   
         mcVideoControls.btnVolumeBar.addEventListener(MouseEvent.MOUSE_DOWN, volumeScrubberClicked);
         mcVideoControls.mcVolumeScrubber.btnVolumeScrubber.addEventListener(MouseEvent.MOUSE_DOWN, volumeScrubberClicked);
         mcVideoControls.btnProgressBar.addEventListener(MouseEvent.MOUSE_DOWN, progressScrubberClicked);
         mcVideoControls.mcProgressScrubber.btnProgressScrubber.addEventListener(MouseEvent.MOUSE_DOWN, progressScrubberClicked);
    
         tmrDisplay = new Timer(DISPLAY_TIMER_UPDATE_DELAY);
         tmrDisplay.addEventListener(TimerEvent.TIMER, updateDisplay);
    
    //----------------------------------------------------------------------------------------------------------------------------------
    
    NetConnectionExample();
    function NetConnectionExample()
    {
         connection = new NetConnection();
         connection.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
         connection.addEventListener(SecurityErrorEvent.SECURITY_ERROR, securityErrorHandler);
         connection.connect("rtmp://servername.host.com/foldername/");
    }
    
    function netStatusHandler(event:NetStatusEvent):void
    {
         switch (event.info.code)
         {
              case "NetConnection.Connect.Success" :
                   connectStream();
                   break;
              case "NetStream.Play.StreamNotFound" :
                   trace("Stream not found: " + videoURL);
                   break;
              case "NetStream.Play.Stop":
                   stopVideoPlayer();
              break;
         }
    }
    
    function securityErrorHandler(event:SecurityErrorEvent):void
    {
         trace("securityErrorHandler: " + event);
    }
    
    function connectStream():void
    {
         var stream:NetStream = new NetStream(connection);
         stream.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
         stream.client = this;
         stream.bufferTime = BUFFER_TIME;
         
         vidDisplay.attachNetStream(stream);
         stream.play(videoURL);
         addChild(vidDisplay);
         vidDisplay.smoothing = SMOOTHING;
    }
    
    //-------------------------------------------
         
         var tmpVolume:Number = DEFAULT_VOLUME;
         if(shoVideoPlayerSettings.data.playerVolume != undefined) {
              tmpVolume = shoVideoPlayerSettings.data.playerVolume;
              intLastVolume = tmpVolume;
         }
    
         mcVideoControls.mcVolumeScrubber.x = (53 * tmpVolume) + 318;
         mcVideoControls.mcVolumeFill.mcFillRed.width = mcVideoControls.mcVolumeScrubber.x - 371 + 53;
         setVolume(tmpVolume);
    }
    
    urlRequest = new URLRequest(videoURL);
         urlLoader = new URLLoader();
         urlLoader.addEventListener(Event.COMPLETE, playlistLoaded);
         urlLoader.load(urlRequest);
    
    function playClicked(e:MouseEvent):void {
              if(!bolLoaded) {
              stream.play(videoURL);
              bolLoaded = true;
         }
         else{
              stream.resume();
         }
              vidDisplay.visible = true;
         
         mcVideoControls.btnPause.visible     = true;
         mcVideoControls.btnPlay.visible          = false;
    }
    
    function pauseClicked(e:MouseEvent):void {
         stream.pause();
         
         mcVideoControls.btnPause.visible     = false;
         mcVideoControls.btnPlay.visible          = true;
    }
    
    function stopClicked(e:MouseEvent):void {
              stopVideoPlayer();
    }
    
    function muteClicked(e:MouseEvent):void {
         setVolume(0);
         
         mcVideoControls.mcVolumeScrubber.x                    = 318;
         mcVideoControls.mcVolumeFill.mcFillRed.width     = 1;
    }
    
    function unmuteClicked(e:MouseEvent):void {
         var tmpVolume:Number = intLastVolume == 0 ? DEFAULT_VOLUME : intLastVolume
         setVolume(tmpVolume);
         
         mcVideoControls.mcVolumeScrubber.x = (53 * tmpVolume) + 318;
         mcVideoControls.mcVolumeFill.mcFillRed.width = mcVideoControls.mcVolumeScrubber.x - 371 + 53;
    }
    
    function volumeScrubberClicked(e:MouseEvent):void {
              bolVolumeScrub = true;
         
              mcVideoControls.mcVolumeScrubber.startDrag(true, new Rectangle(318, 19, 53, 0));
    }
    
    function progressScrubberClicked(e:MouseEvent):void {
              bolProgressScrub = true;
         
              mcVideoControls.mcProgressScrubber.startDrag(true, new Rectangle(0, 2, 472, 0));
    }
    
    function mouseReleased(e:MouseEvent):void {
         bolVolumeScrub          = false;
         bolProgressScrub     = false;
         
         mcVideoControls.mcProgressScrubber.stopDrag();
         mcVideoControls.mcVolumeScrubber.stopDrag();
         
         mcVideoControls.mcProgressFill.mcFillRed.width     = mcVideoControls.mcProgressScrubber.x + 5;
         mcVideoControls.mcVolumeFill.mcFillRed.width     = mcVideoControls.mcVolumeScrubber.x - 371 + 53;
         
              if((mcVideoControls.mcVolumeScrubber.x - 318) / 53 > 0)
              intLastVolume = (mcVideoControls.mcVolumeScrubber.x - 318) / 53;
    }
    
    function updateDisplay(e:TimerEvent):void {
         if(bolProgressScrub)
              stream.seek(Math.round(mcVideoControls.mcProgressScrubber.x * objInfo.duration / 472))
         else
              mcVideoControls.mcProgressScrubber.x = stream.time * 472 / objInfo.duration; 
         
         mcVideoControls.lblTimeDuration.htmlText          = "<font color='#ffffff'>" + formatTime(stream.time) + "</font> / " + formatTime(objInfo.duration);
         
         mcVideoControls.mcProgressFill.mcFillRed.width     = mcVideoControls.mcProgressScrubber.x + 5;
         mcVideoControls.mcProgressFill.mcFillGrey.width     = stream.bytesLoaded * 478 / stream.bytesTotal;
         
         if(bolVolumeScrub) {
              setVolume((mcVideoControls.mcVolumeScrubber.x - 318) / 53);
              mcVideoControls.mcVolumeFill.mcFillRed.width = mcVideoControls.mcVolumeScrubber.x - 371 + 53;
         }
         
         if(bolDescriptionHover) {
              
              if(bolDescriptionHoverForward) {
                   mcVideoControls.mcVideoDescription.lblDescription.x -= 0.1;
                   if(mcVideoControls.mcVideoDescription.lblDescription.textWidth - 133 <= Math.abs(mcVideoControls.mcVideoDescription.lblDescription.x))
                        bolDescriptionHoverForward = false;
              } else {
                   mcVideoControls.mcVideoDescription.lblDescription.x += 0.1;
                   if(mcVideoControls.mcVideoDescription.lblDescription.x >= 0)
                        bolDescriptionHoverForward = true;
              }
         } else {
              
              mcVideoControls.mcVideoDescription.lblDescription.x = 0;
              bolDescriptionHoverForward = true;
         }
    }
    
    function onMetaData(info:Object):void {
         objInfo = info;
         
         if(!tmrDisplay.running)
              tmrDisplay.start();
    }
    
    function stopVideoPlayer():void {
         stream.pause();
         stream.seek(0);
         
         vidDisplay.visible                         = false;
         mcVideoControls.btnPause.visible     = false;
         mcVideoControls.btnPlay.visible          = true;
    }
    
    function setVolume(intVolume:Number = 0):void {
    
         var sndTransform          = new SoundTransform(intVolume);
         stream.soundTransform     = sndTransform;
         
         if(intVolume > 0) {
              mcVideoControls.btnMute.visible          = true;
              mcVideoControls.btnUnmute.visible     = false;
         } else {
              mcVideoControls.btnMute.visible          = false;
              mcVideoControls.btnUnmute.visible     = true;
         }
    }
    
    function formatTime(t:int):String {
         // returns the minutes and seconds with leading zeros
         // for example: 70 returns 01:10
         var s:int = Math.round(t);
         var m:int = 0;
         if (s > 0) {
              while (s > 59) {
                   m++;
                   s -= 60;
              }
              return String((m < 10 ? "0" : "") + m + ":" + (s < 10 ? "0" : "") + s);
         } else {
              return "00:00";
         }
    }
    
    function fullscreenOnClicked(e:MouseEvent):void {
         // go to fullscreen mode
         stage.displayState = StageDisplayState.FULL_SCREEN;
    }
    
    function fullscreenOffClicked(e:MouseEvent):void {
         // go to back to normal mode
         stage.displayState = StageDisplayState.NORMAL;
    }
    
    function onFullscreen(e:FullScreenEvent):void {
          if (e.fullScreen) {
              // switch fullscreen buttons
            mcVideoControls.btnFullscreenOn.visible = false;
              mcVideoControls.btnFullscreenOff.visible = true;
              
              // bottom center align controls
              mcVideoControls.x = (Capabilities.screenResolutionX - 480) / 2;
              mcVideoControls.y = (Capabilities.screenResolutionY - 36);
              
              // size up video display
              vidDisplay.height      = (Capabilities.screenResolutionY - 36);
              vidDisplay.width      = vidDisplay.height * 4 / 3;
              vidDisplay.x          = (Capabilities.screenResolutionX - vidDisplay.width) / 2;
        } else {
              // switch fullscreen buttons
            mcVideoControls.btnFullscreenOn.visible = true;
              mcVideoControls.btnFullscreenOff.visible = false;
              
              // reset controls position
              mcVideoControls.x = 0;
              mcVideoControls.y = 360;
              
              // reset video display
              vidDisplay.y = 0;
              vidDisplay.x = 0;
              vidDisplay.width = 480;
              vidDisplay.height = 360;
        }
    }
    
    function playlistLoaded(e:Event):void {
              // set source of the first video but don't play it
         playVid(0, false)
         
         // show controls
         mcVideoControls.visible = true;
    }
    
    function playVid(intVid:int = 0, bolPlay = true):void {
         if(bolPlay) {
              // stop timer
              tmrDisplay.stop();
              
              // play requested video
              stream.play(videoURL);
              
              // switch button visibility
              mcVideoControls.btnPause.visible     = true;
              mcVideoControls.btnPlay.visible          = false;
         }
         
              vidDisplay.visible                         = true;
         
         // update active video number
         intActiveVid = intVid;
    }
    initVideoPlayer();
    

    change:

    stream.soundTransform     = sndTransform;
    

    TO:

    if(stream){stream.soundTransform     = sndTransform;}
    

    p.s. Please check the useful/correct.

  • "Make window film can not start because your video card does not support the required level of hardware acceleration when you make a movie in windows vista Photo Gallery

    Original title: Hello. I have usedd to make a movie using Windows vista window photo gallery. Now, I can't. could you please help me

    Hello. I used to be able to make a movie using Windows vista window photo gallery. Now, I can't. could you please help me

    That's how I did.

    Open a pictuer using the photogallery.

    I have in the photo gsllery window, click make a movie tab.

    with this click it used to drive me to another window, but no more, instead ii have a message: make movie window cannot start because your video card does not support the required level of hardware acceleration or hardware acceleration is not available

    Hello


    Were there any changes (hardware or software) to the computer before the show?

    Method 1: Optimize the hardware acceleration and check if the problem persists.
    a: Click Start > Control Panel > display
    b
    : click on change display settings , and then click Advanced settings
    c:
    click the Troubleshooting tab, and then click on change settings of
    d
    : make sure that the slider hardware acceleration is set to full, and then click ok.

    Method 2: update the video drivers and check if the problem occurs.
    http://Windows.Microsoft.com/en-us/Windows-Vista/update-a-driver-for-hardware-that-isn ' t-work correctly
     
    Method 3: Perform the steps in the article mentioned below and see if the problem occurs.

    Hope this information helps.
  • XPS 400 video controller does not

    I have a XPS 400 desktop computer that runs currently the 10 Insider Preview Windows operating system and its video controller does not work and so he struggles to play YouTube videos and he is totally unable to play games should be able to play. I once had this computer to run an operating system called Linux Mint and the video controller worked fine until I put Windows 10 on it. In Device Manager the video controller appears under other devices with an exclamation point. I tried to have the search system automatically updates of pilot, but he can't find. In the past I thought that the video controller was that of an AMD processor, but I don't remember why. Recently I watched the original specifications and it comes with an NVIDIA GEFORCE 6800, so I'm not sure she has and this computer has done to my knowledge undergo updates before I owned it but I don't know if its video controller has been changed. Nevertheless, I tried to get help thinking it is an AMD but nothing helps and I tried to download the drivers from NVIDIA but it still does not work as there is very little information on the video controller. Does anyone know a way I could get the video controller to work?

    10 Windows will have to use vista old drivers for video cards of vacuum tube.  XPS 400/Dimension 9150 can run windows etc. 8 or 10.

    Old cards Nvidia cannot use the latest drivers.

    the 340 series is the last version supporting older cards.

    NVIDIA has officially END END of SUPPORT LIFE in April 2016.
    http://www.nvidia.com/download/driverResults.aspx/77224/en-us

    http://NVIDIA.custhelp.com/app/answers/detail/A_ID/3473/~/EOL-Windows-driver-support-for-legacy-products

    But 64-bit versions of windows 8.1, 10 will require Pentium D 915 or higher with the radiator of the performance of copper.

    DirectX June 2010 is required to submit the drivers of DX10, which is what vista uses.

    http://www.Microsoft.com/en-US/Download/details.aspx?ID=8109

    You download and extract in a folder and run DXSETUP. EXE as administrator.

    After that you will need to go into Control Panel, in programs and features add functionality to windows and re enable legacy live show.

    Then install of Chrome.

    http://www.Google.com/chrome/EULA.html?system=true&standalone=1

    Before installing this driver.  You must also add the feature back for legacy Live Show on Control Panel.  If you do all the right things in the right order, it will work.  Control Panel, all the elements of the Control Panel, programs and features, windows features, turning on and outside

    Then do the check boxes.  You MUST BE online when you do this, because he lament not find features and who need to download them from windows update.

    Description Supported OS Download
    ATI TVT2 Wonder Elite - unique analog NTSC TV Tuner internal, v.8.33.7.1, A00 (v64)
    Latest driver for the MCE Vista 64 bit for ATI TV WONDER ELITEmore details
    Windows Vista 64-bit
    ATI TVT2 Wonder Elite - unique analog NTSC TV Tuner internal, v.8.33.7.1, A00 (v32)

    Latest driver for the MCE Vista 32bits for ATI TV WONDER ELITEmore details Windows Vista 32-bit ATI 256 MB RADEON X 850 XT Platinum Edition, Hyper memory PCI-Express X 16 (DVI/VGA/TV out) Radeon X 300 SE 128 MB Radeon X 600 SE, RADEON® X 600 256 MB HYPERMEMORY, 256 MB Radeon X 600, Radeon X1900XTX 512 MB, X 1300 Pro 256 MB, X 1300, X 1300 Pro, dual 512 MB Radeon X1950XTX Crossfire, v.8.332 - 070108 a 1-041388 C - Dell, A01
    64 bit Vista WHQL 8.332 driver from ATI. More details Windows Vista 64-bit ATI 256 MB RADEON X 850 XT Platinum Edition, Hyper memory PCI-Express X 16 (DVI/VGA/TV out) Radeon X 300 SE 128 MB Radeon X 600 SE, RADEON® X 600 256 MB HYPERMEMORY, 256 MB Radeon X 600, Radeon X1900XTX 512 MB, X 1300 Pro 256 MB, X 1300, X 1300 Pro, dual 512 MB Radeon X1950XTX Crossfire, v.8.332 - 070108 a 1-041385 C - Dell - Vista32, A01
    8,332 32 bit Vista WHQL driver. More details Windows Vista 32-bit ATI Radeon X1900XTX 512 MB, v.8.31.100-061024a-039652C-Dell-32Bit-Vista, A01
    32 bit Vista driver 8.31.100 driver for UHMGA14. More details Windows Vista 32-bit ATI Radeon X1900XTX 512 MB, v.8.31.100-061024a-039729C-Dell-64Bit-Vista, A01
    64 bit Vista driver 8.31.100 driver for Radeon X1900XTX 512 MB graphics card. More details Windows Vista 64-bit AGEIA PhysX adapter, v.2.6.2 (plant), A04
    AGEIA PhysX driver updated to take in charge the XPS 710 platform. Adds support for the latest games that use the card AGEIA PhysX and Novodex engine. More details Windows Vista 32-bit
    Windows Vista 64-bit
    Windows XP x 64
    Windows XP ATI Wonder Elite TVT2 - unique analog NTSC TV Tuner internal, v.8.273, A06
    Latest version of the driver for ATI TV WONDER ELITE. More details Windows Vista 64-bit
    Windows XP
    Windows Vista 32-bit
  • Video player does not play movie every time

    Hello

    I am a beginner with flash technology . I use "Flex builder 4.5" and tries to insert a video on a web site that play a lot of films (on DP or Direct Play mode).

    My problem is that the video player does not load the film selected each time (it fail to initialize) and (how to explain properly...) when gel loading, if I select the same movie again in the list, it load it in a second.

    For me, a video is "charged" when metadata are received (video in day time) and the play button is on.

    But the method is called to load the video (in fact initialization) is the same every time. I have change the attribute 'source' of the video player, and the initialize() method is called automatically.

    Can you help me find how to make sure that load a video on my player (in 100% of cases) which extends from the Flex mx.controls.VideoDisplay?

    Or can you explain why the video player does not load the video as well on Firefox than IE or SAFARI (on MAC)? Is the plugin different? Because on an old computer with IE, the video player do not work at all (never load movies).

    For now, I think to add a timer on load and every 30 seconds restart the method init if video not yet initialized. But this isn't a solution, just a patch that may not work.

    I'm french, sorry for syntax errors or other. I tried to be as clear as possible. Feel free to correct me!

    Happy new year to all...

    Okay, I solved it by myself.
    So if this could help someone, I use the attribute "stateChange" of the VideoDisplay component to manage the loading film correctly.

    This site help me powerfully:

    http://blog.flexexamples.com/2007/07/23/detecting-a-connection-error-when-loading-an-FLV-w ith the videodisplay control.

    Good luck next time.

  • Why video player does not open in alcatel 4020d fire c

    Why iam does not open the camera and video player does not work properly please send the answer to this problem and how to reduce the iam

    Can you explain in detail what is happening?

  • I have firefox 13 and 15 but realplayer download this video option does not work, extensions to save plugin is disabled, if no videos do not play in youtube

    I have Firefox 13 and real player 15, but the download this video option does not work, under extensions to save browser plugin is disabled, but if active videos do not play in youtube, error occurs, it's major drawback, it works well with IE, but I prefer Firefox so any help to rectify the issue is appreciated.

    One possibility is to upgrade to Flash 11.2 and re - activate the Plugin RealPlayer browser Record extension in the Add-ons Manager (Tools > Modules > Extensions) (it's a softblock).

    If you need to return to 11.2 Flash you can download Player Flash 11.2 through this direct link:

    You must uninstall version 11.3 Flash.

  • HP 15-500LA OMEN: HP OMEN LIGTH CONTROL DOES NOT WORK

    Hello

    I just got a 15 HP on August 22 and omen control does not change the diodes.  The first thing I did is you update Windows 8 Windows 10. OS is in Spanish

    Control of omen for change the light does not work.

    Can sombody help me to make it work? I'd appreciate help amny

    Thank you so much IMaxx

    I've updated the utility HP System Event and after the reset of the system, it works now

    Thank you once again

  • Qosmio G30-155: video Capture does not work using s-video in port

    Toshiba Qosmio G30-155 video capture does not work via the ports of the video (Windows Vista Ultimate x 86) victory of version 3.90 BIOS
    Video capture does not work in Windows Media Center, even if selected as ports of entry port composite or s-video in Windows Media Center settings.

    In the BIOS version 3.90 parameters via esc - F1 can only select this option: NTSC (USA), NTSC (Japan), PAL (S-video).

    It is worth noting that the laptop is supposed to be capture NTSC for composite input mode

    Someone turned to make this model of video capture for laptop, via composite video input with the new version of the BIOS (version 3.90 win)?

    Can you please explain what you want to do exactly?

    Many years ago I had this old Qosmio with TV tuner and antenna in port so I used it to transfer my old VHS format videos and burn movie DVDs.

    To this end, I didn't use Windows Media Center. Why you n t use other recording applications. I think that everyone is better than Windows Media Center.

  • Satellite X 200 - after upgrading Vista remote control does not work

    Hello

    I have upgrated my Vista Home Premium to Vista Ultimate and the remote control does not work. Well upgraded... I bought Vista ultimate and it installed.

    Is there a driver for my remote?

    You may need to install the infrared driver.
    This driver is required to activate the infrared port on your laptop.

    You can find it here in the X 200 section
    http://EU.computers.Toshiba-Europe.com/cgi-bin/ToshibaCSG/download_drivers_bios.jsp

  • videos app does not show me movies and TV shows, that I recently bought.

    Hi all, I have a problem with my iPhone 6 s, the problem is that the videos app does not show me movies and TV shows, I bought a few hours ago, and I realize that my iPhone 4S has not this problem. Both have installed the latest versions of ios.

    Don't show them where? In the video application itself? Tab in iTunes purchased? If they are not downloaded, go to settings > videos > show iTunes purchases > on.

  • I am expierencing problems with my isight Camera on my MacBook Pro. Suddenly the video camera does not start (no green light on) FT or Photo Booth. The screen is black, if I restart computer it works but after closing the lid, it stops. V10.11.3

    I have problems with my view i camera on my Mac Book Pro. Suddenly the video camera does not work (no green light on) FT or Photo Booth. The screen is black, if I restart it, it works but after closing the lid it stops and I have to restart the computer.  I use V10.11.3. An idea about what is happening

    Hello mpm068,

    Thank you for using communities of Apple Support.

    Since your iSight webcam works up to the time that your Mac goes to sleep, I would like you to start please help desk trying to replicate this problem then to reboot in safe mode:

    1. Choose the Apple menu > shut down.

    2. After your Mac stops, wait 10 seconds, then press the power button.

    3. As soon as you hear the startup tone, hold down the SHIFT key.

      You must press the SHIFT key as soon as possible once you hear the startup tone, but not before.

    4. Release the SHIFT key when you see the gray Apple logo and progress indicator.

    To exit safe mode, restart your Mac, but no press during the startup.

    OS X El Capitan: start in safe mode

    Take care.

  • Re: Satellite L500 iCQ, as Volume Rotary control does not work

    Front volume control does not work. Volume is set to maximum and can only be controlled by the mouse and the slider control.
    Can anyone help?

    To be honest I don't think that anyone will be able to help you with this.
    As far as I know that's not used such mechanical volume on older models of computers laptops, but electronically part controlled by software, so the only thing you can do is to test the functionality with the settings and see if the problem will be the same.

    What else can you do? I do not know. Maybe update the BIOS, but I do not think that this will help you.

    Do you use pre-installed OS original you got with your laptop?
    Have you made some changes or anything that can have a negative influence in this?
    Since when you noticed this strange behavior?

  • Video stream does not

    Skype has always worked well, but the other day when it crashed. I uninstalled and reinstalled but since my video stream does not work. The other person can see my video, but I do not see them, and I don't know why. I can't find anything about whether online to say why that is, if someone could help me fix this please?

    Thank you

    Looks like your graphics display driver crashes. Try to reinstall this driver:

    http://www.ASUS.com/UK/notebooks/ASUS-ZENBOOK-UX305FA/HelpDesk_Download/

    The direct link to this driver is:

    http://dlcdnet.ASUS.com/pub/ASUS/NB/DriversForWin10/VGA/VGA_Intel_Broadwell_Win10_64_VER101815424001...

  • Satellite P100 remote control does not work

    Hello

    Guys, I bought a toshiba satellite p100 and the remote with it does not work...

    no idea why? the battery must be fully charged... but when I press the buttons of the led on the remote control does not work or the other...

    Help, please...

    Thank you...

    Post edited by: qazam

    Hi Qazam

    How did you test the remote control?
    What do you mean who does not? Some functions does not work or a complete remote control cannot be used?

    I read the user manual and it seems that the remote will work under Windows mode with WinDVD or Express Media player, and Windows Media Player when the laptop was not started in the Windows operating system.

Maybe you are looking for

  • Y at - it a shortcut to the address bar?

    Not likeCTRL + K for the search bar then SHIFT + Tab.orF6 then tab (and in some cases another tab) If there are shortcuts in the address bar, then why isn't it listed here: https://support.Mozilla.com/en-us/KB/keyboard%20shortcuts?as=AAQ If there is

  • Re: Qosmio X 300 - 14Y and Windows7 x 64 drivers

    Hello I just buy Windows7 Ultimate and can't use it cos of x 64 driver problems... If possible can admin supported the drivers pls?

  • Satellite L650 - video but no sound on the TV with an HDMI cable

    I can't get his play through the TV connected via the HDMI cable. In the Middle the "digital output" option is not active and cannot be configured. The message is 'not connected '. The State of the unit on the screen of the driver (Conexant Audio Dri

  • View of the Vista file manager

    When I'm in MS Word (or any other Office program - for example, Excel, Powerpoint etc.) and you want to open an existing file, I click on the Windows button (upper-left) andA file manager opens. The default view is always selected to be "small icons"

  • How can I find and delete the app that keeps me close my office?

    Whenever I try to power off my desktop computer, I get a message that says "this app prevents you to close...". "or something. I don't know how to find and delete the app.