Squeak is a modern, open source implementation of the Smalltalk language, with a history of being very easy to port across platforms.

learn more… | top users | synonyms

1
vote
3answers
25 views

Inconsistencies in smalltalk

I'm a new comer to Smalltalk, and learned it in Squeak. But I find many things confusing in Smalltalk. In Squeak, MetaClass and MetaClass class are each other's class mutually. If I want to create ...
1
vote
1answer
71 views

Smalltalk dictionary as calculator

I'm working on a homework assignment that asks us to create a type of Units class that can keep track of units and perform basic arithmetic on them. The problem description has this bit, which I don't ...
4
votes
1answer
49 views

How to add an instance variable using Refactoring Browser?

I want to add an instance variable programatically to an existing class using Refactoring Browser: | theClass className | className := #MyClass. theClass := (RBClass existingNamed: className) ...
2
votes
2answers
88 views

Squeak Monticello character-encoding

For a work project I am using headless Squeak on a (displayless, remote) Linuxserver and also using Squeak on a Windows developer-machine. Code on the developer machine is managed using Monticello. ...
3
votes
1answer
49 views

How to determine if a method is defined in an ancestor class of an object in Smalltalk

Ok, so I am working on a school assignment in Smalltalk and basically the gist of it is that I am writing 3 classes that "manually" set and override methods. The class MyObject is wrapped in another ...
3
votes
1answer
79 views

Adjusting points in Pharo Smalltalk

I'm new to Smalltalk, so please bear with me. I'm simply trying to make a simple drawing using Morphs. Now I can create Circles and Lines, but I'm having issues adjusting the start and end point ...
1
vote
1answer
34 views

Compiling a class method in squeak in run-time

I would like to add a class method during run time in squeak. I know that there is a method compile, which is defined in Behaviour class, but this one adds the new method I want to the class Instance ...
3
votes
1answer
73 views

Smalltalk: Checking if a method belongs to a class (or its inheritance hierarchy)

