| Author |
Message |
|
PHX
Lieutenant
Joined: Sat Mar 03, 2001 3:00 am Posts: 592 Location: USA
|
I have created a TWX script to catch incomming Fed, Sub, and personal messages and display them in a browser window.
The script is mostly meant for zoc/twx users as all other helpers have their own comm windows.
I would much rather use a zoc script for this so that it wouldnt be one more script to slow down performace of twx but I don't know jack about zoc scripting. If anyone would like to point me in the right direction to do that please icq me.
So just run the script, then open the coms htm file, works pretty good.
download at http://servo.serveftp.com/phoenix/tw/scripts/
|
| Mon Jun 14, 2004 5:05 am |
|
 |
|
PHX
Lieutenant
Joined: Sat Mar 03, 2001 3:00 am Posts: 592 Location: USA
|
Also I would like to find a way to disable all the browser ****, toolbars, status bar, links, address, etc etc. I have been able to find ways to do this from clicking on a link on a pre existing page, but not for a page to automatically have those features turned off when opened directly. Any html/java guru's out there?
|
| Mon Jun 14, 2004 5:17 am |
|
 |
|
Wotok
Ensign
Joined: Thu Jan 23, 2003 3:00 am Posts: 206 Location: USA
|
http://www.htmlcodetutorial.com/linking ... pp_70.html
Look at the open() parameters.. might be something you can use
_________________ --==[ http://tradewars.wotok.com ]==--
rm -rf /bin/laden
|
| Tue Jun 15, 2004 1:25 pm |
|
 |
|
PHX
Lieutenant
Joined: Sat Mar 03, 2001 3:00 am Posts: 592 Location: USA
|
Ok that page explains how to set attributes to popup pages and links, meaning it has to be linked off of another page for those options to take place. This is what I meant when I said...
quote:I have been able to find ways to do this from clicking on a link on a pre existing page, but not for a page to automatically have those features turned off when opened directly.
Thank you for trying though, and I did do a search on Google! as well as checking dynamicdrive.com and dhtmlshock.com, All I could find was stuff like you found.
Anyone who tries this script please give me some feedback, is it practical/usefull, how could it be improved both scriptwise and in the display window.
Or if everyone thinks this is a dumb idea I will tuck tail and take it off the page.
|
| Tue Jun 15, 2004 5:35 pm |
|
 |
|
Rofellos
Ensign
Joined: Thu Oct 31, 2002 3:00 am Posts: 234 Location: USA
|
Whether they like it or not, I would e proud that I could do it. Nice.
_________________ One bone broken for every twig snapped underfoot. -Llanowar penalty for trespassing
|
| Tue Jun 15, 2004 6:20 pm |
|
 |
|
Wotok
Ensign
Joined: Thu Jan 23, 2003 3:00 am Posts: 206 Location: USA
|
K, went ahead and spent some time on this.. heh Make an index.htm file or something - a main web document to click on. Then paste this into it:
quote:<html>
<head><script LANGUAGE="JavaScript">
<!-- Begin
function win() {
msg=window.open("phx_scripts-coms.htm","","height=351,width=700,left=80,top=80");
}
// End -->
</script>
<title>PHX Recviver</title>
</head>
<body>
<form>
<div align="center">
<center><p><input type="button" value="Launch PHX Comms Window" onclick="win()"></p></center>
</div>
</form>
</body>
</html>
Info found via google..lol
_________________ --==[ http://tradewars.wotok.com ]==--
rm -rf /bin/laden
|
| Tue Jun 15, 2004 6:28 pm |
|
 |
|
PHX
Lieutenant
Joined: Sat Mar 03, 2001 3:00 am Posts: 592 Location: USA
|
Wotok this is exactly the same situation. However I may go ahead and use it because there seems to be no other way. Thank you for the work putting that together. If I had done it, it probly woulda been a boring ol text link instead of a nifty button. 
|
| Tue Jun 15, 2004 8:27 pm |
|
 |
|
Wotok
Ensign
Joined: Thu Jan 23, 2003 3:00 am Posts: 206 Location: USA
|
you can's just click on an html document in a directory and have it pop up in a "bare" IE window.. you've got to call it from another document and specify what you want. The user of your script will click on the html document and click the link. Then, the new window will look like what you want.
Do some research on
- automatically spawning a window
- automatically closing a document
That way, they click the index.htm, the other window spawns, and the original can die
_________________ --==[ http://tradewars.wotok.com ]==--
rm -rf /bin/laden
|
| Tue Jun 15, 2004 11:07 pm |
|
 |
|
PHX
Lieutenant
Joined: Sat Mar 03, 2001 3:00 am Posts: 592 Location: USA
|
Good idea!
|
| Wed Jun 16, 2004 4:19 am |
|
 |
|