One question, I think I know the answer for it but, will this be a .image file or an actual application?
Offline
ScratchReallyROCKS wrote:
One question, I think I know the answer for it but, will this be a .image file or an actual application?
I think all programs made in Squeak need to be .image files... Which are run by their respective applications, the VM.
Offline
coolstuff wrote:
ScratchReallyROCKS wrote:
One question, I think I know the answer for it but, will this be a .image file or an actual application?
I think all programs made in Squeak need to be .image files... Which are run by their respective applications, the VM.
Yeah I knew that. I just wasn't sure about Squeak's connection to HTML.
Offline
ScratchReallyROCKS wrote:
coolstuff wrote:
ScratchReallyROCKS wrote:
One question, I think I know the answer for it but, will this be a .image file or an actual application?
I think all programs made in Squeak need to be .image files... Which are run by their respective applications, the VM.
Yeah I knew that. I just wasn't sure about Squeak's connection to HTML.
I think that's irrelevant.
From what I gathered, the mod simply generates a code based on your input.
Offline
billyedward wrote:
Hello, everyone!
I am here to ask for your input on a new little project that I am working on.
It is called ScratcHTML, and it turns scratch into an HTML editor.
I got the idea from jens' chirp's XML exportation feature.
Basically, each HTML element is represented by a block.
Here is a picture of scratcHTML as it currently stands:
http://img25.imageshack.us/img25/818/scratchtmlwin.jpg
This would compile to:Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Using ScratcHTML</title> <link rel='stylesheet' type='text/css' href='/style.css' /> <script>function welcomeMessage() {alert('Welcome to my page!'); }</script> </head> <body> <a href='/index.html'> <img src='/images/banner.jpg' height='100' width='650' /> </a> <q href='/index.html'> An HTML editor in Scratch! </q> <div style='position:absolute;right:100px;top:150px;'> <form action='/search.php' method='get'> <input type='text' name='searchBox' value='' /> <input type='submit' name='search' value='Search!' /> <br /> <b> Search: </b> <input type='radio' name='searchWhat' value='web' /> The Web <input type='radio' name='searchWhat' value='thisSite' /> This Site </form> </div> ScratcHTML can: <ol> <li> Allow you to create HTML documents in a familiar editor </li> <li> Allow you to create HTML documents in a familiar editor </li> </ol> </body> </html>The reason that I am telling you so early in the development stages is to get your opinion on what it should do, what you'd like to see in it, how it should work, etc. Basically, anything that you have to say about it, go ahead!
Suggestions for extensibility are also welcome. For instance, one plan I have is to extend it to all XML types, and then to read the DTD and base the block palette off of that. But that is in the far future, at this point.
OMG!!! IVE BEEN WAITING FOR SOMETHING LIKE THIS FOR AROUND 2/3 OF MY SCRATCH CAREER NOW!!!!!! WHERE CAN I DOWNLOAD IT!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! THIS IS EPIC!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

