Welcome, Guest. Please Login or Register.
April 25, 2024, 07:01:19 AM
Home Help Search Log in Register
News: SMF is the next generation in forum software, almost completely re-written from the ground up, make sure you don't fall for cheap imitations that suffer from feature bloat!

YaBB SE Community  |  Development  |  Completed mods  |  [Done 1.3-1.4.1] Integrated Chat v.3 « previous next »
Pages: 1 ... 18 19 [20] 21 Reply Ignore Print
Author Topic: [Done 1.3-1.4.1] Integrated Chat v.3  (Read 169676 times)
brodle
Full Member
***
Posts: 210


I'm a llama!

WWW
Re:[Done 1.3-1.4.1] Integrated Chat v.3
« Reply #285 on: February 01, 2003, 04:43:56 PM »
Reply with quote

Quote from: Gere on February 01, 2003, 12:47:55 PMThanks, is it possible to use percens in the chat window size?

great mod!

have to use absolutes
Logged

PostDeals
Full Member
***
Posts: 112


Checkout postdeals.net for the latest deals.

WWW
Re:[Done 1.3-1.4.1] Integrated Chat v.3
« Reply #286 on: February 06, 2003, 02:22:44 AM »
Reply with quote

How can we allow GUEST  to chat so they don't have to register to chat?
Logged

For HotDeals, Coupons, Games Visit: www.postdeals.net

PostDeals
Full Member
***
Posts: 112


Checkout postdeals.net for the latest deals.

WWW
Re:[Done 1.3-1.4.1] Integrated Chat v.3
« Reply #287 on: February 06, 2003, 02:29:45 AM »
Reply with quote

I tried moving that stuff around but i got an error
Logged

For HotDeals, Coupons, Games Visit: www.postdeals.net

perrera
Jr. Member
**
Posts: 51


I love YaBB SE!

Re:[Done 1.3-1.4.1] Integrated Chat v.3
« Reply #288 on: February 11, 2003, 02:57:36 PM »
Reply with quote

Any way I can put the Chat in a separate window (popup)???
Logged
brodle
Full Member
***
Posts: 210


I'm a llama!

WWW
Re:[Done 1.3-1.4.1] Integrated Chat v.3
« Reply #289 on: February 13, 2003, 03:36:51 AM »
Reply with quote

I assume you could just modify the link to use a javascript popup window call.

Logged

Wiziwig
Sr. Member
****
Posts: 407


Programmer and Users Liason and Manager

WWW
Re:[Done 1.3-1.4.1] Integrated Chat v.3
« Reply #290 on: February 13, 2003, 05:06:28 AM »
Reply with quote

Quote from: brodle on February 13, 2003, 03:36:51 AM
I assume you could just modify the link to use a javascript popup window call.

In other words what he is trying to say is you need to add something like this to your Sub.php file:

            <script language="JavaScript1.2" type="text/javascript">
                  function chatWindow(URL,WindowName)
                        {
                           var newWindow = open(URL,WindowName,"Resizable=Yes,ScrollBars=Yes,MenuBar=No,Directories=No,ToolBar=No,Location=No,Status=No,Width=780,Height=450");
                           if (newWindow.opener == null)
                                 newWindow.opener = self;
                              if (newWindow.focus)
                              newWindow.focus();
                        }
            </script>
            $yymenu .= "$menusep<a href=\"javascript:chatWindow($cgi;action=chat;user=$euser)\"><font size="1"><img src=' . $img[chat] . '</a></font>


Don't take this as exact, I'm sure the yymenu part needs tweeked. Oh and if you follow this example, you'll need a chat button that'll be added to your menu. I have mine set that way and made my own button..  
Logged

perrera
Jr. Member
**
Posts: 51


I love YaBB SE!

Re:[Done 1.3-1.4.1] Integrated Chat v.3
« Reply #291 on: February 13, 2003, 01:03:14 PM »
Reply with quote

Quote from: Wiziwig on February 13, 2003, 05:06:28 AM
Quote from: brodle on February 13, 2003, 03:36:51 AM
I assume you could just modify the link to use a javascript popup window call.

In other words what he is trying to say is you need to add something like this to your Sub.php file:

            <script language="JavaScript1.2" type="text/javascript">
                  function chatWindow(URL,WindowName)
                        {
                           var newWindow = open(URL,WindowName,"Resizable=Yes,ScrollBars=Yes,MenuBar=No,Directories=No,ToolBar=No,Location=No,Status=No,Width=780,Height=450");
                           if (newWindow.opener == null)
                                 newWindow.opener = self;
                              if (newWindow.focus)
                              newWindow.focus();
                        }
            </script>
            $yymenu .= "$menusep<a href=\"javascript:chatWindow($cgi;action=chat;user=$euser)\"><font size="1"><img src=' . $img[chat] . '</a></font>


Don't take this as exact, I'm sure the yymenu part needs tweeked. Oh and if you follow this example, you'll need a chat button that'll be added to your menu. I have mine set that way and made my own button..  

where I have to add this lines?  ???
Logged
Zulu
Full Member
***
Posts: 104


I'm no longer a llama, I'm a Monkey

WWW
Re:[Done 1.3-1.4.1] Integrated Chat v.3
« Reply #292 on: February 13, 2003, 01:36:47 PM »
Reply with quote

