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

#1 2013-01-01 10:29:02

nsmbodabor
New Scratcher
Registered: 2011-07-19
Posts: 37

(Help) Creating a Scratch Mod from the source.

So, although I show up as a new scratcher, I've been using scratch mods and watching the AT section for a good year now, and have finally decided to get involved.
I want to play about with making a mod, but i'm struggling to get my feet off the ground, I'm certain I've set the folder up wrong, but I'm just trying to follow the tutorial in the wiki, here's a picture describing my problem....

http://i46.tinypic.com/25gutu1.png

As you might have guessed, yes I am a 'noob' with squeak, but you learn best by trying.


Thanks in advance!  smile

Offline

 

#2 2013-01-01 10:31:39

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: (Help) Creating a Scratch Mod from the source.

hmm, you don't need to download squeak separately... where did you download that scratchsource zip?

Also, Welcome to AT! if you have any questions don't be afraid to ask!


http://i.imgur.com/1QqnHxQ.png

Offline

 

#3 2013-01-01 10:40:54

nsmbodabor
New Scratcher
Registered: 2011-07-19
Posts: 37

Re: (Help) Creating a Scratch Mod from the source.

I just followed these instructions from the tutorial on the wiki;

Before one makes a Scratch Modification, they must have the following:
Scratch installed on their system
The Scratch Source Code downloaded
Squeak installed on their system (get Squeak)
ScratchUISkin (optional)
Graphics editing program (i.e. paint, paintbrush etc...) (optional)
Some basic knowledge for Scratch
Ideas for a Scratch Modification

and downloaded everything that it said....

Offline

 

#4 2013-01-01 10:41:52

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: (Help) Creating a Scratch Mod from the source.

Just saw the tutorial on the wiki... try copying all the binaries(.dll and .exe) from your scratch installation folder into ScratchSource and then run scratch.exe

Last edited by TRocket (2013-01-01 10:43:40)


http://i.imgur.com/1QqnHxQ.png

Offline

 

#5 2013-01-01 10:44:37

nsmbodabor
New Scratcher
Registered: 2011-07-19
Posts: 37

Re: (Help) Creating a Scratch Mod from the source.

Yay! That worked perfectly, thanks!!  smile

Offline

 

#6 2013-01-01 10:45:29

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: (Help) Creating a Scratch Mod from the source.

nsmbodabor wrote:

Yay! That worked perfectly, thanks!!  smile

Your welcome!


http://i.imgur.com/1QqnHxQ.png

Offline

 

#7 2013-01-01 12:16:35

nsmbodabor
New Scratcher
Registered: 2011-07-19
Posts: 37

Re: (Help) Creating a Scratch Mod from the source.

I have another question, how would I edit the GUI? I have put the 'ScratchSkin' folder in the Source folder with the binaries, but it isnt showing my edited logo...

Offline

 

#8 2013-01-01 13:30:37

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: (Help) Creating a Scratch Mod from the source.

nsmbodabor wrote:

I have another question, how would I edit the GUI? I have put the 'ScratchSkin' folder in the Source folder with the binaries, but it isnt showing my edited logo...

You need to reload the skin. To be safe I would backup your source folder before doing this. To reload the skin you need to open a workspace (click the blank area -> open -> workspace), copy the following code into the window(right-click -> paste not Ctrl-V!)

Code:

ScratchFrameMorph readSkinFrom: (FileDirectory default directoryNamed: 'ScratchSkin')

. Then select the code you copied in and right click it, then select 'do it'. This should reload the skin. After doing this save the image for end user and reopen your mod.


http://i.imgur.com/1QqnHxQ.png

Offline

 

#9 2013-01-01 13:58:05

nsmbodabor
New Scratcher
Registered: 2011-07-19
Posts: 37

Re: (Help) Creating a Scratch Mod from the source.

TRocket wrote:

You need to reload the skin. To be safe I would backup your source folder before doing this. To reload the skin you need to open a workspace (click the blank area -> open -> workspace), copy the following code into the window(right-click -> paste not Ctrl-V!)

Code:

ScratchFrameMorph readSkinFrom: (FileDirectory default directoryNamed: 'ScratchSkin')

. Then select the code you copied in and right click it, then select 'do it'. This should reload the skin. After doing this save the image for end user and reopen your mod.

