This is a read-only archive of the old Scratch 1.x Forums.
Try searching the current Scratch discussion forums.

#1 2011-07-25 01:39:10

jji7skyline
Scratcher
Registered: 2010-03-08
Posts: 1000+

What you COULD be doing during the 60 second rule...

Go over to the TBG's! There is a 60 second rule there, but it is seperate from the one on the Scratch website! Yay!

TBG Forums!


I don't know why you say goodbye, I say hello!  big_smile

Offline

 

#2 2011-07-25 01:40:22

veggieman001
Scratcher
Registered: 2010-02-20
Posts: 1000+

Re: What you COULD be doing during the 60 second rule...

i just play tetris


Posts: 20000 - Show all posts

Offline

 

#3 2011-07-25 01:44:43

jji7skyline
Scratcher
Registered: 2010-03-08
Posts: 1000+

Re: What you COULD be doing during the 60 second rule...

veggieman001 wrote:

i just play tetris

I find tetris boring  hmm  and I don't have it anyhow  tongue


I don't know why you say goodbye, I say hello!  big_smile

Offline

 

#4 2011-07-25 01:48:52

veggieman001
Scratcher
Registered: 2010-02-20
Posts: 1000+

Re: What you COULD be doing during the 60 second rule...

jji7skyline wrote:

veggieman001 wrote:

i just play tetris

I find tetris boring  hmm  and I don't have it anyhow  tongue

i play it online

and you are one of many
such a shame
you're missing out on a lot


Posts: 20000 - Show all posts

Offline

 

#5 2011-07-25 01:50:37

jji7skyline
Scratcher
Registered: 2010-03-08
Posts: 1000+

Re: What you COULD be doing during the 60 second rule...

veggieman001 wrote:

jji7skyline wrote:

veggieman001 wrote:

i just play tetris

I find tetris boring  hmm  and I don't have it anyhow  tongue

i play it online

and you are one of many
such a shame
you're missing out on a lot

If you say so  tongue [/offtopic]


I don't know why you say goodbye, I say hello!  big_smile

Offline

 

#6 2011-07-25 02:00:55

Thescratch3
Scratcher
Registered: 2011-06-14
Posts: 1000+

Re: What you COULD be doing during the 60 second rule...

Tetris is not even that fun though. Wait, why are we even talking about tetris now?


View my projects. Or face The scratch curse! (Get it?)
http://i56.tinypic.com/2cdk8hy.png

Offline

 

#7 2011-07-25 02:11:43

jji7skyline
Scratcher
Registered: 2010-03-08
Posts: 1000+

Re: What you COULD be doing during the 60 second rule...

Thescratch3 wrote:

Tetris is not even that fun though. Wait, why are we even talking about tetris now?

I was saying that you COULD be on the TBG scratch forums playing Text-based games while waiting for the 60 second rule  and veggieman said he plays tetris  tongue


I don't know why you say goodbye, I say hello!  big_smile

Offline

 

#8 2011-07-25 03:45:02

fanofcena
Scratcher
Registered: 2008-07-03
Posts: 1000+

Re: What you COULD be doing during the 60 second rule...

i run a javascript code to press the button after 60 seconds for me and then open another post and start typing the reply and so on once 60 seconds are over javascript automatically sends the post for me the  wink   tongue  .


http://i53.tinypic.com/2vxr2c0.png Click whats above u might make a cute planet happy ^_^

Offline

 

#9 2011-07-25 03:53:53

scimonster
Community Moderator
Registered: 2010-06-13
Posts: 1000+

Re: What you COULD be doing during the 60 second rule...

fanofcena wrote:

i run a javascript code to press the button after 60 seconds for me and then open another post and start typing the reply and so on once 60 seconds are over javascript automatically sends the post for me the  wink   tongue  .

Neat!

I often get logged out if I try to do TBG and main forums though.  hmm

Offline

 

#10 2011-07-25 10:30:40

fg123
Scratcher
Registered: 2008-11-13
Posts: 1000+

Re: What you COULD be doing during the 60 second rule...

@Fano: AWESOME.  big_smile

Send me the code?  tongue  Or I can figure it out myshelf. [/smug-face]


Hai.

Offline

 

#11 2011-07-25 11:53:22

fanofcena
Scratcher
Registered: 2008-07-03
Posts: 1000+

Re: What you COULD be doing during the 60 second rule...

fg123 wrote:

@Fano: AWESOME.  big_smile

