|
viaov Newbie
Joined: 28 Jul 2003 Posts: 6 Location: USA
|
Posted: Tue Jul 29, 2003 5:35 am
Few problems with windows |
Trying to decide if i like zMud enough to switch to it so im trying to get a feel for it before my trial ends.
Having a problem with windows though, i have created a Thought window for DR which throws things into it based on the message, however whenever something goes to it it switches the focus to that window which prevents me from typing in the main window. A great annoyence. I also have the activate window on input option
Second problem it defaults to black text on a black background but if i open preffs and hit apply it changes back to the color i have my prefference set to.... |
|
|
|
zex0s Wanderer
Joined: 29 Jun 2003 Posts: 64
|
Posted: Tue Jul 29, 2003 1:10 pm |
turn off the activate window on input to solve the first problem.. for the second, after you change the color, with that window still selected, save the preferences..
|
|
|
|
viaov Newbie
Joined: 28 Jul 2003 Posts: 6 Location: USA
|
Posted: Tue Jul 29, 2003 8:13 pm |
i have activate window on input off :) ment to say "i also havce the activate window on input option off" and it still does it
|
|
|
|
MattLofton GURU
Joined: 23 Dec 2000 Posts: 4834 Location: USA
|
Posted: Tue Jul 29, 2003 10:14 pm |
for your first problem, how are you sending things to the window? If you're having a problem, you really ought to post the code you are using so those of us who actually know the answer to your quandary can point it out to you.
With that said, it sounds very much you are doing something like this to send stuff to the window:
Thoughts:stuff to send
Notice how there is only one colon? That tells ZMud to switch the window focus to the Thoughts window. To prevent the switch, add a second colon or using a command like #WINDOW:
:Thoughts:stuff to send
#window Thoughts {stuff to send}
Just to round things off here, using the : method prevents any expansion stuff from happening so if you send "<send Test>Text</send>", you will see that exact string in the window. If you sent it via the #WINDOW command, you will see a hyperlink. |
|
|
|
|
|