Offline
Me likes!
That looks awesome!
Offline
billyedward wrote:
Hello, everyone!
I am here to ask for your input on a new little project that I am working on.
It is called ScratcHTML, and it turns scratch into an HTML editor.
I got the idea from jens' chirp's XML exportation feature.
Basically, each HTML element is represented by a block.
Here is a picture of scratcHTML as it currently stands:
http://img25.imageshack.us/img25/818/scratchtmlwin.jpg
This would compile to:Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Using ScratcHTML</title> <link rel='stylesheet' type='text/css' href='/style.css' /> <script>function welcomeMessage() {alert('Welcome to my page!'); }</script> </head> <body> <a href='/index.html'> <img src='/images/banner.jpg' height='100' width='650' /> </a> <q href='/index.html'> An HTML editor in Scratch! </q> <div style='position:absolute;right:100px;top:150px;'> <form action='/search.php' method='get'> <input type='text' name='searchBox' value='' /> <input type='submit' name='search' value='Search!' /> <br /> <b> Search: </b> <input type='radio' name='searchWhat' value='web' /> The Web <input type='radio' name='searchWhat' value='thisSite' /> This Site </form> </div> ScratcHTML can: <ol> <li> Allow you to create HTML documents in a familiar editor </li> <li> Allow you to create HTML documents in a familiar editor </li> </ol> </body> </html>The reason that I am telling you so early in the development stages is to get your opinion on what it should do, what you'd like to see in it, how it should work, etc. Basically, anything that you have to say about it, go ahead!
Suggestions for extensibility are also welcome. For instance, one plan I have is to extend it to all XML types, and then to read the DTD and base the block palette off of that. But that is in the far future, at this point.
THAT IS SO FREAKING AWESOME!
Offline
Sperry wrote:
Although, it will be hard to include everything.
But you never know untill you try.
Offline
Oh my gosh. Amazing idea.
Offline
Also, for the <!DOCTPYE > block, it wouldn't be perfect since this is HTML5's doctype :
<!DOCTPYE html>
Offline
Wow! Awesome!
Though, how about on the right side of the program, it previews the actual web page?
Last edited by Lucario621 (2010-06-24 15:58:02)
Offline
Harakou wrote:
This would be a great intro to HTML for anyone who was new (to HTML). I support 100%!
I never thought of it that way, It would be a great way!
Offline
markyparky56 wrote:
Harakou wrote:
This would be a great intro to HTML for anyone who was new (to HTML). I support 100%!
I never thought of it that way, It would be a great way!
You could do something like:
HTML mode - (The screenshot)
HTMLB (HTML Basic) mode - For example, [br] would be [return] or [enter].
Offline
SeptimusHeap wrote:
markyparky56 wrote:
Harakou wrote:
This would be a great intro to HTML for anyone who was new (to HTML). I support 100%!
I never thought of it that way, It would be a great way!
You could do something like:
HTML mode - (The screenshot)
HTMLB (HTML Basic) mode - For example, [br] would be [return] or [enter].
Interesting idea... HTML BASIC would be better, easier to understand the name.
Offline
markyparky56 wrote:
SeptimusHeap wrote:
markyparky56 wrote:
I never thought of it that way, It would be a great way!You could do something like:
HTML mode - (The screenshot)
HTMLB (HTML Basic) mode - For example, [br] would be [return] or [enter].Interesting idea... HTML BASIC would be better, easier to understand the name.
Sample code:
[Title: Sep's Cool Page]
[ [Center v] Heading: Welcome!]
[ [Normal v] [Left v] Text: Welcome to my page!]
[Break]
[ [Bold v] [Left v] Text: Bold text FTW!]
[Image: www.imghere.lala.png. Link to: www.scratch.mit.edu]
[Image: www.imghere.lala.png.]
[ [Page v] Link to: Part of the page]
[ [Hot v] Link to: www.scratch.mit.edu]
Offline
SeptimusHeap wrote:
markyparky56 wrote:
SeptimusHeap wrote:
You could do something like:
HTML mode - (The screenshot)
HTMLB (HTML Basic) mode - For example, [br] would be [return] or [enter].Interesting idea... HTML BASIC would be better, easier to understand the name.
Sample code:
[Title: Sep's Cool Page]
[ [Center v] Heading: Welcome!]
[ [Normal v] [Left v] Text: Welcome to my page!]
[Break]
[ [Bold v] [Left v] Text: Bold text FTW!]
[Image: www.imghere.lala.png. Link to: www.scratch.mit.edu]
[Image: www.imghere.lala.png.]
[ [Page v] Link to: Part of the page]
[ [Hot v] Link to: www.scratch.mit.edu]
Good ideas...
Offline
nice but the only other script type i know is lua 2.0
i learned it from roblox.com but i could use a lua maker mod ive just compiled scripts to make other scripts like the first and only talk to play song script but it broke my game so i had to do a system backup on it
Offline