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

Similar Messages

  • 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.

  • 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!

  • 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.

  • I bought ipad from UAE and went Egypt , Facetime call icon doesn't exist so i can't find facetime call

    i bought ipad from UAE and went Egypt , Facetime call icon doesn't exist so i can't find facetime call

    Ipads purchased in the UAE do not have FaceTime as it is prohibited by the UAE. You cannot add FaceTime to those iPads no matter where it might be used.

  • 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...

  • IWeb video play button doesn't work

    I've got several videos on my website, but for some reason the play buttons don't work. You can play the video by double clicking it, but you can't even activate the play button.
    web.me.com/patrickjw

    Re: iWeb play buttons not working and your fix about showing the different elements of the page.
    I too had problems with the slideshow play buttons not working (iWeb '09). Whether I published to a folder or the internet, the buttons just wouldn't work. After spending much too much time on it, I almost gave up. Until I read your post about one element overlapping another. Although my problem was slightly different then the one you were addressing, your post gave me the answer I needed.
    Here's the problem and the fix:
    I created the typical 'Photos' page. But I got too fancy and that was the problem! For design reasons, I put a frame around the outside of the 'Photos' element. Using the 'Shapes' tool, I created a frame with a thin ruled border and had a 'fill' of 'none.' The 'none' fill made it possible to see the photos and buttons through the frame I made. Kind of like a hole in the frame so I could see through it. It was the last thing I did, so it was on top of everything else. It was the top element on the page. AND THAT WAS THE PROBLEM: IT WAS THE TOP ELEMENT. IT BLOCKED THE BUTTONS UNDERNEATH FROM WORKING! Even though I saw the photos and buttons ('Play Slideshow' & 'Subscribe') through the 'hole' I had in the frame, the frame was still on top and blocked the buttons from functioning. iWeb didn't recognize the 'none' fill and saw the frame as completely opaque. As soon as I made the frame the back element on the page (Arrange>Send To Back), all the buttons worked!!! Everything looked exactly the same to the naked eye as it first did, but now iWeb saw it differently and everything, all the buttons, worked.
    Since this situation doesn't seem to be documented anywhere in iWeb, I thought I'd pass the info along.
    Although I still have some things that bother me about iWeb, the program is looking a lot better to me today then it did yesterday!

  • 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.

  • The end call button doesn't t work some time on E5

    DOES ANYBODY HAD THAT PROBLEM.

    ya it usually happens whenever you want to end the call and press end button it disconnects the call but it still shows that the call is still connected i think Nokia must release Nokia E5-00 firmware update very soon!
    sMhsn

  • I purchased an App it does nothing and the Report this App button doesn't exist, what other recourse do I have?

    My kidspurchased Littlest Pet Shop for the iPad2.  It loads and then does nothing.  There is no Report this App button in the top right corner as suggested in App Support.  What else can I do?

    Contact iTunes Support: http://www.apple.com/support/itunes/contact/

  • The call button doesn't react. Insertion installation anew helps. It is established 5,0,1. How it is possible to win it?

    Добрый день. Возникла проблема с телефоном iPhone 4s. При наборе номера кнопка звонка не активна. Помогает полная перепрошивка телефона. Установлена iOS 5.0.1. Как решить эту проблему. Это происходит раз в неделю.

    Try this: How to back up your data and set up as a new device and don't use the latest backup to restore from, your backup might contain corrupt data causing this problem.
    Translated by google:
    Попробуйте это и не используйте последней резервной копии для восстановления, резервного копирования может содержать уничтожение информации, причиной этой проблемы: ОС iOS: создание резервной копии устройства и его настройка в качестве нового устройства

  • IChat video call doesn't work.

    When I try to video call, it doesn't go through. It says it is starting the call but on the other person's screen it still says waiting. Why doesn't iChat video work?

    Hi,
    Version of iChat ?
    To which Version of iChat ?
    Countries involved ?
    If within the United States which parts (you will have to tell me North, South, East or West as State names don't really mean anything to me.
    Internet Providers ?
    10:51 PM      Monday; August 27, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.2)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Video call problems

    I have a 7" Kindle Fire HD. When I am going to use Skype on it, I make sure to reboot it first by holding the power button down. Then, when I try to make a video call, it won't work. My recipient says like there's a bad connection. After about the 20th time of pressing the "video call" button, we can hear each other. Then, about 5 mins. later, the video starts working and we can both see each other. Why does it take so many tries to get it to work? Thanks.

    First are you using a external microphone or the built-in microphone? Check if your microphone is on first by going to Control Panel and then selecting Sound, then in there look for the Recording tab and select External Mic or Integrated Microphone Array whichever you're using, and once selected either then select Properties, now this is a very important part.
    First under General tab look to see next to Device Usage that it is selected "Use this device (enable)" next click on Levels tab and change Microphone array slider to 100, and try changing the Microphone Boost slider to 10 dB (You should undo this if the noise level on the receiving end of the person comes out too loud or distorted as microphone boost can be responsible for that).  After you've made changes hit "Apply" then "Ok" and exit out to see if the microphone now works. If it still doesn't work open up Sound in control panel again and go back to the Recording tab and now speak into your laptop microphone, everytime you speak you should see a green bar moving up and down meaning sound is being picked up by the microphone, meaning your hardware is working good and it is the software that you're using thats not picked up the microphone.
    If you're using Skype go into settings and see if you can try to select or detect the microphone, if you're using Gmail video chatting then go into Gmail, on the top right select Settings then select the Chat tab, and under the Voice and Video Chat area you should see a Microphone drop down menu, in the drop down select Integrated Microphone Array (referring to your built-in laptop mic) or select External Mic (referring to any usb-plugged in microphones)
    Say thanks by clicking the "Kudos! Star" which is on the left.
    Make it easier for other people to find solutions, by marking my answer with "Accept as Solution" if it solves your issue.

  • 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.

Maybe you are looking for

  • Playback static on burned cd's

    HELP!! So far I have; Changed burn speed, purchased a brand new stack of CD-R media, re-downloaded and installed itunes 6, and AND Purchased a brand new CD BURNER!!!!! I have been on the phone with itunes support for over an hour just to be cut off w

  • Inventory Management with u0091Material Document No.u0092 and u0091Purchase order No.'

    Hello, We have defined Inventory Management InfoCube analog to 0IC_C03 without ‘Material Document No.’ (R3 Field MBLNR) and ‘Purchase order number’ (R3 Field EBELN). We are loading the data from standard extractor 2LIS_03_BX, 2LIS_03_BF and 2LIS_03_U

  • IMac Intel slow to connect to Internet

    Hi there. I am using a new 24" Intel iMac but am finding that it is taking a while to connect to the internet. It sort of sits there like it's thinking for about 5 seconds and then goes to the page. It is connected to a network via Ethernt and basica

  • User defined field in routing screen

    Hi, we have to define 7 activiteies as std activities under work center. as you know we can define 6 parameters only in work center. pls advise can we define 7th activity by using user defined field in ca02 screen. pls advise how to make the settings

  • Example of config task list available ??

    I try to create a config task list but it's not working ? I created charateristics with CT04 (with one field zamount) linked to a class created with CL02 created a general task made a configuration profile for the general task with CU41 but when I en