|
-
 Originally Posted by angelhdz
Why do you want to have the skype status appi inside a flash template/site? Why just not put it in the HTML site?
This is the site for making a skype status button html based http://www.skype.com/intl/en-us/tell...-skype-button/
If you have a flash template embbeded on a site, you can just have this skype status button below the flash object, so , no need to put it inside flash. 
I embed the code in the index.html page , kindly view is it all-right I have some confusion till , please take a look in the front page.
http://www.flashybee.com/gaf/test/
I like when the user view this page he clicked this button open to start chat with the person having Skypee Id "berjozkin_23" , this is the code I pasted in the index.html page
Code:
<div id='show_status_1'></div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="http://download.skype.com/share/skypebuttons/js/skypeCheck.js"></script>
<script>
/* ****************************************************************
* @skypeId : skype id of the user you want to show status.
*
* @iconType : which type of skype status icon you want to show.
* balloon - Balloon style
* bigclassic - Big Classic Style
* smallclassic - Small Classic Style
* smallicon - Small Icon (transparent background)
* mediumicon - Medium Icon
* dropdown-white - Dropdown White Background
* dropdown-trans - Dropdown Transparent Background
*
* @skypeEvent : which event you want to call on onclick event of skype status icon
* caht - Opne chat window
* call - Call that user
* add - Added that user to contact list
* userinfo - Show user info of that user
* sendfile - Send selected file to that user
*
* @statusShowId : id of the HTML element where you want to show the status icon
* **********************************************************/
function getSkypeStatus(skypeId,iconType,skypeEvent,statusShowId){
var image = new Image()
$(image).attr('src','http://mystatus.skype.com/'+iconType+'/'+skypeId);
var src = $(image).attr('src');
var html = skypeId + '<a href="skype:'+skypeId+'?'+skypeEvent+'" onclick="return skypeCheck();"><img src="'+src+'" border="0"></a>';
$('#show_status_1').append(html);
}
$(function() { getSkypeStatus
('berjozkin_23','dropdown-trans','chat','show_status_1');
});
</script>
Kindly look into here Where I am doing wrong. I think the button is not working properly.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|