PDA

View Full Version : Who knows?


Antony
08-14-05, 05:02 PM
Im looking for a free search and replace tool, and what is the code to use to wipe out the status bar so it displays one message all the time?

thanks

-HF
08-14-05, 05:09 PM
search and replace what? for text and code, i use Editpad Pro, also ConTEXT (http://www.context.cx/) is quite nifty... and freeware on top of it.

Antony
08-14-05, 05:16 PM
search and replace text, I had a good little tool that did it but they want paying now and I am feeling stingy so I want a free one

-HF
08-14-05, 05:20 PM
pretty sure Editpad does that as free Lite version just fine http://www.editpadpro.com/editpadlite.html - else grab conTEXT

Antony
08-14-05, 05:25 PM
Thanks do you know the code to replace the text in the status bar i know its something like

<script language="JavaScript">
<!--
window.status = "your message ";
-->
</script>

but with that code it changes when you mouseover something and I want it to stay the same all the time

-HF
08-14-05, 06:04 PM
http://htmlbasix.com/statusbarmessage.shtml

i just notice that does what you posted anyway :D .... sorry

morefodder
08-14-05, 08:11 PM
Notepad 2 does it for free http://www.flos-freeware.ch/
regading the script,

put this into the <body> tag at the top

onmouseover="window.status=Your Text;return true;"

I think this is what your after