Well if you have a specific template in mind then you can use Pillar and input the final results as images back to Morphic.
Creating a full PowerPoint implementation with Morphic sounds an overkill to me. Why waste all this time when there so many great external solutions ?
Or you even bypass Pillar and go straight to a PowerPoint app, export to jpgs and import to Morphic. Definetly not more than 2 hours work. If you love open source LibreOffice has an excellent presentation app
https://www.libreoffice.org/discover/impress/
Yes I was thinking of something like the morphic approach with a palette for adding buttons, text, images (maybe someone has done a simple vector paint app - didn't think to check).Of course it quickly gets annoying without a simple template mechanism to have a consistent header/footer - and you also need to try it on a projector and make sure it actually looks right... and so it will take longer than a few hours is my fear (my morphic is a bit rusty too).Not a horrible amount of work - but I actually need to create my slides and demo so may be a longer term project unless someone has already done it.TimSent from my iPhoneWell technically this is easy to do with Morphic. Probably Spec 2. Doing it from inside the Pharo window will give you the ability to demonstrate live code and Morphic is live code.
If you don���t want to do everything with Morphic you can create this in any app of your choosing , export to images and have Morphic load those images. I don���t see why this would take more than a couple of hours to prepare , the actual Morphic code should not take more than 20 minutes.
It a simple case of a SystemWindowMorph embedding a couple of button morph (for going forward and backward) and an ImageMorph. Plus a timer if you want the slides to proceed automatically.
If you feel adventurous you can do this entirely on Morphic , again should not take you more than two hours total together with content creation. TextMorph should be more than enough.
I would have said use Pillar but in this case it���s an overkill and Pillar does not allow for the precise positioning of images like Morphic does.On Wed, 1 Nov 2017 at 20:35, Tim Mackinnon <tim@testit.works> wrote:Hi - has anyone made anything where you can create a full screen presentation in Pharo with slides with some large text, bullet points and embedded pictures - but then it���s a facade that lets you evaluate items in the slide or jump to any code mentioned?
Sort of like what Alan Kay does in the eToys images?
I need to do a presentation next week and I always loved it when I was fooled into thinking I was looking at a static���ish powerpoint and then suddenly realised it was a live environment.
It doesn���t sound that hard to do something simple - but I���m not sure if I can pull it off in time for my presentation. But am curious if we have something.
(For bonus points, GT-Spotter stuff would work in it over top of the presentation to demonstrate simple things)
Tim