Game save confirmation message?

OurJud
10 Dec 2015, 11:07
I've just been playing a game of TP's which returns a 'Game saved successfully' message on 'save'.

Is this easy to implement, as I don't get this when saving my own uploaded test games?

The Pixie
10 Dec 2015, 11:50
I did not do anything, I think it should happen automatically.

OurJud
10 Dec 2015, 15:52
Mmm, I did wonder, as it seems like the obvious response. I'll check again, but I'm sure it's not there for my games.

No biggie.

Ahh! I just tried, and sure enough the message didn't come up. But then I noticed my parser jumped down a line, a second or so later. I highlighted the area above the parser, and there is the message, black on black!

I'll have to stick a line of CSS in the code to change the font colour.

The Pixie
10 Dec 2015, 18:23
Ah, yes. When I first tried it, I got it in black in an ugly font.I had to change the CSS of divOutput.

OurJud
10 Dec 2015, 18:29
Thanks.

OurJud
22 Dec 2015, 11:52
The Pixie wrote:Ah, yes. When I first tried it, I got it in black in an ugly font.I had to change the CSS of divOutput.

How and where are you adding this?

I've tried both:
#divOutput { color: #ccc; }

And
element.style { color: #ccc; }

In my CSS block in the game code, but neither worked.