Send me the code?  tongue  Or I can figure it out myshelf. [/smug-face]

heres the code :

use javascript webconsole to use it . press ctrl+shift+k to get to it in firefox and ctrl+shift+i to in Chrome


Code:

function SendL()
{ 
    document.post.submit.click();
}
setTimeout(SendL,60000);

ENjoy ! lol

o btw the much needed explaination of this magic
first we register a function which will be called later's when 60 seconds are complete lets call it SendL . now in the SendL we find the references to the submit button

the form (or the forum post box ) is called post
and the submit button is named as submit
so
to do the job all we had to do was find our way to the submit button and invoke the click function which is being done here by
document.post.submit.click();

now comes the setTimeout(SendL,60000); this line of the code commands the browser to wait for 60 seconds (60,000 milliseconds  ) and then invoke our old friend hte SendL

pretty easy for those who know the "name" notation of forms in HTML and who know JavaScript  big_smile   ! Cheers!

btw @fg123
call me darky instead of fano: ^_^

Last edited by fanofcena (2011-07-25 12:06:10)


http://i53.tinypic.com/2vxr2c0.png Click whats above u might make a cute planet happy ^_^

Offline

 

#12 2011-07-26 01:54:49

fanofcena
Scratcher
Registered: 2008-07-03
Posts: 1000+

Re: What you COULD be doing during the 60 second rule...

ah an easier code would be just

setTimeout(document.post.submit.click,60000);



this is what i exactly use rather then the big one . i am adding a browser autotab closer which closes the tab after its sent the msg so u can literally forget about the tab  big_smile

Last edited by fanofcena (2011-07-26 04:24:08)


http://i53.tinypic.com/2vxr2c0.png Click whats above u might make a cute planet happy ^_^

Offline

 

#13 2011-07-26 01:57:32

JJROCKER
Scratcher
Registered: 2010-09-06
Posts: 1000+

Re: What you COULD be doing during the 60 second rule...

There are a lot of things you can do.


http://www.blocks.scratchr.org/API.php?action=random&return=image&link1=http://img255.imageshack.us/img255/3491/signature1y.jpg&link2=http://img577.imageshack.us/img577/5272/signature1sx.jpg&link3=http://img4.imageshack.us/img4/8514/signature1et.jpg&link4=http://i.imgur.com/POEpQyZ.png&link5=http://img163.imageshack.us/img163/4640/jjrockerfinal.jpg

Offline

 

#14 2011-07-26 03:33:55

helltank
Scratcher
Registered: 2010-05-21
Posts: 1000+

Re: What you COULD be doing during the 60 second rule...

Code:

function SendL()
{ 
    document.post.submit.click();
}
setTimeout(SendL,60000);

Let me re-explain this better.

First, understand what is a function. It's like a whole chunk of code which you do not use until you "call" it. "Calling" it will run that function. So imagine a function that runs a code telling the computer to write down "Hey!" on Notepad. Then, you can call it several times, causing the computer to do the "Hey!" trick without you needing to type it out again and again.

fanofcena has created a function called SendL, which essentially clicks on the submit button for him. Then, when he runs the program, it will wait exactly 60 seconds and call the function SendL, causing it to click on the button.

In his second post, of course, he realizes that it would be simpler to just click on the button after 60 seconds and not bother with SendL.


Error:Signature could not load. Please wait for an indefinite amount of time, until you realize you're gullible and go off to look for another potentially interesting signature to stare at.

Offline

 

#15 2011-07-26 04:19:29

fanofcena
Scratcher
Registered: 2008-07-03
Posts: 1000+

Re: What you COULD be doing during the 60 second rule...

helltank wrote:

In his second post, of course, he realizes that it would be simpler to just click on the button after 60 seconds and not bother with SendL.

realising is not a good work to explain why i posted the second one  tongue  actually second one came in my mind before the first one. the first one is better if u want the code to do something else by simply adding more chunks to sendL ^_^

Last edited by fanofcena (2011-07-26 04:23:21)


http://i53.tinypic.com/2vxr2c0.png Click whats above u might make a cute planet happy ^_^

Offline

 

#16 2011-07-26 05:00:13

bbbeb
Scratcher
Registered: 2009-06-11
Posts: 1000+

Re: What you COULD be doing during the 60 second rule...

veggieman001 wrote:

i just play tetris

I got 443,124,235,236,333 score once.

It was HOURS of tetris...


Back in my day.... there were no laws that censored the internet... now, there are.... nah.

Offline

 

Board footer