If you are seeing this message, it is possible the page did not load properly. Please hit reload/refresh on your browser.
If you still see this message, you probably do not have a browser that supports
web standards, although its content is accessible to any browser or Internet device.
Posted: 4/29/05 3:21 pm Re: Script Requests
This topic had become long and tiresome to read through (my fault, my apologies) so I have removed all previous script requests (the majority were dealt with, others could not be done) and we can now start this topic from scratch.
Posted: 5/16/05 7:48 am Re: Script Requests
Ok, so I will make a request. The Disallow Sigs for specific users does not work on my board. The link is p211.ezboard.com/fthecraz...waterforum
Posted: 5/20/05 2:56 pm Re: Script Requests
That's not a request for a new script, that's a topic for help with a problem with an existing script.
Try posting a new topic for help with the script. Thanks.
Posted: 7/23/05 7:04 am Re: Script Requests
I have a request.
I would like a pop up box that the user has to check to confirm that they have read my board rules (hopefully with a hyperlink to them) and agree with them. I would like the username and confirmation of this sent to me either via ezPM or my email. can it be done?
Posted: 7/26/05 9:37 am Re: Script Requests
Quick Reply script...Ummm is this becoming a Glitch or is it just Me?
I never messed with the code in any of my other groups but now there not working either...
I've gone to a few others as well and there Quick Replys are not working either?
Posted: 8/1/05 10:19 am Re: Script Requests
I would like a script that allows users to go to the last read post in a thread.
I have the new post indicator on so my members can see what they have/haven't read but several would like a link they could click that takes them to the last thread instead of having to scroll thru the pages.
Posted: 8/22/05 9:46 pm Re: Script Requests (last post, moved to first)
Yes, I would also like this! I don't like having to scroll all the way down to see the last post. I would like a script to reverse the order of posts, or to allow the viewer to choose to view by "most recent post" within a topic... perhaps a pull down or a line of text like "view recent."
And, if it's not asking too much, can it be compatable with Mac running IE 5.1.7 as well as all the others? I tried a lot of scripts that are not Mac- or IE(5x)-compatable and had to toy with them to make them work. Unfortunately, "toying" around is stretching my limits of scripting knowledge.
It's definitely a case of "A little bit of knowledge can be dangerous."
we would prefer to just see the staff members online and anyone else we'd like to keep track of.
2) We would also like it to be visible to only those with javascript enabled and the people of our choice. (gaucho don provided the solution for the first part of this request in another thread). I know that there's already an allowed viewer's list, but I'd like it to work with the above suggested change.
3) If we can't reduce the names on the list, we'd like to see it placed below the jump to menu, topic commands, and page listing so that we don't have to scroll multiple times to change pages.
4) Another "if we can't reduce the names on the list, we'd like to see it" on the first/main page/forum listing page only. That way, only that page would load slower than the rest.
It would be awesome if we could get all three to work together.
Edited by: holdenmichael at: 9/2/05 12:54 am
Posted: 11/8/05 8:07 am Re: Script Requests
Hi,
is there a script that will allow a full background image to be displayed at different resolutions?
i.e. if your computer's resolution is 800 x 600 thats the size you get, or if 1024 x 768 you would get that resolution,
thanks for the help
Posted: 11/8/05 4:11 pm Re: Script Requests
I recall seeing scripts like this some time ago, these were easily found in google one time, if the scripts are still available then it should not need much tweaking to work on ezboards.
I doubt that a script would need writing, there should be a script out there in the wild somewhere.
Posted: 11/9/05 6:24 am Re: Script Requests
what would I need to put in the search to find this, have tried what I think it would be and have come with nothing, not sure what it would be called
Posted: 11/9/05 4:19 pm Re: Script Requests
thanks for that chrish18 , thats just what myself and my ezop Imegallan were looking for, we are both very greatful
Posted: 11/29/05 5:14 pm Diect Link to Last Post in a Topic Thread
I would like to reiterate the request made by others above: A way to make a link which leads to the last post in a specific topic thread.
I`m going to be posting a weekly newspaper column with each week`s column being added to the thread as a new post. So, I`d like to have a button link at the top of the forum labeled "This week`s column" which would always go directly to the last post in the thread.
Posted: 12/1/05 10:29 pm The Who`s Online Feature
You do realize, don`t you, that the "Who`s Online" feature can be completely turned off.
Not only does it slow down page loadings, but I personally feel that feature serves as an invasion of privacy. Why does anyone need to know who is there reading the pages? It`s irrelevant.
The feature is for snoopy busy-bodies. The only thing which matters is the posts, themselves.
Posted: 12/2/05 3:42 pm Re: The Who`s Online Feature
Please, these forums are not for comments such as that last one, yes, people do know the whosonline can be disabled, they have to enable it to show it!
Whosonline is useful on those boards where users need to know who is online and when so that they may converse with them via chat (example.)
If you want to help others here in CT&T feel free to do so but don't use these forums as your soap box, thanks.
Posted: 12/12/05 11:44 am Re: The Who`s Online Feature
I have a very simple script request. I would hack it together myself, except that I'm not very familiar with Javascript and I don't feel like using my board as a guinea pig.
What I need is something that is a cross between the Image Substitution and the URL Filtering scripts. What I want to do is replace all images from a particular domain with my own, blank image. The Image Substitution script doesn't quite do what I want, because it only replaces specific image URLs; I need to match all image URLs from the same domain, or even more generally, all image URLs matching a given regexp (or even more generally, all URLs matching an array of regexps...). But the code needs to work in a variety of browsers, versions, and platforms.
The problem is that the site hosting one of my member's avatars appears to have been hijacked, and every page on which his avatar appears brings up a popup asking for a username and password. He's changed his avatar, but the change is not effective retroactively, so I need a script like this to restore my members' comfortable, popup-free experience. :)
OK, I didn't realize this forum moved so slowly, so I went and figured out how to do this myself. I took the "URL Filter" script and modified it slightly:
/* IMAGE FILTER */
var domains_to_filter = "example1.com example2.com";
var replacement_image = "http://www.ezboard.com/image/_1template/nav_comm_help.gif";
for (di = 0; di < document.images.length; di++) {
if (document.images[di].src.match(domains_to_filter.split(" ").join("|")) ) {
document.images[di].src=replacement_image;
}
}
/* END IMAGE FILTER */
I'm not very familiar with Javascript, but I am guessing that the strings in domains_to_filter can also be regular expressions, but they're space-delimited, so that makes things slightly trickier. This could easily be adapted to simply use an array of strings/regexps instead of a single string of space-delimited domain names, though.
Edited by: Guildenstern at: 12/12/05 9:06 pm