[Newbies] ProcessWrapper

2010-04-27 Thread pascal . vollmer
Hi, A question about ProcessWrapper. I use ProcessWrapper to execute a Windows-application from Squeak. Everything is fine and reproducible as far as I activate this message sequence in the Workspace: ProcessWrapper new useStdout; startWithShellCommand: 'path_to_executable\executable.exe';

Re: [Newbies] Video Media in Squeak

2010-04-27 Thread Bert Freudenberg
On 27.04.2010, at 02:22, David T. Lewis wrote: On Mon, Apr 26, 2010 at 04:08:41PM -0300, Bruno Giacomelli wrote: Sorry to bother once again, but now I come with what that might seen a very begginer question: how can I use Sophie inside a Squeak project? You can look at how the Sophie

Re: [Newbies] Video Media in Squeak

2010-04-27 Thread David Corking
On Mon, Apr 26, 2010 at 04:08:41PM -0300, Bruno Giacomelli wrote:    - Where can I find ealier versions of Squeak? It appears that my version    Squeak 4.1 (released on 17 April 2010) don't have compatibility with    MPEGMoviePlayer yet, I think. Bruno, MPEGPlayer is in the 3.9 images.

[Newbies] Pre-Getting started info: Unicode, utf8, large memory need

2010-04-27 Thread Charles Hixson
Squeak looks interesting, but before getting started I need 3 pieces of info: 1) How does one readwrite utf8 files? 2) Can strings by indexed by chars, even if they are unicode rather than ascii? 3) What happens if you have more data than will fit into RAM? (For 3 use a database is an

Re: [Newbies] Is there a reason why this RadioButton group doesn't ever call the callback?

2010-04-27 Thread John McKeon
Hey Andy I have a radio group defined like this (using your code): renderContentOn:html | group | html form: [ html radioGroup [ :rg | rg radioButton submitOnClick; selected: self contact isMale; callback: [self halt]; with: [html text:'male'].

[Newbies] Re: Is there a reason why this RadioButton group doesn't ever call the callback?

2010-04-27 Thread Andy Burnett
John McKeon wrote: Hey Andy I have a radio group defined like this (using your code): renderContentOn:html | group | html form: [ html radioGroup [ :rg | rg radioButton submitOnClick; selected: self contact isMale; callback: [self halt]; with:

Re: [Newbies] Re: Is there a reason why this RadioButton group doesn't ever call the callback?

2010-04-27 Thread John McKeon
Did you add the submitOnClick sends to the radioButton tags? On Tue, Apr 27, 2010 at 9:17 PM, Andy Burnett andy.burn...@knowinnovation.com wrote: John McKeon wrote: Hey Andy I have a radio group defined like this (using your code): renderContentOn:html | group | html form: [ html

Re: [Newbies] Re: Is there a reason why this RadioButton group doesn't ever call the callback?

2010-04-27 Thread John McKeon
You probably don't want that if you have other inputs on the form anyway. You really should be posting this to the Seaside list as well. You would probably have your answer by now. John On Tue, Apr 27, 2010 at 9:37 PM, John McKeon p3ano...@gmail.com wrote: Did you add the submitOnClick sends

Re: [Newbies] Pre-Getting started info: Unicode, utf8, large memory need

2010-04-27 Thread Herbert König
Hi Charles, CH 1) How does one readwrite utf8 files? the FileStream class uses UTF8 files by default since some time. So if you want non utf8 files (e.g. for speed reasons) you have to take extra measures. CH 2) Can strings by indexed by chars, even if they are unicode rather CH than ascii?

Re: [Newbies] Video Media in Squeak

2010-04-27 Thread karl ramberg
Hi, package seems to be missing in Squeak4.1 You can load it from Squeak3.9 repository: Add repository to Monticello: MCHttpRepository location: 'http://source.squeak.org/39a' user: '' password: '' Load package Movies It complains about dependensies, proceed trough that.