Hi today i decided to make a message sender program for a game online, i made the login part succefull , but now i need to work without ID's , the thing is this, the page is a game, so after i login it uses flash player or java, and i need to press a button inside that game to send invites ... can someone help me to get that button click ?
i leave u image here
http://i.snag.gy/H5xsC.jpg
i need to press that with code in visual basic but i cant get any id to it
Also i got this peace of code from the html, i dont know if can help
THANKS
i leave u image here
http://i.snag.gy/H5xsC.jpg
i need to press that with code in visual basic but i cant get any id to it
Also i got this peace of code from the html, i dont know if can help
Code:
var objChatModalPopup = null;
/**
* @description Shows the Friend Invite panels, called from the flash when the user clicks the invite friends button.
* @public
*/
function showMultiMessagePanel()
{
ActivateMultiMessagePanel();
return false;
}
/**
* @description Activates the friend invite panel and hides the chat in room flash layer.
* @public
*/
function ActivateMultiMessagePanel()
{
/* Initalise the ChatModalPopup error instance */
if( objChatModalPopup == null )
{
objChatModalPopup = new WeeUI.ChatModalPopup();
}
/* Hide the ChatInRoom flash layer */
jQuery( 'DIV#chatInRoomPlc' ).css( 'visibility', 'hidden' );
/* Show the MultiMessagePanel */
jQuery( 'DIV#MultiMessagePanel' ).css( 'display', 'block' );
/* Call to web service, try and get online friends first */
WeeWorld.Web.services.chatinroom.GetFriendsListPlus( true, null, 1, GetFriendsListOnline_Success, GetFriendsList_Error );
}THANKS