ScratchR's can we get TegansPoppy's PDF file on to the support web pages?
Offline
kevin_karplus wrote:
ScratchR's can we get TegansPoppy's PDF file on to the support web pages?
That would be cool. ;] In which case, here's the original Bean file (word processor) from whence it came, in case anyone has other opinions on formatting for the info before final output:
http://guessmedia.com/scratch/ScrSecretsOrigs.zip
(There's also a .rtf and a *cough*M$Word97*gag* format in that zip archive). I know it seems a lot of trouble to go to just to save others 30 seconds of work copying, pasting, and exporting as their own PDF file. But that's 30 seconds you could spend Scratching!
Scratch on. ;]
Never sean a .bean? Check it out! Bean is free: www.bean-osx.com
Offline
Ah! You can also type many other characters in the Scratch website.
On a Mac, hold option and experiment, or Show Keyboard viewer.
Ω≈ç√∫˜µ≤≥÷…¬˚∆˙©ƒ∂ßåœ∑´®� ¥¨ˆøπ“‘«� –ºª•¶§∞¢£™¡`
On a Windows, you can copy them from here.
Offline
WOW I'M DEFINITLY SAVING THIS! (tries to copy) (PC shuts down)
Offline
archmage wrote:
Awesome list! I am saving this to a word file!
Why not just save it to a .txt (notepad) instead if the larger .doc (Word document)? In Word, it saves the font, color, external images, etc. even if there are none, which can multiply the amount of space it takes up. Notepad just saves the text and extension.
Offline
i have no idea what you mean. i mean,
Offline
and
Offline
explain more cause i don't really understand
Offline
Hi gsslord,
Scratch prjojects themselves are really ultra-portable, because Scratch runs bit-identically on many systems and even on the internet. There is no problem in sharing Scratch, because it is free anyway, and you're also free to give it to others, along with your project.
If you're desperate to turn your Scratch project into a stand-alone Windows exe, you might want to try my Scratch2Exe tool: http://www.chirp.scratchr.org/blog/?page_id=8
Let me know if this helps.
Offline
Help - I have been using Scratch in ICT lessons in the UK and as we research projects created by others they are using blocks that are not in our download. How do you download/create new blocks?
Yours
Ben
Birmingham
West Mids
UK
Offline
benballcv wrote:
Help - I have been using Scratch in ICT lessons in the UK and as we research projects created by others they are using blocks that are not in our download. How do you download/create new blocks?
You can't, currently. What blocks are you seeing? They may be blocks that were obsoleted (if that is a verb) such as the Comment Block that was introduced in 1.2 beta but didn't make it to production. Or the Abs block that was made obsolete by 1.2 when that function was added to the list of functions in the drop down list.
Offline
How do I make an animated GIF move? Everytime I import a GIF it dosen't move. Is it impossible to make it move? If so how? Am I asking too many questions?
Offline
Anyone know a good way to incorporate a high scores screen into a game
Offline
On two student projects the sprite moves up or down the screen instead of across. The sprite script block is simple with just move 10 steps and wait. Can't figure out why it is going up and down. Has anyone else experienced this? What have I missed. Thank you for any suggestions.
Offline
Sounds like a nice prank:
The students probably rotated the sprite to face up or down instead of the default left / right direction. You'll notice this when you have a look at the blue line coming out of the sprite-symbol at the top of the Scratch-screen indicating the current direction: If that line goes vertically, the sprite's direction has been changed.
If they were clever they might have rotated the sprite's costume by 90 degrees in the paint editor first, and afterwards rotated the whole sprite back by -90 degrees using the direction-handle in the sprite-area. That way the sprite will not appear to be rotated and still move "sideways". If they indeed managed to come up with such a hack on their own you should be duly impressed...
[I'm going to leave this in the "Scratch Secrets" thread, since it's not exactly Troubleshooting either...]
Offline
I would like to write an IF statement with a long list of ORed values e.g
If Something = 1 or 2 or ...or 1023
Is there an easy way of doing this? I have tried nested OR statements but this becomes very slow after a few ORs and scrolling to the right is no fun. I nearly a list of hundred values each time.
Offline
DrSuper wrote:
I would like to write an IF statement with a long list of ORed values e.g
If Something = 1 or 2 or ...or 1023
Is there an easy way of doing this? I have tried nested OR statements but this becomes very slow after a few ORs and scrolling to the right is no fun. I nearly a list of hundred values each time.
This isn't exactly a "Scratch Secret", so perhaps the admins can move this thread. But I did want to reply, as this is a basic programming task that can be handled in several ways. Unless you are planning on creating 1023 possible outcomes, the obvious way to catch this for action is to test against a range. For example:
<if><< <( x <>> 0 )> <and> <( x <<> 1023 )> >>
That is,
if( x > 0 AND x < 1023 ){
// do stuff
}
Offline
teganspoppy: I think he's looking for something along the lines of a "case" block. he wants to be able to do one of 1023 things depending on the value.
nesting if-then blocks like in a binary search tree is probably the fastest way right now, though if the thing you do is tied to the value (like maybe it's movement is mathematically related to the number), then you might be able to come up with some form of trick.
Offline
phiggins wrote:
How do you programmatically clear the stage
nobody really obviously wrote:
make a blank costume and switch to that.
Offline