works in VLC on mac as well! :)
On 31 October 2013 10:44, Bernat Romagosa wrote:
> For the Gnu/Linux people, you can watch the talk via:
>
> mplayer 'mms://
> fibtv.fib.upc.es/videoteca/20131030-1055_Pharo_Objects_at_your_Fingertips.wmv?cat=2&vid=821
> '
>
>
> 2013/10/31 Sven Van Caekenberghe
>
On 31 October 2013 10:30, Sven Van Caekenberghe wrote:
> Beautiful and useful !
>
> except that video is in Silver format,
not avail on macos. :(
Is there a copy with more open encoding (like mp4/mpeg?)
> On 31 Oct 2013, at 10:08, Marcus Denker wrote:
>
> > The idea of this talk is to give an
You can try something like this:
| handle window |
handle := NativeBoost forCurrentPlatform squeakWindowHandle.
window := NBWin32Window new value: handle; yourself.
window hide.
or
window setWindowText: 'im a main window blablabla'.
:)
i didn't tested it since its been implemented, but i thin
ok... then we have a problem.
but we need more data...
which image version are you using?
and which vm version?
cheers,
Esteban
On Oct 31, 2013, at 11:24 AM, Annick Fron wrote:
> I hâve thé error on Windows
>
> Envoyé de mon iPod
>
> Le 31 oct. 2013 à 14:51, Igor Stasenko a écrit :
>
>
On Oct 31, 2013, at 3:01 PM, Paolo Piccinelli wrote:
> Hi Everybody,
>
> i'd like to know what can i have to do to create a .exe application/desktop
> application, after creating a Package with all the working classes in Pharo
> 2.0. I created the Minesweeper game, and i'm tired to write into
Benjamin wrote:
There are some places in the system where you can put txt file that will be loaded when you image starts
Ben
On 31 Oct 2013, at 16:31, Paolo Piccinelli wrote:
Hi Ben, thanks for the fast reply.
What do you mean for "use the preferences?". Is it a method, right?
There are some places in the system where you can put txt file that will be
loaded when you image starts
Ben
On 31 Oct 2013, at 16:31, Paolo Piccinelli wrote:
> Hi Ben, thanks for the fast reply.
> What do you mean for "use the preferences?". Is it a method, right? It's my
> first ever applic
Hi Ben, thanks for the fast reply.What do you mean for "use the preferences?".
Is it a method, right? It's my first ever application, so i need some
explanation about that.Thanks again.Paolo
Will preferences work if the application is distributed to other
machines. I guess it might work if the preferences file sits next to
the image file, but not automatically if it was installed on another
machine via a ConfigurationOfXXX.
The other alternative may be to plug into the #startup m
On Oct 30, 2013, at 10:37 PM, Paul DeBruicker wrote:
> Hi,
>
> I'm thinking to use travisci.org to build and test some of the MIT licensed
> packages I've been maintaining.
excellent!
I hope that inria will pay us an engineer for doing that for all the community
packages.
> I'd like to g
I hâve thé error on Windows
Envoyé de mon iPod
> Le 31 oct. 2013 à 14:51, Igor Stasenko a écrit :
>
>
>
>
>> On 31 October 2013 11:23, Annick Fron wrote:
>> Hi Igor
>>
>> I have done that, but still gets an error, do I need to remove NativeBoost ?
>> Annick
>
> FFI not supported on ARM
>
What you can do here, is using the preferences to automatically start your app
when a pharo image is open :)
Then your Pharo.exe+your image will turn into a Minesweeper :)
Ben
On 31 Oct 2013, at 15:01, Paolo Piccinelli wrote:
> Hi Everybody,
>
> i'd like to know what can i have to do to creat
2013/10/31 Clément Bera
> Does Alien support ARM ?
>
no
>
> How to do FFI on ARM then if NativeBoost and FFI does not support it ?
>
IMHO you should do a VM plugin
easiest and fastest path currently
Luc
>
>
> 2013/10/31 Igor Stasenko
>
>>
>>
>>
>> On 31 October 2013 11:23, Annick Fron wr
Does Alien support ARM ?
How to do FFI on ARM then if NativeBoost and FFI does not support it ?
2013/10/31 Igor Stasenko
>
>
>
> On 31 October 2013 11:23, Annick Fron wrote:
>
>> Hi Igor
>>
>> I have done that, but still gets an error, do I need to remove
>> NativeBoost ?
>> Annick
>>
>>
> FF
Hi Everybody,
i'd like to know what can i have to do to create a .exe application/desktop
application, after creating a Package with all the working classes in Pharo
2.0. I created the Minesweeper game, and i'm tired to write into the workspace
MSGame new openInWorld. How can i automatize tha
On 31 October 2013 11:23, Annick Fron wrote:
> Hi Igor
>
> I have done that, but still gets an error, do I need to remove NativeBoost
> ?
> Annick
>
>
FFI not supported on ARM
> Le 30 oct. 2013 à 14:12, Igor Stasenko a écrit :
>
> AFAIK, it should be in Configurations browser.
> Else try this:
Am 31.10.2013 11:24, schrieb Sven Van Caekenberghe:
Obviously, abstract classes should not be instanciated,
This is of course known.
Now, the actual error happens in the environment (debugger,
inspector, printString mechanisms): they see a collection and try to
work with it, since it is an i
Michael,
On 31 Oct 2013, at 11:00, Michael Paap wrote:
> Hello list,
>
> in our OOP course we noticed some behaviour of an abstract method, which I
> cannot explain. Maybe you can help me:
>
> If I do the following
>
>SequenceableCollection new add: 123
>
> I would expect an Error. The
Hi Igor
I have done that, but still gets an error, do I need to remove NativeBoost ?
Annick
Le 30 oct. 2013 à 14:12, Igor Stasenko a écrit :
> AFAIK, it should be in Configurations browser.
> Else try this:
>
> Gofer new
> squeaksource: 'MetacelloRepository';
>
> package: 'ConfigurationOf
Just tried in Pharo 1.4, 2.0 and 3.0. It fails in all of them.
The error doesn't happen when sending #add: though. Try doing
SequenceableCollection new and the same thing will happen.
2013/10/31 Michael Paap
> Hello list,
>
> in our OOP course we noticed some behaviour of an abstract method, w
Hello list,
in our OOP course we noticed some behaviour of an abstract method, which
I cannot explain. Maybe you can help me:
If I do the following
SequenceableCollection new add: 123
I would expect an Error. The method add: is not implemented in
SequenceableCollectionbut inherited from
that link works also on windows if you use chrome and have VLC installed .
Thanks for sharing :)
On Thu, Oct 31, 2013 at 11:44 AM, Bernat Romagosa <
tibabenfortlapala...@gmail.com> wrote:
> For the Gnu/Linux people, you can watch the talk via:
>
> mplayer 'mms://
> fibtv.fib.upc.es/videoteca/201
For the Gnu/Linux people, you can watch the talk via:
mplayer 'mms://
fibtv.fib.upc.es/videoteca/20131030-1055_Pharo_Objects_at_your_Fingertips.wmv?cat=2&vid=821
'
2013/10/31 Sven Van Caekenberghe
> Beautiful and useful !
>
> On 31 Oct 2013, at 10:08, Marcus Denker wrote:
>
> > The idea of th
Beautiful and useful !
On 31 Oct 2013, at 10:08, Marcus Denker wrote:
> The idea of this talk is to give an intro for someone who know OO but not
> Pharo (or Smalltalk).
> (this means for someone who does it has noting new)
>
> Pharo: Objects At Your Fingertips
> A talk given at Universi
The idea of this talk is to give an intro for someone who know OO but not Pharo
(or Smalltalk).
(this means for someone who does it has noting new)
Pharo: Objects At Your Fingertips
A talk given at Universitat Politècnica de Catalunya on Oct 30, 2013.
SlideShare:
http://www.slideshare.n
25 matches
Mail list logo