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

#101 2010-09-19 16:56:14

awsomemaster
Scratcher
Registered: 2008-04-10
Posts: 83

Re: ScratcHTML

instead of text based HTML, it's block based and easier to use.

yes but what does html DO? code web pages?, make stuff like ads for webpages?, makes games?


scar the REAL 3d fps we've all been waiting for

Offline

 

#102 2010-09-19 17:49:04

ScratchReallyROCKS
Scratcher
Registered: 2009-04-22
Posts: 1000+

Re: ScratcHTML

awsomemaster wrote:

instead of text based HTML, it's block based and easier to use.

yes but what does html DO? code web pages?, make stuff like ads for webpages?, makes games?

It's the code for web pages. Not usually games, but it's possible.


http://imageshack.us/a/img694/3806/sigmad.png

Offline

 

#103 2010-09-20 09:47:36

awsomemaster
Scratcher
Registered: 2008-04-10
Posts: 83

Re: ScratcHTML

ScratchReallyROCKS wrote:

awsomemaster wrote:

instead of text based HTML, it's block based and easier to use.

yes but what does html DO? code web pages?, make stuff like ads for webpages?, makes games?

It's the code for web pages. Not usually games, but it's possible.

so it's the code for webpages? that's what i wanted to know thanks  smile 
but you can't use it to make webpages from scratch? (for free), i mean if your coding it why can't you make ALL of it instead of paying for hosting?


scar the REAL 3d fps we've all been waiting for

Offline

 

#104 2010-09-20 15:04:22

nXIII
Community Moderator
Registered: 2009-04-21
Posts: 1000+

Re: ScratcHTML

HTML is a markup language; hosting is not related.


nXIII

Offline

 

#105 2010-09-20 16:19:57

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

Re: ScratcHTML

nXIII wrote:

HTML is a markup language; hosting is not related.

Actually, he's right for the n^13th time!  big_smile


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

Offline

 

#106 2010-09-20 16:29:18

midnightleopard
Scratcher
Registered: 2007-09-13
Posts: 1000+

Re: ScratcHTML

awsomemaster wrote:

instead of text based HTML, it's block based and easier to use.

yes but what does html DO? code web pages?, make stuff like ads for webpages?, makes games?

Every website is written in HTML, even if it has help from PHP or Flash. To see the html for a website, right click any site and hit view source.
the simplest code could look like this

Code:

<HTML>
<HEAD>
</HEAD>
<BODY>
hello
</BODY>
</HTML>

write that in notepad and save it as website.html and open it. You will see a website that says hello.


http://pwp.wizards.com/5103673563/Scorecards/Landscape.png

Offline

 

#107 2010-09-20 16:45:46

nXIII
Community Moderator
Registered: 2009-04-21
Posts: 1000+

Re: ScratcHTML

midnightleopard wrote:

Every website is written in HTML, even if it has help from PHP or Flash. To see the html for a website, right click any site and hit view source.
the simplest code could look like this

Code:

<HTML>
<HEAD>
</HEAD>
<BODY>
hello
</BODY>
</HTML>

write that in notepad and save it as website.html and open it. You will see a website that says hello.

Just to show how you can be lazy,  tongue , I think that this:

Code:

hello

will display correctly in a browser (the same as yours). Also, doing this:

Code:

<head>
<title>Foo</title>
<body>
hello

would probably work.

Last edited by nXIII (2010-09-20 16:46:01)


nXIII

Offline

 

#108 2010-09-20 17:26:05

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

Re: ScratcHTML

nXIII wrote:

midnightleopard wrote:

Every website is written in HTML, even if it has help from PHP or Flash. To see the html for a website, right click any site and hit view source.
the simplest code could look like this

Code:

<HTML>
<HEAD>
</HEAD>
<BODY>
hello
</BODY>
</HTML>

write that in notepad and save it as website.html and open it. You will see a website that says hello.

Just to show how you can be lazy,  tongue , I think that this:

Code:

hello

will display correctly in a browser (the same as yours). Also, doing this:

Code:

<html>
<head>
<title>Foo</title>
<body>
hello
</body>
</head>
</html>

would probably work.


You can now reach me on Twitter @johnnydean1_

Offline

 

#109 2010-09-20 17:56:45

awsomemaster
Scratcher
Registered: 2008-04-10
Posts: 83

Re: ScratcHTML

midnightleopard wrote:

awsomemaster wrote:

instead of text based HTML, it's block based and easier to use.

yes but what does html DO? code web pages?, make stuff like ads for webpages?, makes games?

Every website is written in HTML, even if it has help from PHP or Flash. To see the html for a website, right click any site and hit view source.
the simplest code could look like this

Code:

<HTML>
<HEAD>
</HEAD>
<BODY>
hello
</BODY>
</HTML>

write that in notepad and save it as website.html and open it. You will see a website that says hello.

open it with what? notepad? because that just shows the code.


