Discuss Scratch

SM-OS
New Scratcher
59 posts

Explore 3.4, Scratch mod

Hello powerpoint56 can you please add the following blocks to 3.5:
penmode [Pencil v]::pen
penmode [Bush v]::pen
penmode [Eraser v]::pen

negative costume::looks

dublicate Sprite [sprite1 v] name: []::objects
copy my costume [costume1 v] to [sprite1 v]::looks
copy my sound [plopp v] to [sprite1 v]::sound
temporery variable (a)
Sandro318
Scratcher
100+ posts

Explore 3.4, Scratch mod

SM-OS wrote:

Hello powerpoint56 can you please add the following blocks to 3.5:
penmode [Pencil v]::pen
penmode [Bush v]::pen
penmode [Eraser v]::pen

negative costume::looks

dublicate Sprite [sprite1 v] name: []::objects
copy my costume [costume1 v] to [sprite1 v]::looks
copy my sound [plopp v] to [sprite1 v]::sound
temporery variable (a)
greit!
powerpoint56
Scratcher
1000+ posts

Explore 3.4, Scratch mod

SM-OS wrote:
Hello powerpoint56 can you please add the following blocks to 3.5:
penmode [Pencil v]::pen
penmode [Brush v]::pen //
penmode [Eraser v]::pen // hmm, pretty impossible

negative costume::looks // what would this do?


dublicate Sprite [sprite1 v] name: []::control // too easy to workaround:
<-Workaround


copy my costume [costume1 v] to [sprite1 v]::looks // yes
copy my sound [plopp v] to [sprite1 v]::sound // yes
temporary variable (a)::variables // I'll try!
davidkt
Scratcher
1000+ posts

Explore 3.4, Scratch mod

Just got it! Nice new features, I especially like the (broken) custom dialogs.
Austinato
Scratcher
1000+ posts

Explore 3.4, Scratch mod

powerpoint56 wrote:

SM-OS wrote:
Hello powerpoint56 can you please add the following blocks to 3.5:
penmode [Pencil v]::pen
penmode [Brush v]::pen //
penmode [Eraser v]::pen // hmm, pretty impossible

negative costume::looks // what would this do?


dublicate Sprite [sprite1 v] name: []::control // too easy to workaround:
<-Workaround


copy my costume [costume1 v] to [sprite1 v]::looks // yes
copy my sound [plopp v] to [sprite1 v]::sound // yes
temporary variable (a)::variables // I'll try!

I think (note: think) negative costume::looks means go to the previous costume, instead of going to the next costume.
powerpoint56
Scratcher
1000+ posts

Explore 3.4, Scratch mod

davidkt wrote:

Just got it! Nice new features, I especially like the (broken) custom dialogs.
Broken how?
davidkt
Scratcher
1000+ posts

Explore 3.4, Scratch mod

powerpoint56 wrote:

davidkt wrote:

Just got it! Nice new features, I especially like the (broken) custom dialogs.
Broken how?
You can't put any morphs after the buttons or it raises a big error message.
powerpoint56
Scratcher
1000+ posts

Explore 3.4, Scratch mod

davidkt wrote:

powerpoint56 wrote:

davidkt wrote:

Just got it! Nice new features, I especially like the (broken) custom dialogs.
Broken how?
You can't put any morphs after the buttons or it raises a big error message.
Really? This works fine for me:
davidkt
Scratcher
1000+ posts

Explore 3.4, Scratch mod

Oh, I was wrong. It was the font block.
powerpoint56
Scratcher
1000+ posts

Explore 3.4, Scratch mod

davidkt wrote:

Oh, I was wrong. It was the font block.
Oh. What didn't work?
davidkt
Scratcher
1000+ posts

Explore 3.4, Scratch mod

powerpoint56 wrote:

davidkt wrote:

Oh, I was wrong. It was the font block.
Oh. What didn't work?
If it's used, it gives a big error.
powerpoint56
Scratcher
1000+ posts

Explore 3.4, Scratch mod

davidkt wrote:

powerpoint56 wrote:

davidkt wrote:

Oh, I was wrong. It was the font block.
Oh. What didn't work?
If it's used, it gives a big error.
Can you give a screenshot of the exact blocks you were using for it?
gigapouch
Scratcher
1000+ posts

Explore 3.4, Scratch mod

When does 3.6 come out?
powerpoint56
Scratcher
1000+ posts

Explore 3.4, Scratch mod

gigapouch wrote:

When does 3.6 come out?
3.5 is still in alpha - a beta testing version will come out soon and the official release will come out early October.
gigapouch
Scratcher
1000+ posts

Explore 3.4, Scratch mod

powerpoint56 wrote:

gigapouch wrote:

When does 3.6 come out?
3.5 is still in alpha - a beta testing version will come out soon and the official release will come out early October.

Oh.
Sandro318
Scratcher
100+ posts

Explore 3.4, Scratch mod

negativ costume
I think it should reverse the colors of the actual costume. as the block ({COLOR} negated)
powerpoint56
Scratcher
1000+ posts

Explore 3.4, Scratch mod

Sandro318 wrote:

negativ costume
I think it should reverse the colors of the actual costume. as the block ({COLOR} negated)
ok, I'll try…
Sandro318
Scratcher
100+ posts

Explore 3.4, Scratch mod

Please add the following blocks to the file categorie:
add line [] to file []::brown
add [] as line (1) to file []
replace line (1) with [] in file []
remove line (1) in file []
copy file [] to []
cut file [] and paste it in []
rename file [] with name []

delete [folder v] []
delete [file v] []

Last edited by Sandro318 (Aug. 18, 2014 11:28:59)

powerpoint56
Scratcher
1000+ posts

Explore 3.4, Scratch mod

Sandro318 wrote:

Please add the following blocks to the file categorie:
add line [] to file []::brown
add [] as line (1) to file []
replace line (1) with [] in file []
remove line (1) in file []
copy file [] to []
cut file [] and paste it in []
rename file [] with name []

delete [folder v] []
delete [file v] []
Most of these can be easily redone in Explore - for instance, replace line (1) of {file}:
write (join (replace (1) of (split (read file [file]) at (newline::operators)::list) with [Replaced line]::list) with (newline::operators)::list) to file [file]

Copying files is even easier:
write (read [old file location]) to [new file location] // copying

But I will add cutting files (it's possible, but the “Do you want to delete” message would come up), and try to add deleting folders.
Sandro318
Scratcher
100+ posts

Explore 3.4, Scratch mod

powerpoint56 wrote:

Most of these can be easily redone in Explore - for instance, replace line (1) of {file}:
write (join (replace (1) of (split (read file [file]) at (newline::operators)::list) with [Replaced line]::ists) with (newline::operators)::list)::operators to file [file]::lists

Copying files is even easier:
write (read [old file location]) to [new file location] // copying

But I will add cutting files (it's possible, but the “Do you want to delete” message would come up), and try to add deleting folders.
Ok thx

Last edited by Sandro318 (Aug. 18, 2014 16:28:32)

Powered by DjangoBB