Re: [Pharo-users] 3D with Pharo and OpenGL ?

2014-05-25 Thread darrinm
I am having trouble getting NBOpenGL to work. I started with the Pharo 3.0 image from (http://pharo.org/download) and registered/configured NBOpenGL from http://smalltalkhub.com/#!/~PharoExtras/NBOpenGL (ConfigurationOfNBOpenGL-RonieSalgado.18.mcz). The instructions there are a little confusing sin

Re: [Pharo-users] 3D with Pharo and OpenGL ?

2014-05-26 Thread darrinm
Thanks for the help. I'll try to get it working. I haven't found an example of instantiating a StateTracker or a StateTracker class. Where is the version of Roassal3D that works with the latest NBOpenGL? -- View this message in context: http://forum.world.st/3D-with-Pharo-and-OpenGL-tp4760029p

Re: [Pharo-users] 3D with Pharo and OpenGL ?

2014-05-26 Thread darrinm
OK, I've found the R3StateTracker and am working from that. -- View this message in context: http://forum.world.st/3D-with-Pharo-and-OpenGL-tp4760029p4760466.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

[Pharo-users] Mac keyboard bindings

2014-05-27 Thread darrinm
A number of text editing keys don't work like I expect. For example, Home and End don't do anything and Command-left/right don't behave as they do elsewhere in the system. How can I fix these mappings/behaviors? Thanks. -- View this message in context: http://forum.world.st/Mac-keyboard-bindi

Re: [Pharo-users] Mac keyboard bindings

2014-05-31 Thread darrinm
Thanks Stephan. Unfortunately it looks like the problem is deeper. The Home/End (as well as Insert and others) key events don't actually make to the image from the VM. keyUp is received but not keyDown or keystroke. Still looking into why. -- View this message in context: http://forum.world.st/

Re: [Pharo-users] Mac keyboard bindings

2014-05-31 Thread darrinm
OK, I have fixed the problem with a patch to the Pharo VM. I cannot claim to understand what is going on with the keyboard handling there but I see what is missing. Now, how should I go about submitting this patch for inclusion in the VM? diff --git a/platforms/iOS/vm/OSX/sqSqueakOSXCGView.m b/pl

Re: [Pharo-users] Mac keyboard bindings

2014-06-01 Thread darrinm
Thanks for the help Ben. Submitted! -- View this message in context: http://forum.world.st/Mac-keyboard-bindings-tp4760656p4761232.html Sent from the Pharo Smalltalk Users mailing list archive at Nabble.com.

[Pharo-users] Xcode's Swift Playground

2014-06-02 Thread darrinm
This is the sort of thing Smalltalk seems well suited for (live coding w/ value and iteration display). Does anyone know of something like it that has been done before in Smalltalk? I don't have a good link to a demonstration purely of the Playground but there is a little info here: https://develo

Re: [Pharo-users] Xcode's Swift Playground

2014-06-03 Thread darrinm
Here's an example of the Playground in use: https://developer.apple.com/library/prerelease/ios/recipes/xcode_help-source_editor/ExploringandEvaluatingSwiftCodeinaPlayground/ExploringandEvaluatingSwiftCodeinaPlayground.html#//apple_ref/doc/uid/TP40009975-CH26 -- View this message in context: ht