No video call buttons

Just loaded Skype on my android phone and my iphone why are there no video. Buttons ?

A Video Call button may not be available when the following criteria is met:
The device is not compatible with video calling. This usually applies to older devices. 
You do not have the latest version of Skype. Be sure you're up to date using the "My Apps" section of the Play Store. or the App Store on your iPhone.
When using a third-party client, video calling may not be available for Skype or may not be officially supported. Always use the official Skype client for your device when making video calls, which is fully supported.
If anything else, please reply. If you're not using the officially-supported Skype client, please install that first and then let me know if the problem still persists.
I.T. Professional
Virtualisation Solutions (VCA-DCV - VMware)
Donating time to help you here with your Skype needs.
If I've answered your question, feel free to "Kudo" me!

Similar Messages

  • Video Call button doesn't existed in Gtalk applica...

    Hi programmers 
    I've a problem of Gtalk Video Call ,
    I installed it from OVI stores and the program works on voice call ONLY , While the video call button not existed .
    I made many of voice call with my friends by it ,but i can't benefited from the video call .
    Plz help me to activate video in the calling .
    The problem shown in that screen snapshot link
    https://fbcdn-sphotos-h-a.akamaihd.n...24504449_n.jpg

    @StormMaker
    Gtalk Video Call quite hit or miss since PR1.3, but have a look at this resource:http://talk.maemo.org/showthread.php?t=85235&page=7
    Happy to have helped forum with a Support Ratio = 42.5

  • Video call button not highlighted

    Greetings.
    I only have 2 contacts on my skype list but when I double click on the names thier profile will display but the video call button won't highlight and I can't click on it and make a video call to anyone.

    Are these contacts Online on Skype? The status icon next the contact's name must be solid green with a white checkmark inside.

  • Create a Skype Video Call button on the desktop in Snow Leopard

    Hi There,
    I'm having trouble working out how to create a script that will allow my 70+ year old mother in law make a video call in Skype from a button on the desktop.
    I found a discussion from 2007 on the forums but the steps don't seem to apply to the Snow Leopard version of Automator.
    Any suggestions would be most welcome.
    Cheers

    OK, have done some digging around and have come up with an Automator workflow that will not only start a video chat, but will speak to my mother in law so that during pauses (like when Skype starts up) she knows what's going on.
    There is practically no info online about how to do this so these instructions are for my reference just incase I forget - but others may find it useful.
    It looks like a lot of work but in reality it only took me 5mins to put together (I promise) and just makes it easier for people who have limited computer experience to call you.
    This works in both Leopard and Snow Leopard and may work in older versions too.
    1. Open Automator
    Open Automator at: /Applications/Automator
    The Automator starting point window will appear
    If you're using Leopard, choose "Custom" and and click the "Choose" button in the bottom right
    If you're using Snow Leopard, choose "Workflow" and click the "Choose" button in the bottom right
    Now you will have a blank workflow document open
    2. Create the Automator workflow
    In the Workflow document window, ensure the "Library" icon in the first list on the far left is selected so all variables are available
    Just above the lists you'll see a little search box, type "hide" into it
    The list will now show the "Hide All Applications" variable
    Click and drag the variable from the list and drop it into the main workflow section on the right
    Type "launch" into the search box and drag the "Launch Application" variable onto the workflow so it is under "Hide All Applications"
    Select "Skype" from the application drop-down menu
    Type "get text" into the search box and drag "Get Specified Text" into the workflow so it's under "Launch Application"
    Type "Now starting Skype, please wait a few moments." into the text box
    Type "speak" in the search box and drag "Speak Text" into the workflow under "Get Specified Text"
    Leave the voice on the default text of "Alex" - he's the easiest to understand bar far
    Type "pause" into the search box and drag "Pause" into the workflow under "Speak Text"
    Set it for 5 seconds. This will allow Skype time to sign-in. Depending on your connection speed, you may need to make it longer
    Shift click on the previous "Get Specified Text" & "Speak Text" variables in the workflow area
    Both should now have blue borders around them
    Hold down the option key and drag both items to duplicate them and drop them under the "Pause" variable
    Now you should have a copy of the "Get Specified Text" & "Speak Text" variables under the "Pause" variable
    If not, just manually add both items again by searching and dragging the variables into the workflow pane one by one as per above
    Replace the text in the new "Get Specified Text" box to: "Now checking to see if <name> is online"
    Where <name> is the person you would like to contact and removing the - I just used the first name
    Option drag the previous "Pause" variable above and drag it so it's under the last "Speak Text" variable
    Leave it at 5 seconds. Again, you may need to allow more time depending on your connection speed
    Type "run applescript" into the search box and drag "Run Applescript" so it's under the last "Pause" variable
    Now you should have an AppleScript window that will show some placeholder AppleScript
    3. Inserting the AppleScript
    Select and delete the placeholder AppleScript
    Copy the following script and paste it into the AppleScript box
    SkypeCall("<skypeUserName>")
    on SkypeCall(login)
    set AppleScript's text item delimiters to " "
    tell application "Skype"
    set foo to send command "GET USER " & login & " ONLINESTATUS" script name "MyScript"
    set UserStatus to my GetPart(foo, 4, " ")
    if UserStatus is "ONLINE" then
    say "<skypeUserName> is online, calling her now."
    send command "CALL " & login script name "MyScript"
    else
    say "<skypeUserName> is not online at the moment. Maybe try again later."
    end if
    end tell
    end SkypeCall
    on GetPart(s, p, d)
    set theList to every text item of s
    return (item p of theList)
    end GetPart
    4. Insert the Skype username of the person you would like to call into the script
    In the AppleScript box, locate ("<skypeUserName>") on the first line
    Change <skypeUserName> to the username of the person you would like to call removing the
    e.g. if the Skype username is johnbrown2, the first line of the script should look like:
    SkypeCall("johnbrown2")
    Do this in the two other places further down the script - remember to remove the when doing so
    These other two ares in the script tell the caller if the person is online or not
    5. Making the workflow a button on the desktop
    In Automator, choose >File >Save As
    Give your workflow a name like "Call John"
    Select "Application" from the "File Format" drop-down list
    Save it to your desktop
    NOTE: If you need to edit the workflow, you'll have to open it from Automater using >File >Open as double clicking it from the desktop will now run the workflow and call the person.
    6. Turning on Speech
    Because the older generation expect this to work like a telephone (and work instantly), I turned on Speech so the script tells them what is going on during the pauses in the script.
    Go to "System Preferences" from the Apple menu top left
    Click the "Speech" icon
    Click the "Speech Recognition" tab/button at the top if it isn't already selected
    Click the "On" radio button
    If this is the first time using Speech, you'll get a window asking you to enable access for assistive devices
    There should be a button to take you to the appropriate preference pane
    If not, just go to the "Universal Access" pane in System Preferences
    Once there (either way) check the "Enable access for assistive devices" box bottom left
    Back in the "Speech" preference pane", under the On/Off radio buttons, click the "Commands" tab/button
    Turn off all the check boxes except "Application Specific Items"
    Close System Preferences
    NOTE: Obviously if you use text to speech normally, leave these last settings alone and just ensure "Application Specific Items" is on (It's on by default normally).
    7. Hiding the Speech Microphone icon
    If you've done everything correctly, you will now have a big round microphone icon showing that can't be hidden
    I dragged mine to the bottom left corner and then further so all you can see is a little bit of the top right corner
    If anyone has a better way of disabling or hiding this big icon, sing out!
    8. Running the workflow and making a call
    Now double click your icon and the workflow will run. The script will check to see if the Skype user is online, if they're not, the script will tell them and stop running.
    If they are online, the worflow will start a video chat as long as you have "Start my video automatically" selected in your Skype preferences under "Video"
    Special thanks to SIMO HUOPIO ESPOO in Finland for the script I found on his blog here: http://huopio.fi/simo/blog/2009/03/learnin...ling-skype.html
    If you don't want the workflow to talk, don't turn on Speech in steps 6 & 7...

  • Video call button doesn't show up

    Trying to make a video call but the option isn't even showing up. Just says: video message, send photos , voice call and I'm. What in the world is going on..

    I'm surprised that the button shows up at all if you override the paint method.
    Why are you setting the location of the button in the paint method?
    Personnally, if I wanted to display a button and an image in the same applet, I'd:
    1) Use a Button in an Applet, not a JButton. I wouldn't mix Swing and plain AWT.
    2) create a new component (say, a Canvas subclass) to display the image. I'd override paint() in this new component only.
    3) add both the new component and the Button to the applet, in the constructor or init(), set the locations of these components there as well, probably just using a LayoutManager
    4) I wouldn't even use try/catch in paint(), but if I did, I wouldn't ignore the exceptions it catches.

  • Video Call button not active? [butonul "suna cu vi...

    butonul "suna cu video"este inactiv ! ce trebuie sa fac ?
    Translation from Romanian language courtesy of Google Translate:
    the "call the video" is inactive! What should I do?

    Is the contact you are trying to call Online on Skype? The status icon next to this contact's name must be solid green with a white checkmark inside.

  • Facebook video calling / chat does not work after windows 8.1 upgrade / update from windows 8

    I originally had windows 8  where facebook calling was working fine. 
    I upgraded to 8.1 (Single language), since then  I am unable to see the Facebook video calling button.
    Facebook videocall button disappeared in each profile.I tried firefox, chrome but all ended up the same.
    Please help.

    Hi,
    Please check this fix:
    To activate video calling
    https://www.facebook.com/videocallnow/posts/250167428331356
    Please Note: 
    This response contains a reference to a third party World Wide Web site. Microsoft is providing this information as a convenience to you. Microsoft does not control these sites and has not tested any software or information found on these sites; therefore,
    Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. There are inherent dangers in the use of any software found on the Internet, and Microsoft cautions you to make sure that you
    completely understand the risk before retrieving any software from the Internet.
    Kate Li
    TechNet Community Support

  • No video call option

    Please help with video problem.  The "Video Call" option is greyed out and unavailable.  How can I reinstall the video call option?
    Solved!
    Go to Solution.

    As stated in my first reply to the original poster, when the selected contact is offline the video call button is grayed out and won't function. When the contact's status becomes online, the button will become bright green and clickable.
    Please note: I do not respond to requests for help via Private Message.

  • Disabling the one-click call button in the Skype m...

    I want to know how to disable the little "Call Phone" or "Video Call" button that pops up when you hover over a contact's status in the Skype main window. Too many times I have accidentally clicked in this spot to activate the Skype window, only to immediately (and inadvertently) call whichever contact I happened to be hovering over. This should be an option, or at the very least require a double click.
    My personal preference is to double click the contact to open the Skype chat window, and then click "Call" from there. Which is obviously an option, provided I don't accidentally click in the minefield that is the Status column in the contacts list.

    Hover and single click call is horrible UI design. Which explains why it was adopted by the Skype developers.

  • Skype Video Calling

    I installed the latest version of Skype to test out video calling between our iPhone 4's and 3GS 8GB, but there is no link for "video" on the contact page - only "call" and "SMS." The other phones also have skype installed. A regular phone call does go through, but no link to video calls.
    Any idea what's going on?

    You can only make skype calls from within your skype app. You don't have any link to skype video calls from within your contacts page. You have to go into your skype app select one of your skype contacts that are online at that time and tap the video call button.
    You can't make skype calls to any of your contacts from your phones contacts list; you have to go through skype
    Message was edited by: neoakl

  • Can only see the video message -no video call ?

    Why is there no video call button only video message.

    the video calla button will be availbe if the contact you want to video call is current online.
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES

  • How can i get skype video calling to work on my mini ipad

    do need an additional webcam for skype calling

    No.  The iPad has a built in Camera that faces the front of the iPad you can use.
    All you need to do, is download the Skype App from the App Store.  Once downloaded, Open it, and sign into your Skype account. If you don't have one, you can create one using the "New to Skype?" Create an Account > " option at the bottom of the screen.
    From there just tap on a contact to bring up the Details page, and tap on the Video Call button to start a call.

  • Green "Call" button not working

    When I click on a contact, the "Call mobile" button faded out and I can't make any call.  I downloaded the current verion. 

    i found the anxwer;
    http://community.skype.com/t5/Community-feedback/E​xplanation-on-Greyed-Out-Video-Call-Button/m-p/548​...

  • How do i set up video call between two huawei y550

    how do I set up video call to two huawei y550

    Hi,
    When you go into the contact you want to call is there not a little portrait icon/phone as this would be your video calling button.
    Thanks,

  • How can I habilitate Facebook video calls in OS Mavericks?

    When I installed the new version of OS X, the video call button in Facebook was gone. I cannot send nor recive video calls in Facebook. I know there are other programs to have video calls, like FaceTime, but not all my friends have an Apple product and almost all of them use Facebook so it is the best way for me to communicate with them.

    HI,
    In the normal setting of Messages this is no longer possible.
    I would use here to ask for the feature back
    http://www.apple.com/feedback/ichat.html
    The page was never very good at keeping up to date with iChat version numbers so type your specs into the Free Text area.
    It might be possible to copy the AppleScript that did this  and make a copy and remove the non Video bits  and use it from the Dock.
    10:06 pm      Tuesday; November 26, 2013
      iMac 2.5Ghz 5i 2011 (Mavericks 10.9)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
     Couple of iPhones and an iPad

Maybe you are looking for

  • You want ideas for skype? Alright, here are some.

    According to "Claudius", in http://community.skype.com/t5/Windows-desktop-client/Wanted-Your-Skype-for-Windows-Desktop-ideas/td-....  We should be giving our ideas.  Well, I have a few, after updating to 6.22, even more so. Idea 1.  Stop taking advic

  • How to download list of PO's from Invoice document number.

    Hi, We have received a querry from one of the end user regarding Parked Invoice document.User wish to download the list of PO's pertaining to one Parked Invoice document number. We can not suggest user to use SE16 due to authorisation issue. Please s

  • Company code withholding tax master record information ???

    Hello, Good morning What is meant by company code withholding tax master record information. Can we assign an WHT exemption code here ?? If so, what is the purpose for creating that code for our company code and exempting here ?? please make this cle

  • Add Plant, item and PO number to tcode FAGLL03 as display option

    Hi All,   Please explain me the ways to include PLANT, ITEM and PO number in the standard report display. The transaction code is FAGLL03.   It will display the GL line items and using 1SAP-Standard layout, there is no way to select PO number and ITE

  • .CSV not supporting Arabic data

    Hi Gurus, My issue is as follows : I got the arabic data in Excel 2003 in .xls format ( from client) . When I am trying to save the same data in .csv format in Excel2003 ( for SQL Loader) , it is not supporting to saving the arabic data. Its saving t