LiveCode is a modern day HyperCard (2019)
andregarzia.com
LiveCode is a modern day HyperCard (2019)
1–10 of 69 posts
Re: LiveCode is a modern day HyperCard (2019)
#2Re: LiveCode is a modern day HyperCard (2019)
#3Hey I'm the author of that page, AMA.
Re: LiveCode is a modern day HyperCard (2019)
#4Re: LiveCode is a modern day HyperCard (2019)
#5Previously the closest thing to HyperCard was WinForms, which PSG borrows heavily from. PSG is probably the fastest way for anyone moderately familar with python to throw together an ugly-but-servicable GUI program and I reach for it when I'm in a hurry. The two tricks behind PSG are: 1. very concise and memorable GUI layout with only python code and 2. use of an event loop instead of handlers. All of this sounds pretty basic and obvious, but no one else does it this way.
Re: LiveCode is a modern day HyperCard (2019)
#6Re: LiveCode is a modern day HyperCard (2019)
#7looks more of a modern day visual basic no? (no snark, VB was cool!)
Re: LiveCode is a modern day HyperCard (2019)
#8Hey I'm the author of that page, AMA.
Since you work for LiveCode, do you know if there are any plans to implement platform accessibility APIs, so LiveCode (or at least applications built with it) can work with assistive technologies, such as screen readers for blind people? Besides being the right thing to do, that might unlock some sales to the educational market.
Re: LiveCode is a modern day HyperCard (2019)
#9Earlier quoted context omitted.
Since you work for LiveCode, do you know if there are any plans to implement platform accessibility APIs, so LiveCode (or at least applications built with it) can work with assistive technologies, such as screen readers for blind people? Besides being the right thing to do, that might unlock some sales to the educational market.
That's a great question. Im interested in visual coding tools but, probably in my ignorance, I wonder how any of them work for keyboard and/or screen reader users.
Re: LiveCode is a modern day HyperCard (2019)
#10In the spirit of HN contrarian comments, I'd say the closest thing spiritually to a modern-day HyperCard is PySimpleGUI: https://github.com/PySimpleGUI Previously the closest thing to HyperCard was WinForms, which PSG borrows heavily from. PSG is probably the fastest way for anyone moderately familar with python to throw together an ugly-but-servicable GUI program and I reach for it when I'm in a hurry. The two trick…