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

#251 2011-06-18 04:32:31

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Go Everywhere Beta

TornFusion wrote:

comp500 wrote:

comp500 wrote:

rrgh. Didn't u see the development link in the first page?

anyway we need new developers so we can get it finished.

Hmm. NOBODY'S games on here work on DSi. Pokemon wont work

I'm working on Go everywhere noW!

I'm looking at this: http://developer.apple.com/library/safa … tions.html


EDIT: YAY! PaGE 11!

Last edited by comp500 (2011-06-18 04:56:30)


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#252 2011-06-18 04:38:31

TornFusion
Scratcher
Registered: 2010-09-03
Posts: 1000+

Re: Go Everywhere Beta

comp, give me a link as SOON as its done

Offline

 

#253 2011-06-18 04:42:09

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Go Everywhere Beta

johnnydean1 wrote:

Oh, I can get pokemon to work on the DSi. I will have a go now.

Ok!


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#254 2011-06-18 04:44:03

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Go Everywhere Beta

TornFusion wrote:

comp, give me a link as SOON as its done

Here's my current revision http://www.mdn.fm/files/314551_akopx/index.html

rrgh 60 sec rule!


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#255 2011-06-18 05:03:22

johnnydean1
Scratcher
Registered: 2010-02-12
Posts: 1000+

Re: Go Everywhere Beta

comp500 wrote:

johnnydean1 wrote:

Oh, I can get pokemon to work on the DSi. I will have a go now.

Ok!

Ahh, it fails. I have no idea why. Link here


You can now reach me on Twitter @johnnydean1_

Offline

 

#256 2011-06-18 05:16:21

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Go Everywhere Beta

johnnydean1 wrote:

comp500 wrote:

johnnydean1 wrote:

Oh, I can get pokemon to work on the DSi. I will have a go now.

Ok!

Ahh, it fails. I have no idea why. Link here

It worked in the first versions... perhaps the canvas is too big and the buttons are not needed.


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#257 2011-06-18 05:25:07

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Go Everywhere Beta


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#258 2011-06-18 08:25:59

johnnydean1
Scratcher
Registered: 2010-02-12
Posts: 1000+

Re: Go Everywhere Beta

When I get round to it, I will re-design Pokemon for use on a DS.


You can now reach me on Twitter @johnnydean1_

Offline

 

#259 2011-06-18 09:36:09

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Go Everywhere Beta

johnnydean1 wrote:

When I get round to it, I will re-design Pokemon for use on a DS.

Ok! you can also chat here and I get an update instantly: http://www.chatzy.com/309446370985


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#260 2011-06-19 03:44:44

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Go Everywhere Beta

I am currently working on Google maps for DSi: http://www.mdn.fm/files/314635_vbugs/index.html

Last edited by comp500 (2011-06-19 04:52:07)


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#261 2011-06-19 04:50:13

TornFusion
Scratcher
Registered: 2010-09-03
Posts: 1000+

Re: Go Everywhere Beta

comp500 wrote:

I am currently working on Google maps for DSi: (link coming soon...)

I thought we were making scratch for DSi's and other OS's...

Offline

 

#262 2011-06-19 04:52:35

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Go Everywhere Beta

TornFusion wrote:

comp500 wrote:

I am currently working on Google maps for DSi: (link coming soon...)

I thought we were making scratch for DSi's and other OS's...

Yes, I'm also doing that.


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#263 2011-06-19 07:09:48

whizzer
Scratcher
Registered: 2008-05-27
Posts: 500+

Re: Go Everywhere Beta

I remixed the DSi code:

Code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>    
<meta name="viewport" content="width=device-width">    
<title>Go Everywhere</title>     
<style>      body { margin: 0px; font-family: Arial }      #topscreen, #bottomscreen { width: 240px; height: 176px; overflow: hidden; }    </style>    
<script type="text/javascript" src="http://www.mdn.fm/files/308109_bxyeb/browser.js"></script>    
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
</head>
<body>
<div id="topscreen">Top Screen</div>    
<div id="bottomscreen">Bottom Screen</div>        
<script type="text/javascript">            document.body.scrollTop = 176;            document.onkeydown = function (e) {                if (e.keyCode == "13") {                    $('#bottomscreen').css('color', 'blue');                }            };            document.onkeyup = function (e) {                if (e.keyCode == "13") {                    $('#bottomscreen').css('color', 'inherit');                    alert('Welcome to Go Everywhere DS!');                }            };            function machine() {                document.body.scrollTop = 176;                window.setTimeout("machine()", 100);            }            machine();    </script>
</body>
</html>

http://i46.tinypic.com/33df6me.png I'm whizzer0 for all things Minecraft.

Offline

 

#264 2011-06-19 11:48:59

eventexception
Scratcher
Registered: 2011-04-08
Posts: 500+

Re: Go Everywhere Beta

Some projects already went to a mobile device...
depends on your project userinterface and device...

http://scratch.mit.edu/galleries/view/122751

Any scratch project already goes everywhere
with a small regular notebook with keyboard  smile   smile  :-)

Offline

 

#265 2011-06-19 12:49:25

whizzer
Scratcher
Registered: 2008-05-27
Posts: 500+

Re: Go Everywhere Beta

eventexception wrote:

Some projects already went to a mobile device...
depends on your project userinterface and device...

