Hello, everyone!
This topic deals with The Scratch News, A series I'm making that tells of all things scratch!
In order to gt the best coverage, I am encouraging everyone on the scratch community to contribute!
Upon request from the scratch team, I have moved the place to send your contributions to here.
So, see the project here, and post an article or anything else you feel is would add to it!
Offline
Excellent work.
Would you mind linking to here for the next issue?
Last edited by gershmer (2010-03-28 16:26:08)
Offline
gershmer wrote:
Excellent work.
Would you mind linking to here for the next issue?
Great idea! Since next issue will be all about scratch day, I may wait until the one after to do so, but I definitely will!
Offline
Ooh! I've been writing and printing newsletters that I send to my friends... and its name is "The Scratch News".
Offline
I think it would be pretty kewl if you had like (Projects of the week) or contests of some sort
Offline
Try the next issue with JSO's blog engine! http://scratch.mit.edu/projects/JSO/987851 You know, you could make the pages scroll and stuff, and modify the blog engine to fit the newspaper-like concept.
Offline
What about my project AceOS and the many features which will apear, oh and if you need any help here is the forum http://scratch.mit.edu/forums/viewtopic.php?id=34175
Offline
waveOSBeta wrote:
when's the next issue?
It'll come out a couple days before scratch day.
Offline
my block codes
SCRIPTABLE SCRATCH MORPH ONLY CODES
only blockspec ('image form' #r #imageForm)
('movie' #- #importMovie) blockspec
instance:
importMovie
| t1 t2 t3 |
t1 _ ScratchFileChooserDialog
chooseExistingFileType: #movie
extensions: #(#mov #wmv #avi )
title: 'Import Movie'.
t1 = #cancelled ifTrue: [^ self].
[t2 _ MovieMedia new loadFile: (self asPathRelativeToProject: t1)]
ifError: [^ self].
t3 _ self mediaNameFromFileName: t1 default: 'movie'.
t2 mediaName: (self unusedMediaNameFromBaseName: t3).
media addLast: t2.
self lookLike: t2 mediaName.
self updateMediaCategory
blockspec only: (' record sound from mic' #- #recordSound)
groups of blockspecs: ('%s uppercase' #r #uppercase:) ('%s lowercase' #r #lowercase:) ('reverse %s' #r #rev:)
groups of the instances:
lowercase: t1
^ t1 asLowercase
rev: t1
^ t1 reversed
uppercase: t1
^ t1 asUppercase
blockspec: reporting ('report %s' #r #report:) boolean ('report %s' #b #report:)
instance for both:
report: t1
^ t1
blockspec group:
('true' #b #getTrue) ('false' #b #getFalse)
instance for both:
getFalse
^ false
getTrue
^ true
SPRITE MORPH ONLY CODES
blockspec only group ('pen position' #r #penPosition) ('pen size' #r #penSize) ('pen color' #r #penColor) ('pen down' #r #penDown)
Offline