ID:133567
 
Is there a tag on byond that hides a text like Naruto dies at the end of series(just as an example)

??? I just figured it would be really useful to use on hubs etc.
I don't really get what you mean.
In response to Prince of anime
Ideally, it would show up something like this:

<spoiler>
<font color="#2a4680">Spoiler here!</font>
</spoiler>

If you highlight between the tags you'll see the spoiler.
In response to YMIHere
lol so y dont you just do what you did there then fool
Last I checked, BYOND member sites let you customize your CSS, which means you can essentially add your own spoiler tags.

The main BYOND forum really doesn't seem them since this isn't the kind of place where people typically discuss things like that.
In response to Falacy
i want to use spoiler thing to save space on my hub. if people want to see certain thing they just clikc the button.
In response to Gogeta126
Well, the collapsible thing can be done yourself... Don't know if it will with the Members Pages though...
Check out http://www.roast-horse.com/tutorials/_tutorials/ css_js_collapse_menu/

If that doesn't work, keep searching around the web.
In response to Gogeta126
Gogeta126 wrote:
i want to use spoiler thing to save space on my hub. if people want to see certain thing they just clikc the button.

Why don't you just put together a web site like the rest of the world?
In response to Foomer
coz i cant html/php propely?
In response to Gogeta126
It only takes a day or two to pick up the basics of HTML, and PHP is totally unnecessary for a simple site. It would probably be faster for you to learn HTML and get a free host than it would be to wait for someone to implement some built-in spoiler tags.
In response to Gogeta126
HTML and PHP, like any other programming language, are not verbs. Do not use them as such.
In response to Foomer
One great and simple option is using a free website program like Google's Page Creator or Sites. Both of which are very easy to use and maintain, and takes no knowledge of HTML or PHP(although learning the basics of HTML is a really good idea). Google Page Creator works kinda like the geocities of old, that gives you a basic WYSIWYG editor and some templates to make everything easy. Sites, however, is more like iGoogle that you can share. You drag and drop widgets and information right onto the page. Great for projects like a game developer's site. You can add links to gDoc files, throw up a gCal that will update when you update the calendar on Google Calendar, and much more that makes informing your audience easier.
In response to Gogeta126
Another alternative might be to include a lot of the information you might put on the hub inside the game itself. The only thing the hub page needs to have is a description of the game to let potential players know what they're getting into.
In response to Popisfizzy
Popisfizzy wrote:
HTML and PHP, like any other programming language, are not verbs. Do not use them as such.

Correcting people on trifles also contributes nothing to the topic. Go nitpick somewhere else.
In response to Foomer
Foomer wrote:
Last I checked, BYOND member sites let you customize your CSS, which means you can essentially add your own spoiler tags.

The main BYOND forum really doesn't seem them since this isn't the kind of place where people typically discuss things like that.

The only problem is that there's actually nothing in place to show/hide entries (by changing their CSS class, for example) in response to a click. With CSS you could make something appear or not based on hovering over something, so to that extent this is doable, but if you wanted to force a click in order to view spoilers--to prevent anything being accidentally seen--it would require a change to the site.

The forums are really Tom's domain, but for blog posts (and maybe comments too) this would be doable by me. I'm not saying it will be done, but I like the idea and I think it'd be easy to implement.

Lummox JR
In response to Lummox JR
Lummox JR wrote:
Foomer wrote:
Last I checked, BYOND member sites let you customize your CSS, which means you can essentially add your own spoiler tags.

The only problem is that there's actually nothing in place to show/hide entries (by changing their CSS class, for example) in response to a click.

Sure there is. Try something like this, you can test it yourself:

CSS:
a .spoiler
{
display: none;
}
a:active .spoiler
{
color: #800;
display: block;
}


Post might contain something like this:
<a href="#">Click & Hold To View Spoiler<span class="spoiler">If you see this, I win.</span></a>
In response to Kuraudo S.
That is quite inventive.

Saved for future use. =)
In response to Kuraudo S.
Kuraudo S. wrote:
Lummox JR wrote:
Foomer wrote:
Last I checked, BYOND member sites let you customize your CSS, which means you can essentially add your own spoiler tags.

The only problem is that there's actually nothing in place to show/hide entries (by changing their CSS class, for example) in response to a click.

Sure there is. Try something like this, you can test it yourself:

CSS:
a .spoiler
{
display: none;
}
a:active .spoiler
{
color: #800;
display: block;
}


Post might contain something like this:
<a href="#">Click & Hold To View Spoiler<span class="spoiler">If you see this, I win.</span></a>

I wasn't talking about what CSS can do there. As for this solution, I considered it before and rejected it because there's no point showing a spoiler block only for the duration of a click; if you wanted to be stuck having to hold the cursor in one spot, a hover option is better, but it still means you can't scroll down if the spoiler is long. You can do something a little hacky with hovering for non-IE browsers but even that's not good. The way spoiler tags are done properly is to open when a link is clicked, and close when a link is clicked.

But when I said there's "nothing in place" to support this I was talking about the JavaScript code necessary to change an element's CSS class, which is why I said "by changing their CSS class, for example". Using a script is the only way to get spoiler blocks to work correctly in the way most sites implement them.

Lummox JR
In response to YMIHere
YMIHere wrote:
That is quite inventive.

Not particularly so, no offense to the poster. a:active is the only way at all CSS alone can react to a click, so it's low-hanging fruit. Its limitations however make it unsuitable to solve the spoiler problem, in much the same way :hover is also unsuitable.

Lummox JR
In response to Lummox JR
I was thinking of old-fashioned spoiler tags when I suggested it.

<font size=1>Highlight to view spoiler:</font>
<font color=#2A4680>This is a spoiler. You are now spoiled, and your car looks faster, too!</font>

See?
Page: 1 2