I've just tried that, but i'm having no luck ;(
The 'Based On Scratch from the MIT media lab' image still appears even though i've altered it in the ScratchSkin folder

Offline

 

#10 2013-01-01 14:09:35

al-x
New Scratcher
Registered: 2012-10-03
Posts: 100+

Re: (Help) Creating a Scratch Mod from the source.

nsmbodabor wrote:

TRocket wrote:

You need to reload the skin. To be safe I would backup your source folder before doing this. To reload the skin you need to open a workspace (click the blank area -> open -> workspace), copy the following code into the window(right-click -> paste not Ctrl-V!)

Code:

ScratchFrameMorph readSkinFrom: (FileDirectory default directoryNamed: 'ScratchSkin')

. Then select the code you copied in and right click it, then select 'do it'. This should reload the skin. After doing this save the image for end user and reopen your mod.

I've just tried that, but i'm having no luck ;(
The 'Based On Scratch from the MIT media lab' image still appears even though i've altered it in the ScratchSkin folder

move the scratch window so you can't see it anymore then click on the white space and select "open" then " scratch"

Offline

 

#11 2013-01-01 14:21:13

nsmbodabor
New Scratcher
Registered: 2011-07-19
Posts: 37

Re: (Help) Creating a Scratch Mod from the source.

al-x wrote:

move the scratch window so you can't see it anymore then click on the white space and select "open" then " scratch"

I now get this error,

Dictionary(Object)>>error:
Dictionary>>errorKeyNotFound
[] in ScratchFrameMorph class>>skinAt:
Dictionary>>at:ifAbsent:
ScratchFrameMorph class>>skinAt:ifAbsent:
ScratchFrameMorph class>>skinAt:
ScratchFrameMorph>>createLogo
ScratchFrameMorph>>initialize
ScratchFrameMorph class(Object class)>>new
HandMorph>>openScratchFrame

Offline

 

#12 2013-01-01 14:34:23

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: (Help) Creating a Scratch Mod from the source.

nsmbodabor wrote:

al-x wrote:

move the scratch window so you can't see it anymore then click on the white space and select "open" then " scratch"

I now get this error,

Dictionary(Object)>>error:
Dictionary>>errorKeyNotFound
[] in ScratchFrameMorph class>>skinAt:
Dictionary>>at:ifAbsent:
ScratchFrameMorph class>>skinAt:ifAbsent:
ScratchFrameMorph class>>skinAt:
ScratchFrameMorph>>createLogo
ScratchFrameMorph>>initialize
ScratchFrameMorph class(Object class)>>new
HandMorph>>openScratchFrame

Check you named your logo file right and try reloading the skin again.


http://i.imgur.com/1QqnHxQ.png

Offline

 

#13 2013-01-01 15:12:20

nsmbodabor
New Scratcher
Registered: 2011-07-19
Posts: 37

Re: (Help) Creating a Scratch Mod from the source.

Nope, that doesn't seem to be the problem, they have the same names as the original download ;(

Offline

 

#14 2013-01-01 15:14:09

TRocket
Scratcher
Registered: 2009-08-18
Posts: 1000+

Re: (Help) Creating a Scratch Mod from the source.

nsmbodabor wrote:

Nope, that doesn't seem to be the problem, they have the same names as the original download ;(

weird... I know i've come across this problem before, but, I was in a collab. so someone else did it for me  tongue


http://i.imgur.com/1QqnHxQ.png

Offline

 

#15 2013-01-01 15:16:22

nsmbodabor
New Scratcher
Registered: 2011-07-19
Posts: 37

Re: (Help) Creating a Scratch Mod from the source.

Lucky you!!
It's really irritating me now xD

Offline

 

#16 2013-01-01 19:26:31

nathanprocks
Scratcher
Registered: 2011-04-14
Posts: 1000+

Re: (Help) Creating a Scratch Mod from the source.

nsmbodabor wrote:

Nope, that doesn't seem to be the problem, they have the same names as the original download ;(

I have had that problem before. I don't know why it does that, but deleting the ScratchSkin folder and using a fresh copy of it usually works for me.


http://carrot.cassiedragonandfriends.org/Scratch_Signature/randomsig.php
http://trinary.site40.net/images/scratchrank.php?username=nathanprocks&display=small

Offline

 

#17 2013-01-01 19:53:19

nsmbodabor
New Scratcher
Registered: 2011-07-19
Posts: 37

Re: (Help) Creating a Scratch Mod from the source.

Yeah, that solved the problem!! Thanks!  smile

Offline

 

#18 2013-01-01 20:01:03

nathanprocks
Scratcher
Registered: 2011-04-14
Posts: 1000+

Re: (Help) Creating a Scratch Mod from the source.

nsmbodabor wrote:

Yeah, that solved the problem!! Thanks!  smile

Your welcome.  smile


http://carrot.cassiedragonandfriends.org/Scratch_Signature/randomsig.php
http://trinary.site40.net/images/scratchrank.php?username=nathanprocks&display=small

Offline

 

#19 2013-01-01 20:04:16

nsmbodabor
New Scratcher
Registered: 2011-07-19
Posts: 37

Re: (Help) Creating a Scratch Mod from the source.

You wouldn't be able to help me with this, would you? Or at least point me in the right direction?
http://scratch.mit.edu/forums/viewtopic.php?id=112345

Offline

 

Board footer