Discuss Scratch
- Discussion Forums
- » Bugs and Glitches
- » several new testers cannot post new topics
- Lightnin
-
1000+ posts
several new testers cannot post new topics
Thanks! I haven't been able to reproduce this yet, but we'll see what we can do..
- nXIII
-
1000+ posts
several new testers cannot post new topics
EDIT: Secrets. Obliterated. (Sorry, Amos, I didn't see your email because I was on a different computer).
Last edited by nXIII (Dec. 14, 2012 18:18:40)
- jvvg
-
1000+ posts
several new testers cannot post new topics
That happened to me once, but after that it worked.
- Wes64
-
500+ posts
several new testers cannot post new topics
funelephantneither can anyone else - you can only delete within 1 minute of posting something (which i think is silly)
I can't delete topics
- Mokat
-
100+ posts
several new testers cannot post new topics
I get the server error too , but I can post fine.
- TorbyFork234
-
48 posts
several new testers cannot post new topics
I also can't post new topics.
- veggieman001
-
1000+ posts
several new testers cannot post new topics
Nothing is permanent.
Last edited by veggieman001 (July 16, 2013 23:07:31)
- zippynk
-
60 posts
several new testers cannot post new topics
TorbyFork234Same here
I also can't post new topics.
Edit: Nvm, I can also post topics now.
Last edited by zippynk (Dec. 15, 2012 12:28:25)
- christian2000
-
50 posts
several new testers cannot post new topics
neither can i
Google chrome windows vista
Google chrome windows vista
Last edited by christian2000 (Dec. 15, 2012 22:54:28)
- LordAwesome123
-
98 posts
several new testers cannot post new topics
I'm one of them… still… I need help with my project but can't post it D:
Here it is in case you want to help:
=-=-=-=-=-=-
(Yes I know that cloud variables are disabled for a bit. I'm just asking so when they come back on, I know what to do)
I created a chat room and I am having some troubles with a list showing the current users online. There is a logout command I implemented by typing .logout. That will remove you from the users online list. The problem is when people don't use the command and instead just close the page.
Lets say for example… Jim123 joins the chat under the username Jim. He then just closes out of the project. His username will stay in the users online list even though he is not really online. Then when he logs in again under the same username, there will be two of then in the users online from the two times he logged in. I need a way to fix that.
I've added an option that only I can use that allows me to clear the users online list… but I'm not always going to be there. I need a way to detect that a user has not posted anything for… lets say 5 minutes and then logs out that account. Is there any way I can do that or is there any alternative solution to my problem?
Sorry if I was slow getting to the point
. But I wanted to make this clear.
Here it is in case you want to help:
=-=-=-=-=-=-
(Yes I know that cloud variables are disabled for a bit. I'm just asking so when they come back on, I know what to do)
I created a chat room and I am having some troubles with a list showing the current users online. There is a logout command I implemented by typing .logout. That will remove you from the users online list. The problem is when people don't use the command and instead just close the page.
Lets say for example… Jim123 joins the chat under the username Jim. He then just closes out of the project. His username will stay in the users online list even though he is not really online. Then when he logs in again under the same username, there will be two of then in the users online from the two times he logged in. I need a way to fix that.
I've added an option that only I can use that allows me to clear the users online list… but I'm not always going to be there. I need a way to detect that a user has not posted anything for… lets say 5 minutes and then logs out that account. Is there any way I can do that or is there any alternative solution to my problem?
Sorry if I was slow getting to the point

- TorbyFork234
-
48 posts
several new testers cannot post new topics
LordAwesome123What you need to do is have a timer going through constantly which resets the list in intervals. Basically, you'll have the person who's been on the longest be making the timer, and have everyone (including whoever has the timer) reset the people online, wait a set amount of time for everyone to finish, and then readd in the user names. If you didn't completely understand, see inside here for the script I'm talking about.
I'm one of them… still… I need help with my project but can't post it D:
Here it is in case you want to help:
=-=-=-=-=-=-
(Yes I know that cloud variables are disabled for a bit. I'm just asking so when they come back on, I know what to do)
I created a chat room and I am having some troubles with a list showing the current users online. There is a logout command I implemented by typing .logout. That will remove you from the users online list. The problem is when people don't use the command and instead just close the page.
Lets say for example… Jim123 joins the chat under the username Jim. He then just closes out of the project. His username will stay in the users online list even though he is not really online. Then when he logs in again under the same username, there will be two of then in the users online from the two times he logged in. I need a way to fix that.
I've added an option that only I can use that allows me to clear the users online list… but I'm not always going to be there. I need a way to detect that a user has not posted anything for… lets say 5 minutes and then logs out that account. Is there any way I can do that or is there any alternative solution to my problem?
Sorry if I was slow getting to the point. But I wanted to make this clear.
- ImagineIt
-
1000+ posts
several new testers cannot post new topics
TorbyFork234I've discovered a much simpler message which doesn't need you to know the user who's been there the longest actually, because they all reset it at the same time.LordAwesome123What you need to do is have a timer going through constantly which resets the list in intervals. Basically, you'll have the person who's been on the longest be making the timer, and have everyone (including whoever has the timer) reset the people online, wait a set amount of time for everyone to finish, and then readd in the user names. If you didn't completely understand, see inside here for the script I'm talking about.
I'm one of them… still… I need help with my project but can't post it D:
Here it is in case you want to help:
=-=-=-=-=-=-
(Yes I know that cloud variables are disabled for a bit. I'm just asking so when they come back on, I know what to do)
I created a chat room and I am having some troubles with a list showing the current users online. There is a logout command I implemented by typing .logout. That will remove you from the users online list. The problem is when people don't use the command and instead just close the page.
Lets say for example… Jim123 joins the chat under the username Jim. He then just closes out of the project. His username will stay in the users online list even though he is not really online. Then when he logs in again under the same username, there will be two of then in the users online from the two times he logged in. I need a way to fix that.
I've added an option that only I can use that allows me to clear the users online list… but I'm not always going to be there. I need a way to detect that a user has not posted anything for… lets say 5 minutes and then logs out that account. Is there any way I can do that or is there any alternative solution to my problem?
Sorry if I was slow getting to the point. But I wanted to make this clear.
It works with time blocks, you test to see if the number of seconds is divisible by two.
<(seconds / 2) = round((seconds / 2))>
Then, I make it so that if a user's username is not in the list of users, they will automatically add it to the list. I'm also testing a “(NAME) left the chat.” sort of thing that would work on an update that happened after the other update. It's quite simple actually.
- christian2000
-
50 posts
several new testers cannot post new topics
Here's My glitch:
I cant rename or edit the project notes. When i enter the text it just loads forever.
Google Chrome on Windows Vista Home Basic.
I cant rename or edit the project notes. When i enter the text it just loads forever.
Google Chrome on Windows Vista Home Basic.
- Discussion Forums
- » Bugs and Glitches
-
» several new testers cannot post new topics