View previous topic :: View next topic |
Author |
Message |
Pk Beginner
Joined: 23 Jul 2005 Posts: 11 Topics: 4
|
Posted: Wed Jul 27, 2005 2:33 am Post subject: Beep through REXX |
|
|
Quote: | I have developed a chat utility in which I have a panel. If I type some text on the command line and press enter, the entered text would be written into a file, read back , populated in a ISPF table and displayed using TBDISPL. If I press Enter without any text, the rexx would just read the file, populate the table and display it. This holds good for both the users who are chatting. |
One problem with this is if the users are in another screen, they would not know of any new message. Would it be possible to produce a "BEEP" in mainframe when a new message comes in the file or when other chat users type a new message and presses enter ?
Please let me know if there is a way to do it. |
|
Back to top |
|
|
Brian Beginner
Joined: 12 Aug 2003 Posts: 95 Topics: 6
|
Posted: Wed Jul 27, 2005 3:29 am Post subject: |
|
|
Not sure but ISRZ001/ISRZ002 arrives with a terminal beep.
Cheers
Brian |
|
Back to top |
|
|
Dibakar Advanced
Joined: 02 Dec 2002 Posts: 700 Topics: 63 Location: USA
|
Posted: Wed Jul 27, 2005 3:38 am Post subject: |
|
|
One way could be to do a small TSO SEND - "NEW MESSAGE". I don't know if it is too annoying to use. |
|
Back to top |
|
|
taltyman JCL Forum Moderator
Joined: 02 Dec 2002 Posts: 310 Topics: 8 Location: Texas
|
Posted: Wed Jul 27, 2005 7:32 am Post subject: |
|
|
Don't they still have to press ENTER or PF/PA key to see the "new message"? |
|
Back to top |
|
|
Pk Beginner
Joined: 23 Jul 2005 Posts: 11 Topics: 4
|
Posted: Wed Jul 27, 2005 10:47 pm Post subject: Beep through REXX |
|
|
Thanks Brian, Dibakar and Taltyman.
Quote: | Not sure but ISRZ001/ISRZ002 arrives with a terminal beep. |
ISRZ001/ISRZ002 would give out a beep but then, it has to be invoked from the users program. What I was thinking of was , one person typing a message and all others, getting a beep. I dont think that is possible with ISRZ001.
Quote: | One way could be to do a small TSO SEND - "NEW MESSAGE". I don't know if it is too annoying to use. |
About the TSO SEND, as Taltyman points out , an Enter has to be pressed for the message to be thrown. and also it would be an annoying thing to use SEND for every message.
I was trying to do something like broadcasting a beep to many users just like how a msg is broadcasted. I am not too sure if this can be done.
Anyways, thanks to all for pouring in your points. |
|
Back to top |
|
|
Dibakar Advanced
Joined: 02 Dec 2002 Posts: 700 Topics: 63 Location: USA
|
Posted: Thu Jul 28, 2005 3:20 am Post subject: |
|
|
Quote: |
Don't they still have to press ENTER or PF/PA key to see the "new message"?
|
yes, but atleast it will work even if you ina diffrenet panel. Even with droadcast you have to press enter. |
|
Back to top |
|
|
|
|