scar the REAL 3d fps we've all been waiting for

Offline

 

#110 2010-09-20 18:06:11

ScratchReallyROCKS
Scratcher
Registered: 2009-04-22
Posts: 1000+

Re: ScratcHTML

awsomemaster wrote:

midnightleopard wrote:

awsomemaster wrote:


yes but what does html DO? code web pages?, make stuff like ads for webpages?, makes games?

Every website is written in HTML, even if it has help from PHP or Flash. To see the html for a website, right click any site and hit view source.
the simplest code could look like this

Code:

<HTML>
<HEAD>
</HEAD>
<BODY>
hello
</BODY>
</HTML>

write that in notepad and save it as website.html and open it. You will see a website that says hello.

open it with what? notepad? because that just shows the code.

No, they mean write it in notepad and then save it as website.html that means, when you open it, it will open in your default browser.

I like this code:

Code:

<head>
<title>Nothing</title>
<body>
Hello! Nothing to see here.
<br>
<br>
<a href="http://scratch.mit.edu/"><button type="button">Go to Scratch.mit.edu</button></a>

http://imageshack.us/a/img694/3806/sigmad.png

Offline

 

#111 2010-09-20 18:28:02

nXIII
Community Moderator
Registered: 2009-04-21
Posts: 1000+

Re: ScratcHTML

johnnydean1 wrote:

nXIII wrote:

midnightleopard wrote:

Every website is written in HTML, even if it has help from PHP or Flash. To see the html for a website, right click any site and hit view source.
the simplest code could look like this

Code:

<HTML>
<HEAD>
</HEAD>
<BODY>
hello
</BODY>
</HTML>

write that in notepad and save it as website.html and open it. You will see a website that says hello.

Just to show how you can be lazy,  tongue , I think that this:

Code:

hello

will display correctly in a browser (the same as yours). Also, doing this:

Code:

<html>
<head>
<title>Foo</title>
<body>
hello
</body>
</head>
</html>

would probably work.

Code:

<head>
<title>Foo</title>
<body>
hello

I meant to leave the end tags out because HTML syntax is very loose and most browsers will accept the above page as valid and parse it. Just like <p>, <td>, <tr>, etc. the end tag for <head> is assumed when <body> is met because the <body> element cannot exist inside the <head> element.


nXIII

Offline

 

#112 2010-09-20 20:35:17

awsomemaster
Scratcher
Registered: 2008-04-10
Posts: 83

Re: ScratcHTML

here i posted a unlisted video on youtube showing what i'm doing

http://www.scratch.mit.edu/ext/youtube/?v=yK2HogwPdLQ

after that i opened it in notepad and it just showed the code  hmm


scar the REAL 3d fps we've all been waiting for

Offline

 

#113 2010-09-20 21:08:29

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

Re: ScratcHTML

Alright. You have to open it in IE, or Firefox, or such Not notepad.


Hai.

Offline

 

#114 2010-09-20 21:21:04

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

Re: ScratcHTML

awsomemaster wrote:

here i posted a unlisted video on youtube showing what i'm doing

http://www.scratch.mit.edu/ext/youtube/?v=yK2HogwPdLQ

after that i opened it in notepad and it just showed the code  hmm EPIC FAILZ.


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

Offline

 

#115 2010-09-20 21:33:33

ScratchReallyROCKS
Scratcher
Registered: 2009-04-22
Posts: 1000+

Re: ScratcHTML

awsomemaster wrote:

here i posted a unlisted video on youtube showing what i'm doing

http://www.scratch.mit.edu/ext/youtube/?v=yK2HogwPdLQ

after that i opened it in notepad and it just showed the code  hmm

After that you're supposed to open it in your browser.


http://imageshack.us/a/img694/3806/sigmad.png

Offline

 

#116 2010-09-20 23:29:10

awsomemaster
Scratcher
Registered: 2008-04-10
Posts: 83

Re: ScratcHTML

ScratchReallyROCKS wrote:

awsomemaster wrote:

here i posted a unlisted video on youtube showing what i'm doing

http://www.scratch.mit.edu/ext/youtube/?v=yK2HogwPdLQ

after that i opened it in notepad and it just showed the code  hmm

After that you're supposed to open it in your browser.

in firefox? how? do i copy the code into the url? because that didn't work  hmm


scar the REAL 3d fps we've all been waiting for

Offline

 

#117 2010-09-20 23:36:58

adriangl
Scratcher
Registered: 2007-07-02
Posts: 1000+

Re: ScratcHTML

This is a great idea, and what you have already done is an accomplishment in itself. But, this would probably only be useful for people just starting out in HTMl for one reason. It probably can't support advanced functions, or CSS, PHP, and scripting languages. Also, how will it export?

But other than that, great work  smile


Scratchin' since 2007

Offline

 

#118 2010-09-21 14:59:07

