[CLOSED] Image Button - Open Skype Chat Room

  1. #1

    [CLOSED] Image Button - Open Skype Chat Room

    Hi All,

    We have a page to list of the users with skype status. Also we provided a option to open skype chat room when the user can select a user. This process is working well in IE browser. Other browsers (Firefox and Chrome) are not support this kind of proces. The following source we have used,

    Toolbar and anchor tag icon...
    <a href="#" id="a_startchat" onclick="ProcessSkypeChat();"></a>
    
    <li>
     <ext:ImageButton runat="server" ID="btnStartChat" SkinID="tbarSkypeChat" AutoPostBack="false">
     <Listeners>
     <Click Delay="1" Handler="a_startchat.click();" />
     </Listeners>
     </ext:ImageButton>
    </li>
    Javascript to open Skype chat window,
    function ProcessSkypeChat() {
     var GridRecords = gd_user.getSelectionModel().getSelections();
     var a = document.getElementById("a_startchat");
            for (i = 0; i < GridRecords.length; i++) {
      if (GridRecords[i].data.SkypeName != "") {
       a.href = "skype:" + GridRecords[i].data.SkypeName + "?chat";
       return true;
      }
      else {
       Warning(skypeRequiredMessage, requiredtitle);
      }
     }
     if (GridRecords.length == 0) {
      Warning(requiredmessage, requiredtitle);
     }
     a.href = "#";
     return true;
    }
    Please help us to resolve this issue.

    Thanks & Regards,

    Rameshkumar
    Last edited by geoffrey.mcgill; Sep 17, 2011 at 7:31 PM. Reason: [CLOSED]
  2. #2
    May be it is better to ask about it on some skype development forums
    Ext.Net is not related with skype functionality and we don't familiar with it
  3. #3

    Image Button - Open Skype Chat Room

    Hi Vladimir,

    I have used image instead of image button it is working fine.
    Thanks

    Quote Originally Posted by Vladimir View Post
    May be it is better to ask about it on some skype development forums
    Ext.Net is not related with skype functionality and we don't familiar with it

Similar Threads

  1. [CLOSED] When button click, open the menu of button
    By supera in forum 2.x Legacy Premium Help
    Replies: 2
    Last Post: Feb 22, 2012, 4:23 PM
  2. [CLOSED] [1.0] Messenger/Chat Implementation
    By fehmeed.bilgrami in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Apr 09, 2010, 2:05 AM
  3. how to open new browser when i click button
    By Dinesh.T in forum 1.x Help
    Replies: 4
    Last Post: Mar 24, 2010, 3:48 AM
  4. Replies: 3
    Last Post: Mar 26, 2009, 1:25 PM
  5. [OPEN] Toolbar button spacing
    By jchau in forum Bugs
    Replies: 5
    Last Post: Jan 22, 2009, 1:18 PM

Tags for this Thread

Posting Permissions