Quote from: perrera on February 13, 2003, 01:03:14 PM
Quote from: Wiziwig on February 13, 2003, 05:06:28 AM
Quote from: brodle on February 13, 2003, 03:36:51 AM
I assume you could just modify the link to use a javascript popup window call.

In other words what he is trying to say is you need to add something like this to your Sub.php file:

            <script language="JavaScript1.2" type="text/javascript">
                  function chatWindow(URL,WindowName)
                        {
                           var newWindow = open(URL,WindowName,"Resizable=Yes,ScrollBars=Yes,MenuBar=No,Directories=No,ToolBar=No,Location=No,Status=No,Width=780,Height=450");
                           if (newWindow.opener == null)
                                 newWindow.opener = self;
                              if (newWindow.focus)
                              newWindow.focus();
                        }
            </script>
            $yymenu .= "$menusep<a href=\"javascript:chatWindow($cgi;action=chat;user=$euser)\"><font size="1"><img src=' . $img[chat] . '</a></font>


Don't take this as exact, I'm sure the yymenu part needs tweeked. Oh and if you follow this example, you'll need a chat button that'll be added to your menu. I have mine set that way and made my own button..  

where I have to add this lines?  ???

The <script> in your template.. between </head> and <body> and the $yymenu in subs.php.. in the 'function templateHeader.. you'll see where there i guess....
Logged

Webby @ RFI
Formerly known as PtPazuzu
brodle
Full Member
***
Posts: 210


I'm a llama!

WWW
Re:[Done 1.3-1.4.1] Integrated Chat v.3
« Reply #293 on: February 14, 2003, 01:29:34 PM »
Reply with quote

New mod out :)


http://www.yabbse.org/community/index.php?board=158;action=display;threadid=18848
Logged

antoanto
Noobie
*
Posts: 7


I'm a llama!

Re:[Done 1.3-1.4.1] Integrated Chat v.3
« Reply #294 on: February 15, 2003, 11:24:19 AM »
Reply with quote

mmm, i didn't set any abbreviation, because i don't like them, but this way the javascript says there is no1 in the chat, but it lists all the user there are in that moment...

how to fix it?
Logged
goosemoose
Sr. Member
****
Posts: 256


I'm a llama!

Re:[Done 1.3-1.4.1] Integrated Chat v.3
« Reply #295 on: February 16, 2003, 09:31:25 AM »
Reply with quote

Antoanto,
You have to have an abbreviation. You are sharing the chat server with thousands of other users. If you do not add it you will end up with nick name collisions and users that will not be able to enter chat. If you are not getting the correct number of users it is because you did not change the script to list your room name.
Logged

MobileYaBB v.3 [75% done]
All in One MemberList 1.0
Integrated Chat v 2.0
PioneeR
Llama Hunter
YaBB God
*****
Posts: 767


Re:[Done 1.3-1.4.1] Integrated Chat v.3
« Reply #296 on: February 16, 2003, 01:14:27 PM »
Reply with quote

I have been using this chatroom for a while now.. my members love it.

I registered the room and my nickname at the very start.

Just come to log in.. and it doesnt recognise me as the Owner anymore. I also used to have a password on my nickname too.

Am i doing something wrong? Anything changed??
Logged
solarisjedi
Jr. Member
**
Posts: 52


Bah

Re:[Done 1.3-1.4.1] Integrated Chat v.3
« Reply #297 on: February 16, 2003, 09:12:58 PM »
Reply with quote

I've noticed the javascripts aren't working for me the last couple days:

There are currently <script src="http://www.everywherechat.com/users.asp?room=roomname"></script> people talking in the chat room.<BR><script src="http://www.everywherechat.com/members.asp?room=roomname"></script>
Logged
goosemoose
Sr. Member
****
Posts: 256


I'm a llama!

Re:[Done 1.3-1.4.1] Integrated Chat v.3
« Reply #298 on: February 18, 2003, 04:35:27 AM »
Reply with quote

They are working fine for me. It looks like you still have your roomname listed as "roomname" !! Make sure you change this to your ACTUAL chat room name.
Logged

MobileYaBB v.3 [75% done]
All in One MemberList 1.0
Integrated Chat v 2.0
solarisjedi
Jr. Member
**
Posts: 52


Bah

Re:[Done 1.3-1.4.1] Integrated Chat v.3
« Reply #299 on: February 18, 2003, 02:19:53 PM »
Reply with quote

Quote from: goosemoose on February 18, 2003, 04:35:27 AM
They are working fine for me. It looks like you still have your roomname listed as "roomname" !! Make sure you change this to your ACTUAL chat room name.

Yes, I was using roomname as example only.
It's worked fine for me up until a few days ago. Did something change on the chat server?

EDIT: It works, all is good. The problem for me was my room registration had expired on the IRC server.  ::)
« Last Edit: February 18, 2003, 02:35:03 PM by solarisjedi » Logged
Pages: 1 ... 18 19 [20] 21 Reply Ignore Print 
YaBB SE Community  |  Development  |  Completed mods  |  [Done 1.3-1.4.1] Integrated Chat v.3 « previous - next »
 


Powered by MySQL Powered by PHP YaBB SE Community | Powered by YaBB SE
© 2001-2003, YaBB SE Dev Team. All Rights Reserved.
SMF 2.1.4 © 2023, Simple Machines
Valid XHTML 1.0! Valid CSS

Page created in 0.040 seconds with 20 queries.