Hi, thanks for the reply.
FreeType disable/reenable seems to have done the trick. It loaded up my
system fonts, and I was able to select Noto Sans CJK JP, which seems to do
the trick. For reference, this is on Pharo 6 #60334. I also installed this
for text entry: http://smalltalkhub.com/#!/~tomood
By the way your command line :
./pharo -headless Pharo6.image eval --no-quit "OSWindowWorldMorph new open"
works fine. So it must be something to do with how my window is opened. I
have a method that is called from the eval command line
|a|
a:= AppMorph new.
a extent:1000@580.
a color: (Color r:
It's strange - if I run:
./pharo -headless Pharo6App.image eval "MyApp run"
then I get the error: /libSDL2-2.0.so.0: cannot open shared object file: No
such file or directory/
But the main pharo window opens up followed by my OS WIndow. So that works
fine despite the seeming error,
But if I ru
Hi.
I played with such idea few month ago. And it was worked.
I use this script on Mac:
./pharo Pharo6... eval --no-quit "Author useAuthor: 'test' during: [
OSWindowWorldMorph new open]"
where "pharo" was script for headless run.
Maybe Author do not need anymore. There was issue around it.
I
I would like to launch my application main morph in an OS Window from a pharo
image run in headless mode from the command line. But this just gives me a
libSDL2 not found error. I'm using pharo 6 on linux.
Is it possible to use OSWindow to open windows from a headless image? I want
my main applica