Hello, I have next problem:
when trying to write an accent in the workspace I have the following exception 'subscript is out of bounds: -60' This is happening with several different images. Thanks. -- Adrian Norberto Marino <[hidden email]> J2EE Developer. Gentoo/Debian GNU/Linux User 380562. ...With free software you have freedom!... |
You'll need to give a bit more information
which operating system which version of the squeak image which version of the squeak VM On 2009-12-06, at 6:15 PM, Adrian Norberto Marino wrote: > Hello, I have next problem: > > when trying to write an accent in the workspace I have the following > exception > > 'subscript is out of bounds: -60' > > This is happening with several different images. > > Thanks. > > -- > Adrian Norberto Marino <[hidden email]> > J2EE Developer. > Gentoo/Debian GNU/Linux User 380562. > > ...With free software you have freedom!... > > -- =========================================================================== John M. McIntosh <[hidden email]> Twitter: squeaker68882 Corporate Smalltalk Consulting Ltd. http://www.smalltalkconsulting.com =========================================================================== |
Ok, well you should upgrade to the latest version of the 3.10 image, and check the version of the unix VM via squeakvm.org
Also consider the offerings via http://pharo-project.org since they were working on unicode accented character entry via linux earlier in the fall. On 2009-12-06, at 7:50 PM, Adrian Norberto Marino wrote: > I respond your questions more below. > The problem appears when trying to write á or é, í, ó, ú. > I attack a screenshot with the exception. > > You need more information? > > Thanks, > > > El dom, 06-12-2009 a las 19:09 -0800, John M McIntosh escribió: >> You'll need to give a bit more information >> which operating system > The Os is Debian Lenny with kernel 2.6.31-rc8 and also in Gentoo with > kernel 2.6.29-gentoo-r5. >> which version of the squeak image > > Squeak3.10-7159-basic.image > >> which version of the squeak VM > adrian@skynet ~ $ squeak -version > 3.10-5 #1 dom dic 6 23:42:53 ART 2009 gcc 4.3.4 > Squeak3.10beta of 22 July 2007 [latest update: #7159] > Linux skynet 2.6.29-gentoo-r5 #1 SMP Thu Nov 12 17:20:26 ART 2009 x86_64 > AMD Turion(tm) 64 X2 Mobile Technology TL-58 AuthenticAMD GNU/Linux > default plugin location: /usr/lib/squeak/3.10-5/*.so > > >> >> On 2009-12-06, at 6:15 PM, Adrian Norberto Marino wrote: >> >>> Hello, I have next problem: >>> >>> when trying to write an accent in the workspace I have the followingSqueak3.10-7159-basic.image >>> exception >>> >>> 'subscript is out of bounds: -60' >>> >>> This is happening with several different images. >>> >>> Thanks. >>> >>> -- >>> Adrian Norberto Marino <[hidden email]> >>> J2EE Developer. >>> Gentoo/Debian GNU/Linux User 380562. >>> >>> ...With free software you have freedom!... >>> >>> >> >> -- >> =========================================================================== >> John M. McIntosh <[hidden email]> Twitter: squeaker68882 >> Corporate Smalltalk Consulting Ltd. http://www.smalltalkconsulting.com >> =========================================================================== >> >> >> >> >> > -- > Adrian Norberto Marino <[hidden email]> > J2EE Developer. > Gentoo/Debian GNU/Linux User 380562. > > ...With free software you have freedom!... > <screen.png> -- =========================================================================== John M. McIntosh <[hidden email]> Twitter: squeaker68882 Corporate Smalltalk Consulting Ltd. http://www.smalltalkconsulting.com =========================================================================== |
Ok...
It can be helpfull if you load this code: 'From Squeak3.10beta of 22 July 2007 [latest update: #7159] on 20 March 2008 at 4:57:46 pm'! KeyboardInputInterpreter subclass: #UTF32InputInterpreter instanceVariableNames: '' classVariableNames: '' poolDictionaries: '' category: 'Multilingual-TextConversion'! !Latin1Environment class methodsFor: 'subclass responsibilities' stamp: 'jlrr 3/20/2008 12:55'! inputInterpreterClass ^ UTF32InputInterpreter ! ! !UTF32InputInterpreter methodsFor: 'as yet unclassified' stamp: 'jlrr 3/20/2008 12:55'! nextCharFrom: t1 firstEvt: t2 ^ Character value: (t2 at: 6)! ! Just save it as .cs file, enter FileManager & install... |
This should already be in the latest trunk images. Can you try one from
http://ftp.squeak.org/trunk to see if they work correctly? You will also need a current VM from http://squeakvm.org/unix/ (i.e., the 3.11-3.2135 version). Cheers, - Andreas Casimiro de Almeida Barreto wrote: > Ok... > > It can be helpfull if you load this code: > > 'From Squeak3.10beta of 22 July 2007 [latest update: #7159] on 20 March > 2008 at 4:57:46 pm'! KeyboardInputInterpreter subclass: > #UTF32InputInterpreter instanceVariableNames: '' classVariableNames: '' > poolDictionaries: '' category: 'Multilingual-TextConversion'! > !Latin1Environment class methodsFor: 'subclass responsibilities' stamp: > 'jlrr 3/20/2008 12:55'! inputInterpreterClass ^ UTF32InputInterpreter ! > ! !UTF32InputInterpreter methodsFor: 'as yet unclassified' stamp: 'jlrr > 3/20/2008 12:55'! nextCharFrom: t1 firstEvt: t2 ^ Character value: (t2 > at: 6)! ! > > > Just save it as .cs file, enter FileManager & install... > > > |
Free forum by Nabble | Edit this page |