Is there a smalltalk message that will answer with a boolean value if a given method (example: passed with #aMethod) belongs to a given class (or its hierarchy)? I want to say something like — (self ...
2
votes
1answer
31 views

Squeak: getting the source code of a method in run-time

I'm writing a small program that modifies a method during run-time in squeak. I saw that in squeak there is a method called: getSource (Defined in CompiledMethod class), that retuns the source code of ...
1
vote
2answers
82 views

Skipping every other array element

So Im trying to skip past every other element and enter them into a collection. I am then converting the collection back to an array and trying to return it. Im not sure whats wrong though. ...
1
vote
1answer
123 views

Make a Matrix class that can be initialized without declaring matrix size first

I am new to Smalltalk and am taking a class init currently. One of the problems we were assigned requires creating a new Class "HeavyMatrix", which is called like this — aMatrix := HeavyMatrix new. ...
3
votes
1answer
107 views

how to change submorph position

I have two morphs that one is in the other. a:= Morph new. b:= Morph new. a addMorph: b. a openInWorld. but when I want to change b's position by doing b position: 100@100, it never shows the ...
5
votes
3answers
80 views

How to define a ConfigurationOf with a #development version that depends on a baseline?

In Pharo, I want to define a Metacello's ConfigurationOfNand2Tetris that has just one package: ConfigurationOfNand2Tetris>>baseline01: spec <version: '0.1-baseline'> spec for: ...
1
vote
0answers
22 views

TextMorph default font size

I'm trying to have an empty TextMorph with a default font size of 12 points, where the original default is 9pts. If I bring up the halo and change the font size to 12pts, the empty TextMorph will ...
3
votes
2answers
77 views

How to bind a LabelMorph/TextMorph to a variable so that the Morph reflects changes of the variable?

I have an object with a variable containing a String. I have a window containing a LabelMorph/TextMorph (or some other Morph that displays Text?). How do i bind the LabelMorph/TextMorph to the ...
3
votes
2answers
80 views

How can I change the font in a CommandShell window in pharo or squeak?

In Pharo and Squeak, if it's installed you can type CommandShell open. and it will open a command window which is basically like a "bash shell" or "terminal window", but it is using a nearly ...
4
votes
2answers
102 views

“:=” and binary message precedence in Smalltalk

I am attempting to learn Smalltalk through the tutorials included with Dolphin Smalltalk X6. My question deals with the evaluation of expressions with multiple messages. My understanding is that ...
4
votes
1answer
116 views

Is there a specific method that would get executed in a class when i load a Monticello package containing this class?

Is there a specific method that would get executed in a class when i load a Monticello package containing this class? An Example: Version 1, SomeMonticelloPackage-MyName.1.mcz: Object subclass: ...
3
votes
2answers
106 views

What is the most efficient way to join two instances of ByteArray?

I want to join two instance of ByteArray in Squeak, Cuis or Pharo Smalltalk b := #[10 11 12 13] asOrderedCollection. b addAll: #[21 22 23 24]. b asByteArray Are there more efficient ways to do ...
2
votes
1answer
43 views

squeak how to use pen goto: and place:

I am making a program in squeak smalltalk and while making it I realized that I didn't know how to use these pieces of code using an array for the x, y values: pen:= Pen new. "to create the ...
0
votes
1answer
18 views

Squeak extensions of the system using HELP menu option

In squeak 4.3 if one follows the menu choices help/extending the system, one is faced with a window displaying text that is commenting some smalltalk expressions. It seems these expressions are aimed ...
3
votes
1answer
68 views

Meaning of icons in class browsers

Does anyone know where one can find a description of the meaning of various "icons" and / or symbols one finds next to classes and methods in various browsers?
3
votes
3answers
70 views

Extending squeak or pharo

Using Monticello package manager does not seem to guarantee that, once you added the interesting package(s), the total image is still coherent. Are there any ways to verify that? Are dependencies ...
6
votes
2answers
216 views

Smalltalk Array Types

When looking at Smalltalk syntax definitions I noticed a few different notations for arrays: #[] "ByteArray" #() "Literal Array" {} "Array" Why are there different array types? In other ...
4
votes
2answers
83 views

Programmatically get the execution order of objects inside a method?

I have this piece of code (taken from ProfStef, but can be any method of any class). How do i programmatically get the order in which the objects are executed by Squeak/Pharo. I know the order of ...
5
votes
2answers
119 views

Morphic: Automatically resize contained group box in a scroll pane?

Testing with Pharo 1.4 summer. I think is better to explain it using screenshots, code is below. This is my initial state (what I'm getting now with my code): I want the group box morph to be ...
5
votes
1answer
70 views

How can the main window title in Squeak and Pharo be set?

How can the main window title in Squeak and Pharo be set? In Pharo I thought it could be set in the System -> Settings Menu but couldn't find anything there. Can it be set only in code?
2
votes
2answers
54 views

Is there a way of listing all the DoIts which have been done in a Smalltalk session?

Is there a way of listing all the DoIts which have been done in a session in Pharo or Squeak as well as which workspaces they were done in? Are the contents of workspaces also tracked, so they can be ...
6
votes
6answers
252 views

Is it possible to extend an individual object in Smalltalk

I'm doing research in Smalltalk reflection, and I was wondering if it was possible to extend an individual object like that would be possible for instance in Ruby. With this I mean a selector that ...
4
votes
3answers
92 views

How to load VMMaker in Squeak?

I am using Squeak 4.4 update 12327, and VM version 4.1.1. I tried to load VMMaker with ConfigurationOf scripts but always fails with exceptions mainly in the Freetype package. Gofer new ...
2
votes
1answer
99 views

Add a new assignment operator

I started using smalltalk and I am trying to add a new assignment operator :>. The current operator used in pharo is no selector so I started to look into the class Scanner where the underscore _ ...
2
votes
1answer
46 views

How do I display the new Squeak background in my trunk image?

I have a Squeak 4.3 image that I have updated through 4.4 by using the trunk update stream, which pulls down source code updates from the Monticello repository here How do I get the new 4.4 desktop? ...
2
votes
1answer
52 views

How to load Metacello in Squeak?

It is known that Metacello first or main target was Pharo, but it seems now that Squeak 4 is supported. I've tried but fails due a missing method. From the Transcript: Starting atomic load Loaded ...
1
vote
2answers
143 views

Accessing instance variables in an eventhandler with smalltalk

I'm pretty new to smalltalk and an apparently easy problem drives me crazy. My own class inheritates from the Morphic class and overwrites keyStroke keyStroke: anEvent Transcript show: myDigitClass. ...
8
votes
5answers
170 views

Why does add: return the object added in Smalltalk collections?

Background Something that catches every Smalltalk newbie is that add: does not return "self" but the object being added. For example, with this code: myCollection := OrderedCollection new add: ...
5
votes
5answers
205 views

Why do methods return “self” by default in Smalltalk?

Background In Smalltalk, if you don't excplicitly return anything then the message passing evaluates to the receiver (or "self" in the message context). For example, given this method: MyClass ...
5
votes
1answer
88 views

Pharo / Squeak environment with dual screens

I was just wondering if there is a way to work with multiple screens in Pharo or Squeak. I am just switching from VisualWorks to Pharo and am really missing this feature. I am used to having my ...
0
votes
2answers
74 views

Local variables in compile text stream (smalltalk)

I'm trying to overwrite the #new message in MyObject. The problem is that when the text gets compiled, the local variables, disp and oldNew are changed to t1 and t2 respectively (I'm using Squeak 4.3) ...
0
votes
2answers
76 views

Validating parameter as a class in Squeak Smalltalk

How can I validate a parameter as a class object? For example, if I want to validate aparameter as string I could write param1 isString. Is there something like isClass?
2
votes
4answers
176 views

Smalltalk binding

I'm not very familiar with smalltalk but what I'm trying to do is override another classes 'new' when I initialize my own class. Does that have anything to do with Class>>bindingOf:? Edit: What I'm ...
3
votes
1answer
99 views

How to indent a block of code in Pharo / Squeak?

With a selected a block of code, I try to indent it by pressing TAB. I would expect the code to be indented. Instead, the selected text is deleted and replaced by a TAB. How come? Is there any ...
2
votes
2answers
103 views

Resize image file (JPEG) in Smalltalk (Pharo)

I am trying to resize an image file on my hard drive with pharo. This is my current way of doing it: img := ImageReadWriter formFromFileNamed: 'picture.jpg'. scaledimage := img scaledIntoFormOfSize: ...
9
votes
2answers
154 views

Implementation Strategies for Object Orientation

I'm currently learning Smalltalk in the Squeak environment and I'm reading "Squeak - A Quick Trip To ObjectLand". I enter the object-oriented paradigm with some prior knowledge from Python and Java ...
1
vote
2answers
140 views

How to connect a Morph to an Object that it is supposed to visualize in Morphic?

Let's say i have Bird class and BirdMorph class. Birds have a position, and i want BirdMorphs to change their position on the screen, whenever the corresponding bird changes it's position. What is ...
3
votes
1answer
162 views

How to use 'Consolas' as the coding font

I would like to change the font for code edition in a Squeak 4.3 image on windows OS, to use if possible the consolas font. I found nothing in the preferences browser to do that easily. That SO ...
3
votes
1answer
207 views

How to deploy a nice One-Window-Application with Pharo or Squeak?

I have an application that has it's entire GUI in one Morph. Pharo and Squeak have one window in the host operating system. Now i want to tie this one Morph to the one Pharo/Squeak window in a way ...
2
votes
1answer
68 views

Method Finder does not find a new method

I am currently following the Squeak By Example book. It shows that when looking for an unknown method one can search the method by the correspondance between its input and its output in the Method ...
2
votes
1answer
241 views

HowTo make a marching ants border in Morphic?

I am looking for a marching ants border or line in Morphic: Wikipedia describes a possbile algorithm: The easiest way to achieve this animation is by drawing the selection using a pen pattern ...
8
votes
2answers
138 views

Glamour and Nautilus questions

In Smalltalk, the system browser is the central tool for pretty much anything. Glamour seems to be a package for building general purpose browsers using a declarative scripting language. From the ...
3
votes
2answers
85 views

Which VM is suitable for which Pharo/Squeak release on which system?

Is there a place (website) where i can find information on which VM is needed (minimum/maximum) for a specific Pharo or Squeak release on a specific OS?

1 2 3 4