Read post on mouseover

Snitz™ Forums 2000
https://forum.snitz.com/forumTopic/Posts/61620?pagenum=1
05 November 2025, 14:46

Topic


Shanö
Read post on mouseover
17 April 2006, 17:16


Hi,
Not sure if this is the right forum to ask in but...
Is there a snitz mod whereby a person can 'read' a brief intro to a posts content on mouseover?
thankssmile
<

 

Replies ...


cripto9t
17 April 2006, 22:47


This is an oldie, so line numbers might no match-up. http://forum.snitz.com/forum/topic.asp?ARCHIVE=true&TOPIC_ID=37750&SearchTerms=mouseover
If you need help just ask smile<
cripto9t
17 April 2006, 23:17


I see one thing wrong with the code

This code he show shouldn't be there
Code:
if fField_Type = "tooltip" then
fString = Replace(fString, """", "")
fString = Replace(fString, "'", "")
fString = Replace(fString, CHR(13), "")
fString = Replace(fString, CHR(10) & CHR(10), ".")
fString = Replace(fString, CHR(10), ".")
chkString = fString
end if
It needs to be after this code (inc_func_common)
Code:
		Case "hidden"
fString = HTMLEncode(fString)
And it should look like this
Code:
Case "tooltip"
fString = Replace(fString, """", "")
fString = Replace(fString, "'", "")
fString = Replace(fString, CHR(13), "")
fString = Replace(fString, CHR(10) & CHR(10), ".")
fString = Replace(fString, CHR(10), ".")
chkString = fString
Also if you read the replies some people were having problems with it.<
Shanö
18 April 2006, 03:02


oh thanks very much thats great. If it is not working properly, i know someone who can probably fix it too - so if it works, i'll ask them to consider coming back with any code ammendments. smile<
tribaliztic
18 April 2006, 05:44


I had problems with that mod, Serverhacker was going to look at it but I don't know if he found the time yet. <
Roger Fredriksson
18 April 2006, 09:26


Perhaps "my" solution could be of some help. I am using Content Display Mod and a free script from www.softcomplex.com. DEMO: http://www.avgifter.com/forum/contentdisplay_tester_rf.asp and you can find the two files used here: http://www.avgifter.com/forum/contentdisplay_tester_rf.txt and http://www.avgifter.com/forum/content_rf.txt .<
Shanö
18 April 2006, 09:46


That's it working now. Thankyou bigsmile<
AnonJr
18 April 2006, 10:46


Cool.
I'd have replied an hour ago, but I found a lot of cool stuff over at softcomplex.com.... thanks for the link. tongue<
© 2000-2021 Snitz™ Communications