| 8June: Place a different AlignmentMorph for each row. AlignmentMorphs inside of AlignmentMorphs is how much of layout occurs in Morphic. Mark Guzdial |
| 8June: No, it should work. What did you load in? Clock.st includes all the basic clock stuff, but to do the UI stuff, you must load each of 1, 2, and 3 in order. Mark Guzdial |
| Sounds like you were working in the cluster and you left your changes file across Samba. Squeak lost the connection, and now you're hosed. Restart and see Squeak FAQ. Mark Guzdial |
| You don't really need one. There are various tools in Squeak for generating GIF, EPS, etc. from ImageMorphs. Mark Guzdial |
| It's a SERIOUSLY bad idea. Think about it – as soon as you redefine String, EVERY STRING IN THE ENTIRE SYSTEM IS NOW "DEFUNCT" – OF THE WRONG FORM!. As the error indicates, String is a kind of class that CANNOT take instance variables. (Array is another.) What is it that you're trying to do, Thomas? Mark Guzdial |
| Ah, I see your issue. You can subclass String, but if you do, you can't add instance variables to it. There is actually more than one kind of class in Smalltalk. One kind (rarely used) doesn't have instance variables per se – instead, it has a chunk of memory that it indexes. String and Array are both of that kind. You can subclass String to add functionality, but you can't mix index and instace variables. Mark Guzdial |
| First off, Rick, there is NO REQUIREMENT TO USE PROCESSES IN THIS PROJECT! Seriously! NONE! You can do this all just fine without forking. Second, the only way to get safe inter-process communication is via Semaphores. You don't have to use waits at all! Simply signal the semaphore. If the other process is waiting for the semaphore, it will proceed when the semaphore gets signalled. Mark Guzdial |
| Why not just addMorph:? addMorphFront:fromWorldPosition: may be placing additional constraints on the morph that gets in your way. I've never had any problem resizing a morph and all its internal morphs. Mark Guzdial |
| It can be whatever you want to look like. The UI design is up to yall. What we want is a graphical interface in which we can create equations with. It it up to yall to figure out how it should look and feel. Eric Anderson |
| It doesn't run any method! It simply returns the symbol (read that section over carefully...). This allows you to do something like model perform: (menu startUp). Mark Guzdial |
| Why is your model waiting for your controller to do something? You don't want your model to be dependent on how your controller acts. Eric Anderson |
| test |
Use a two single apostrophe's in a string. For example to print a single apostrophe to the Transcript type - Transcript show: ''''.Eric Anderson |
Transcript show: ''''., but when I save that value in a string it will store it as ''. Any ideas anyone?