nXIII
Community Moderator
Registered: 2009-04-21
Posts: 1000+

Re: ScratcHTML

adriangl wrote:

This is a great idea, and what you have already done is an accomplishment in itself. But, this would probably only be useful for people just starting out in HTMl for one reason. It probably can't support advanced functions, or CSS, PHP, and scripting languages. Also, how will it export?

But other than that, great work  smile

I can answer most of those!
It could definitely support PHP/scripting languages through the use of a script editor for each language (opens up a dialog with a new palette and one hat block, like BYOB's block editor). And exporting is simply saving the blocks as their respective printStrings.


nXIII

Offline

 

#119 2010-09-21 19:09:20

awsomemaster
Scratcher
Registered: 2008-04-10
Posts: 83

Re: ScratcHTML

awsomemaster wrote:

ScratchReallyROCKS wrote:

awsomemaster wrote:

here i posted a unlisted video on youtube showing what i'm doing

http://www.scratch.mit.edu/ext/youtube/?v=yK2HogwPdLQ

after that i opened it in notepad and it just showed the code  hmm

After that you're supposed to open it in your browser.

in firefox? how? do i copy the code into the url? because that didn't work  hmm

never mind i found out how
thanks for all your help  smile  this looks really cool!


scar the REAL 3d fps we've all been waiting for

Offline

 

#120 2010-09-22 13:41:11

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

Re: ScratcHTML

Hows progress


You can now reach me on Twitter @johnnydean1_

Offline

 

#121 2010-09-22 21:18:29

brantsmith
Scratcher
Registered: 2010-04-01
Posts: 21

Re: ScratcHTML

AWSOMEMASTER----------HERE IS SOME HELP FOR HTML-------------

First, go and open up your notepad.
then type this in..

Code:

<html>
<head>
<style type="text/css">
ul
{
list-style-type:none;
margin:0;
padding:0;
overflow:hidden;
}
li
{
float:left;
}
a:link,a:visited
{
display:block;
width:120px;
font-weight:bold;
color:#HHHHHH;
background-color:#98bf21;
text-align:center;
padding:5px;
text-decoration:none;
text-transform:uppercase;
}
a:hover,a:active
{
background-color:#7A991A;
}

</style>
</head>

<body>
<ul>
<li><a href="http://scratch.mit.edu">Home</a></li>
<li><a href="http://scratch.mit.edu/forums/">Forums</a></li>
<li><a href="http://info.scratch.mit.edu/Support">Support</a></li>
<li><a href="http://info.scratch.mit.edu/About_Scratch">About</a></li>
</ul>
</body>
</html>

then save it as website.html
in your documents file.


turn off your note pad app. and go to your documents file.

then find the document that says   website.html

click on that icon.

(try messing around with the html code to get different results)


http://gbryouth.webstarts.com/uploads/event2.jpg

Offline

 

#122 2010-10-25 12:55:03

ProgrammingFreak
Scratcher
Registered: 2010-09-04
Posts: 1000+

Re: ScratcHTML

<p>When is it coming out?</p>

Offline

 

#123 2010-10-25 16:08:09

midnightleopard
Scratcher
Registered: 2007-09-13
Posts: 1000+

Re: ScratcHTML

HTML is a really easy language. Learn text formating like <b> and <i>, learn tables, learn images, learn links, and you're done. Then master CSS, then master JavaScript, then master php.

I love to use XML in websites, it does nothing but helps organize data a lot better. I can teach it to you in one sentence: Add the tag <?xml version="1.0"?> to your head section, then anything you put between < and > counts as a tag.
you can make things like <project name>House Hunt</project name> <project author>MidnightLeopard</project author> or even <project code="aasdg"> </project code>

also, CGI, or ASP can replace php but they aren't as good. There is also a CSS type language ment for styling XML documents called XSLT.


http://pwp.wizards.com/5103673563/Scorecards/Landscape.png

Offline

 

#124 2010-10-28 06:47:22

Daffy22
Scratcher
Registered: 2008-12-15
Posts: 500+

Re: ScratcHTML

I see in the screen shot you've managed to delete the stage and sprite menu. How have you do this? It's something I've tried to do in my mod for ages!  smile


http://img201.imageshack.us/img201/1784/logosmalle.png
"Spectacular - 5 Star" -  CNET.com Editor.

Offline

 

#125 2010-10-28 08:39:18

MathWizz
Scratcher
Registered: 2009-08-31
Posts: 1000+

Re: ScratcHTML

Daffy22 wrote:

I see in the screen shot you've managed to delete the stage and sprite menu. How have you do this? It's something I've tried to do in my mod for ages!  smile

The ScratchFrameMorph is a container for everything. I don't know exactly what you need to edit but it is in ScratchFrameMorph.


http://block.site90.net/scratch.mit/text.php?size=30&amp;text=%20A%20signature!&amp;color=333333

Offline

 

Board footer