http://scratch.mit.edu/galleries/view/122751

Any scratch project already goes everywhere
with a small regular notebook with keyboard  smile   smile  :-)

???


http://i46.tinypic.com/33df6me.png I'm whizzer0 for all things Minecraft.

Offline

 

#266 2011-06-19 14:16:59

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Go Everywhere Beta

whizzer wrote:

I remixed the DSi code:

Code:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>    
<meta name="viewport" content="width=device-width">    
<title>Go Everywhere</title>     
<style>      body { margin: 0px; font-family: Arial }      #topscreen, #bottomscreen { width: 240px; height: 176px; overflow: hidden; }    </style>    
<script type="text/javascript" src="http://www.mdn.fm/files/308109_bxyeb/browser.js"></script>    
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
</head>
<body>
<div id="topscreen">Top Screen</div>    
<div id="bottomscreen">Bottom Screen</div>        
<script type="text/javascript">            document.body.scrollTop = 176;            document.onkeydown = function (e) {                if (e.keyCode == "13") {                    $('#bottomscreen').css('color', 'blue');                }            };            document.onkeyup = function (e) {                if (e.keyCode == "13") {                    $('#bottomscreen').css('color', 'inherit');                    alert('Welcome to Go Everywhere DS!');                }            };            function machine() {                document.body.scrollTop = 176;                window.setTimeout("machine()", 100);            }            machine();    </script>
</body>
</html>

That's my test page, not the real thing...


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#267 2011-06-19 14:18:12

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Go Everywhere Beta

eventexception wrote:

Some projects already went to a mobile device...
depends on your project userinterface and device...

http://scratch.mit.edu/galleries/view/122751

Any scratch project already goes everywhere
with a small regular notebook with keyboard  smile   smile  :-)

But for Go Everywhere, we mean smaller devices!


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#268 2011-06-19 14:52:06

jslomba
Scratcher
Registered: 2009-09-25
Posts: 1000+

Re: Go Everywhere Beta

comp500 wrote:

eventexception wrote:

Some projects already went to a mobile device...
depends on your project userinterface and device...

http://scratch.mit.edu/galleries/view/122751

Any scratch project already goes everywhere
with a small regular notebook with keyboard  smile   smile  :-)

But for Go Everywhere, we mean smaller devices!

and iPads


the the the the the

Offline

 

#269 2011-06-19 16:03:54

eventexception
Scratcher
Registered: 2011-04-08
Posts: 500+

Re: Go Everywhere Beta

comp500 wrote:

But for Go Everywhere, we mean smaller devices!

If you visit the gallery one project is already confirmed working on a tiny device...

Somebody has to design project userinterfaces for tapping small screens
or find such existing projects...

I believe cheap tiny devices with a fast enough cpu
will show up within twelve month,
or someone has to compile a new scratch player or call it app.

Offline

 

#270 2011-06-20 02:24:00

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Go Everywhere Beta

eventexception wrote:

comp500 wrote:

But for Go Everywhere, we mean smaller devices!

I believe cheap tiny devices with a fast enough cpu
will show up within twelve month,
or someone has to compile a new scratch player or call it app.

DSis don't have java, or flash, nor do iPods.

Somebody has to design project userinterfaces for tapping small screens
or find such existing projects...

That's what we are currently doing...

If you visit the gallery one project is already confirmed working on a tiny device...

What about iPod Touches and iPhones and DSis? Their screen(s) are smaller that the scratch stage, and MIT are planning to maybe make the stage bigger...

There are only a few exceptions to the event, eventexeption XD!

Last edited by comp500 (2011-06-21 02:28:52)


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#271 2011-06-20 03:21:32

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Go Everywhere Beta

comp500 wrote:

I am currently working on Google maps for DSi: http://www.mdn.fm/files/314635_vbugs/index.html

New link: http://www.mdn.fm/files/315064_kohgu/index.html


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#272 2011-06-20 15:19:35

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Go Everywhere Beta

comp500 wrote:

comp500 wrote:

I am currently working on Google maps for DSi: http://www.mdn.fm/files/314635_vbugs/index.html

New link: http://www.mdn.fm/files/315064_kohgu/index.html

newer: http://www.mdn.fm/files/315126_jju26/index.html


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#273 2011-06-21 03:12:14

comp500
Scratcher
Registered: 2010-01-08
Posts: 1000+

Re: Go Everywhere Beta


800 posts! W00T! Oh sorry im not on a lot but at least i have 1000+ posts

Offline

 

#274 2011-06-21 07:18:19

EmperorEvil
Scratcher
Registered: 2009-02-13
Posts: 1000+

Re: Go Everywhere Beta

Whoever said save to dropbox, great idea.


http://oi54.tinypic.com/t8ogle.jpg http://blocks.scratchr.org/API.php?user=veggieman001&amp;action=onlineStatus

Offline

 

#275 2011-06-21 13:43:50

whizzer
Scratcher
Registered: 2008-05-27
Posts: 500+

Re: Go Everywhere Beta

Stop it! That does not have a lot to do with GE! (darn that could also stand for Google Earth...)

Anyway, as soon as I can I'll post a list of specifications for the 3DS Internet Browser - it has a list in the instruction manual!  smile


http://i46.tinypic.com/33df6me.png I'm whizzer0 for all things Minecraft.

Offline

 

Board footer