up vote 1 down vote favorite
1
share [g+] share [fb]

Hi I have text editor widget in smalltalk (visual works) that returns a text object, however I want the text returned to be handled as a string object.

How do you parse a text object as a string?

link|improve this question

71% accept rate
feedback

2 Answers

up vote 2 down vote accepted

if Text and String are different classes in VW Smalltalk (which I don't have easy access to at the moment), see if you can call yourText asString or perhaps String newFrom: yourText or maybe yourText as: String. Most of these would work in Squeak Smalltalk.

link|improve this answer
x := myInt printString worked fine. – user69514 Oct 24 '09 at 23:29
feedback

You send #string to the Text object

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.