HT201401 Video button not working

When I open the camera on my iphone4s it will not allow me to select video. Help!!

Basic troubleshooting from the User's Guide is reset, restart, restore (first from backup then as new).  Try each of these in order until the issue is resolved.

Similar Messages

  • Video button not working on ipad

    Video function not working.

    Camera screen gives choice of photo, square or video. When I tap video not coming on...has worked in past.

  • Javascript "Play Video" button not working in Firefox

    When clicking on "play video" (java), QuickTime will not open while using firefox. It does work in Google Chrome and IE. I have tried using a clean user profile & allowing popups, and I made sure the Java and QuickTime addons were working and up to date.
    The problem is with twit.tv/twit. Clicking the "Live" link on google.com does play the live stream, but the actual Java buttons are not working in Firefox.
    == URL of affected sites ==
    http://twit.tv/twit

    Make sure that you do not block [[JavaScript]]
    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the ''Safe mode'' start window.
    You have to close and restart Firefox after each change via "File > Exit" (on Mac: "Firefox > Quit")

  • IPhone video button not working

    It snowed in Houston two days ago and I tried to take a video of it on my IPhone 4. I kept pushing on the video button but nothing worked. I found an IPad discussion that said if you had upgraded to OS7 then you needed to slide up and down. Well that didn't work on my IPhone so I tried side to side-low and behold that worked. Why doesn't Apple tell us these things???

    We are just users like you and have no way of knowing why Apple does the things they do.

  • Video buttons not working ipad

    ttapping play works, tapping again pauses - but I cannot slide the video button to FFWD or rewind since IOS 8 update.

    Hi Bob,
    Thanks for your suggestion ! Yes, I already thought of that. But it would be much nicer to have control buttons and just one big video. But again, if it can't be done, it can't be done. And I will probably have to split the video if I want someone to be able to jump to the next chapter.
    Now I am looking into the possibilities to use HTML5 to play the video, but I'm still trying to find out if HTML5 supports some kind of control buttons. If it does, the next step would be to try to insert HTML5 into my project (Overlay creator) and see if my Ipad can play this. I haven't got a clue, don't know anything about HTML5. But I'm ready to find out ... ;-)
    Ton Janssen

  • HT201401 home button not working

    home botton not working

    http://support.apple.com/kb/TS2802
    Look for the section "The Home Button is not Working" under the "Buttons & Switches" header

  • HT201401 volume button not working

    volume button not working

    Sometimes this can be due to short circuit of the charging dock. Clean iPhone charging port with a clean dry toothbrush.

  • Ipod 4th gen volume buttons not working. Volume bar not showing in music or video apps, not a speaker problem as this works fine when testing built in alarm tones???

    Ipod 4th gen volume buttons not working. Volume bar not showing in music or video apps, not a speaker problem as this works fine when testing built in alarm tones???

    Have you tried the standard fixes:
    - Reset:
    Reset iPod touch:  Press and hold the On/Off Sleep/Wake button and the Home
    button at the same time for at least ten seconds, until the Apple logo appears.
    - Restore the iPod from backup via iTunes
    - Restore the iPod to factory defaults/new iPod.
    If still problem you likely have a hardware problem and an appointment at the Genus Bar of an Apple store is in order.

  • TS3274 I can not get my video button to work

    I can not get my video button to work, it will not response when I try to use it

    Try sliding the words up or down to select the various modes.

  • Button not working in browser

    I am coding a video player in Netbeans 6.8. just find two problems:
    1. the browser button not working in browser when I run the project from Netbeans under "run in browser" mode. however under "standard execution" mode, everything is fine.
    2. can not run the jar file in the project's dist directory directly. in other word, I can not run the jar file outside of Netbeans.
    I appreciate any help. thanks.
    Main.fx:
    package gui;
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.paint.Color.*;
    * @author Jethro
    var face=Face{};
    function run(){
        Stage{
            title: "player"
            resizable:false
            scene: Scene{
                width:800
                height:600
                fill:DARKBLUE
                content: [face]
    }Face.fx:
    package gui;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.Node;
    import javafx.scene.control.Button;
    import javafx.scene.layout.VBox;
    import javafx.scene.media.Media;
    import javafx.scene.media.MediaPlayer;
    import javafx.scene.media.MediaError;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.media.MediaView;
    import javafx.scene.control.ProgressBar;
    * @author Jethro
    public class Face extends CustomNode {
        public var lbf=LBF{};
        public var enable=true;
        public var mark="play";
        public var sourceOfMedia:String;
        public def player=MediaPlayer {
            repeatCount:MediaPlayer.REPEAT_FOREVER
            onError:function(e:MediaError){
                var er=e.message;
         media : bind Media {
              source: sourceOfMedia
        public def view=MediaView {
                mediaPlayer:bind player
                preserveRatio: true                    
        public def bar=ProgressBar {
                height:10
                width:bind scene.width
                progress: bind
                    if(player.media !=null){
                        player.currentTime.toMillis()
                            /player.media.duration.toMillis();
                    }else{
                        0.0
        public var play=Button {      
            onMousePressed:function(e:MouseEvent){
                if(enable and player.media != null){
                            mark="pause"; println("playing...");                       
                            sourceOfMedia=lbf.uri;
                            player.play();
                            enable=false;
                }else{
                    mark="play";
                    player.pause();println("paused...");
                    enable=true;
         text: bind mark       
        public override function create(): Node {
            return Group {
                content: [
                    VBox{
                        content: [
                            lbf,
                            bar,
                            play,
                            view,
    }LBF.fx:
    package gui;
    import javafx.scene.CustomNode;
    import javafx.scene.Group;
    import javafx.scene.control.TextBox;
    import javafx.scene.layout.HBox;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Rectangle;
    import javafx.scene.text.Font;
    import javafx.scene.text.Text;
    import javafx.scene.Node;
    import javafx.geometry.HPos;
    import javafx.geometry.VPos;
    import javafx.scene.control.Button;
    import javax.swing.JFileChooser;
    * @author Jethro
    public class LBF extends CustomNode{
        public var uri:String;
        public var whereis=Text {
            fill:Color.BLUE
         font : Font {
              size: 20
         x: 10, y: 30
         content: "location: "
        public var location=TextBox{
            text:"the song's location"
            columns:40
            selectOnFocus:true
        public var browser=Button {
         text: "Browser"
         action: function() {
                    var jfc=new JFileChooser();               
              jfc.setFileSelectionMode(JFileChooser.FILES_AND_DIRECTORIES);
                    var val = jfc.showOpenDialog(null);
                    if(val == JFileChooser.APPROVE_OPTION) {                   
                        location.text = jfc.getSelectedFile().getAbsolutePath();
                        uri=jfc.getSelectedFile().toURI().toString();
                        println(location.text);
        public var face=Group {
         content: [
              Rectangle {
                        x: 0, y: 0
                        width: 800, height: 50
                        fill: Color.SILVER
                     HBox{
                         width:800
                         height:50
                         hpos:HPos.CENTER
                         vpos:VPos.CENTER
                         spacing:5
                         content: [whereis,location,browser]
        public override function create():Node{
            return face;
    }

    thanks for your reply but I need more specific operation.
    maybe I am not very clear about the problem one. I mean when I run the code in standard mode, if I click the browse button, a window will pop out and I can choose a video file from my local harddisk. but if I run it in "web start execution" mode and "run in browser" mode. the browse button make no response when I click it.
    Edited by: Phoenix2006 on Feb 8, 2010 2:35 PM
    Edited by: Phoenix2006 on Feb 8, 2010 2:37 PM
    Edited by: Phoenix2006 on Feb 8, 2010 2:42 PM

  • Video does not work in iOS 8.3

    I have the iPhone 6 128GB. I did update to iOS 8.3.
    I have some problems after the update... video does not work, it wont play, i can click on the play button but nothing happens.
    The problem ocurs in safari when i visit news sites and try to play video in articles.
    When i get snapchat with video... it wont play, it is only black screen with the seconds counting down... and some times it just craches the snap app...
    I cant watch videos in instagram or facebook...
    I live in Norway and I think it is stupid that Apple still has not fixed the keyboard... the "123" key and the "globe" key swithc place with each other in portrait and landscape mode... why...!?! ( this is when i use Norwegian keyboard )
    Yes i have rebooted the phone holding in both buttons until apple logo is visible 2 times
    Yes i have rebooted the phone even more
    Yes i have quitted the apps that was open and the only way i get the black screen away in snapchat is by killing the App...
    Apple... i am not impressed.

    Here is the strangest thing, what works for you does not necessarily help other.  I rebooted my phone several times, and yes, youtube finally worked, but only for some hours then it did not work. I did quit all Apps and rebooted with home and power button pressed inn until apple logo appeared and disappeared again, i had to press power to start the phone. I repeated this step. Now the videos where playing in all apps.  The next morning i did get a snap on my iPhone, i tried to see it, but it was only black screen with text and a clock counted down to 0, but it stopped on 1... and the app froze.
    I dubble clicked the home button, and there where 25 active apps, apps that i had not used for days and note... i manually quitted all apps the day before... how did this apps appear again ? The Apps that where terminated do appear again after reboot... i don't know why, i have still trouble to see video. I hope for a fix from Apple, because i have so much i don't want to loose in my phone.

  • Video is not working with build in camera - HP 856...

    Hello,
    the video is not working since Skype 6.3
    I have HP 8560p with Windows 7 32bit
    Also Skype 6.6 is not able to see build in camera.
    All the drivers are updated.
    Do you have any solution for that?
    J.

    Please, run the DirectX diagnostics tool.
    Go to Windows Start and in the Run box type dxdiag.exe and press the OK button. This will start the DirectX diagnostics program. Run this diagnostics and save the results to a file. Please, attach this file to your post. Info on all installed devices should be available in this file.
    Be aware that you will have to zip this file before attaching it here.

  • IPod home button not working

    Hi
    I have an iPod touch 4th generation and the home button isn't working. It's not the normal issue where it's stuck, or it won't function because you can't press it. The home button on my iPod is visible, as in the black button has been removed and I can see the tiny circular home button, (if you've ever seen the inside the iPod). When I press the tiny circular button, it doesn't work. Circuitry issues, maybe? If anyone could help, I'd be so grateful.
    Fixing the home button (Video) Images of the inside of an iPod
    https://www.youtube.com/watch?v=yi2BIAgDZno

    fix for Home button
    iPhone Home Button Not Working or Unresponsive? Try This Fix

  • Video template not working in simulator

    Man, I am really sorry to have to bring this up...again. I have searched the forums, and I cannot find an answer to this. I am still working in DVD SP 2. I have found that when using a menu template based on a .mov (video) file - for example the Theater Marquee template - instead of a .tif or .jpg template, that the video does not work in the simulator nor does it work if I burn it to DVD then try it in a DVD player.
    PowerMac G4 Dual 1.3GHz   Mac OS X (10.3.9)  

    Let me be a little bit more specific as to what the problem is. If I use any of the menu templates that have a moving, or video, background (which use .mov files) and I go to check them in the simulator, all I see are the title and the buttons. There is a brief one-second flash of the background when it first runs, but then it's just a black background. The music that is associated with it plays, though. I've tried looking at the settings in the inspector, but I can't see anything to change that would affect the display of the template. I have read some other posts where the problem may be solved in DVD SP 3, but I'm not about to drop another $250 or more for a program because the one that should be working doesn't work.
    PowerMac G4 Dual 1.3GHz Mac OS X (10.3.9)

  • "Itunes has detected a problem with your audio configuration. Audio/Video may not work properly".

    Turned my Dell running windows 7 off 2 days ago. Turned on today.  Launched ITunes and got message "Itunes has detected a problem with your audio configuration. Audio/Video may not work properly".
    All my albums are there but won't play.
    Deleted Itunes and reinstalled. Same as before.
    Any ideas ??

    Hey MrCurwen,
    I was able to find an article that included the same error message you're experiencing:
    iTunes for Windows: iTunes cannot run because it detects an issue with QuickTime
    http://support.apple.com/kb/TS1371
    According to that article, if you see the error message "iTunes cannot run because it has detected a problem with your audio configuration," QuickTime may need to be reinstalled. Please follow the steps below to uninstall QuickTime and then download and install QuickTime using the QuickTime standalone Installer.
    On the Start menu, click Control Panel.
    Follow the steps appropriate for your Windows operating system below.
    Windows Vista and Windows 7: Click Uninstall a program (or if using Windows Vista's Classic View of the Control Panel, click Programs and Features) and select QuickTime in the list of currently installed programs.
    Click the Remove button (or Uninstall for Windows Vista and Windows 7) and follow the prompts to remove QuickTime from your computer.
    Download QuickTime. Note: There are two options for downloading QuickTime, be sure to select the option that does not include iTunes.
    During the download:
    If you choose to run the installer, proceed to the next step.
    If you choose to save the download, double click the QuickTimeInstaller file, then proceed to next step.
    Follow the on-screen instructions to install QuickTime.
    Reopen iTunes.
    Cheers,
    David

Maybe you are looking for

  • Program does not break at breakpoint inside stored procedure

    I am using VS 2013 and SQL Server 2012 calling a stored procedure from a C# program. I have a breakpoint set inside the stored procedure, however execution does not stop on it. When my program is running, the breakpoint is hollow (not solid red) and

  • Zoom and extended desktop

    I can't be the first person to notice this, but all my searching hasn't turned anything up... Evidently, when one uses the Universal Access 'zoom' function with a computer with multiple monitors set to extended desktop mode, it doesn't work. The zoom

  • Sending mails based on hierarchy  by using Oracle Alerts

    Hi All, From past five days i am facing problem in Oarcle Alerts that my requirement is i need to send mails based on hierarchy people by uisng oracle alert. In this need to send the mail only the different Hierarchy head person only and i need to do

  • Where do I get xmlbeans.jar?

    Hello, I have the WLS8.1 beta, and I'd like to try some sample code. Where is this jar?

  • Error During Import

    I have one location, Zen 6.5 SP2 (upgraded from Zen 3.2), Netware 6.5 SP5a server. WSImport doesn't work. I have deleted and recreated the server policy, removed and reinstalled the latest agent, added the proper importserver registry key, and even a