السلام عليكم ورحمة الله وبركاته
..................................................

فى الحقيقه اخوكم مبتدئ فى مجال التصميم
ودلواتى كنت بصمم موقع دردشه صوتيه
نظام افوكولايز
زى نيومار والوطن العربى وغيرها
المهم انى انتهيت بحمد الله من التصميم
بس فاضل شئ ببحث عنو بقالى فتره
وهو الكود code الخاص بالازرار
يعنى بنشوف مثلا فى نيومار
مكان مربع نصى
اكتب اسمك هنا ثم اختار الغرفه
طيب دلواتى انا عايز اعمل المربع دا
الكود code بتاعو بيبقى ايه بقى
وايه كود code الزرار
اللى هيضغط عليه يفتح لو الروم

انا دخلت للموقع نفسو
ولقيت المعلومات دى
Placing a Login Button on Your Own Website


Each iVocalize Web Conference room comes with a customizable, hosted login page located at YourName.ivocalize.net. In most cases, the easiest course is to use the hosted login page.

Logging in from your primary website, rather than from the dedicated page on ivocalize.net, is as simple as pasting a small piece of JavaScript/html code into your web page.

Following is a simple login button example that checks that the proper java version is installed, and installs or upgrades Java as necessary, prior to launching the web conference room:
<script type=”text/javascript” src=”http://yourserver/deployJava.js”></script>
<script type=”text/javascript”>
function doLogin(){
var url = ‘http://yourserver/launch.asp?room=xxxx’;
if (deployJava.isWebStartInstalled(’1.5′) || deployJava.installLatestJRE())
deployJava.launch(url);
}
</script>
<input type=”button” value=”Login” onclick=”doLogin()”>



To integrate the user name and password from a customer’s session on your website, simply add user and pass parameters to the launch url, as follows:
<script type=”text/javascript” src=”http://yourserver/deployJava.js”></script>
<script type=”text/javascript”>
function doLogin(){
var url = ‘http://yourserver/launch.asp?room=xxxx’;
url += ‘&user=’ + encodeURIComponent(’John Doe’);
url += ‘&pass=’ + encodeURIComponent(’abcdefg’);

if (deployJava.isWebStartInstalled(’1.5′) || deployJava.installLatestJRE())
deployJava.launch(url);
}
</script>
<input type=”button” value=”Login” onclick=”doLogin()”>



Here is an example with two login buttons — one for moderators that requests a password, and a second button for guests that does not promot for a password:
<script type=”text/javascript” src=”http://yourserver/deployJava.js”></script>
<script type=”text/javascript”>
function doLogin(bNoPass){
var url = ‘http://yourserver/launch.asp?room=xxxx’;
if (bNoPass) url += ‘&pass=’;
if (deployJava.isWebStartInstalled(’1.5′) || deployJava.installLatestJRE())
deployJava.launch(url);
}
</script>
<input type=”button” value=”Moderator Login” onclick=”doLogin(0)”>
<input type=”button” value=”Guest Login” onclick=”doLogin(1)”>



Please note:

  • The Home section of your Room Control Panel contains the embeddable script to be used with your conference room.
  • Your customized script is also available by viewing the source of your login page at YourName.ivocalize.net

بس فى الحقيقه مقدرتش افهمها اوى
فياريت احد اخوانا اللى يعرف المجال دا
يوضح لى بس
كود code الازرار والمربع النصى
او انى اضيف اى كود code للصفحه وفين بالظبط
فى رعاية الرحمن
ومنتظر ردودكم









©المشاركات المنشورة تعبر عن وجهة نظر صاحبها فقط، ولا تُعبّر بأي شكل من الأشكال عن وجهة نظر إدارة المنتدى©