Hello friends!
I have a spontaneous question for you related
to whether SC has ever considered enabling
website programming?
Otherwise, one would have to learn new
scripting languages such as HTML, CSS,
JavaScript, PHP, SQL, and the like.
Compiling SuperTalk into these codes
seems difficult to me.
So, I am asking more cautiously, does
SuperCard offer any internet capabilities
at all?
I am looking forward to your response.
Thank you in advance –
and all the best!
Karl
--
To view this discussion on the web visit https://groups.google.com/d/msgid/supercard-talk/635727795.3166020.1680711712973%40mail.yahoo.com.
-> So, I am asking more cautiously, does SuperCard offer any internet capabilities at all?
Le 12-mai-2023 à 00:03:46, Richard Gaskin <rgas...@gmail.com> a écrit :I cut my teeth on HyperCard, and in June '89 bought the third copy of SC available at my local computer store; I launched my company with it. I've published works in nearly every xTalk made (OMO, Plus, MetaCard, even the fabulously weird Gain Momentum), so clearly I love SuperTalk and related languages.
This background is prelude to an epiphany I had a couple years ago. I can write that up if it may be interesting, but the outcome is more relevant here right now: I no longer dislike JavaScript.
On the desktop, we have countless languages to choose from.
On the web, we have no choice. It's JavaScript. That's the only thing browsers run.
As Mark noted, many attempts have been made to bring SC and other xTalks to the browser. None proved satisfying. Personally, I don't think they can.
I think the better path to web deployment is to dive in and find the path to enjoying JavaScript.
If I can help share learning resources, tell me where you are and I'll find things that may help. There's lots out there.
Le 05-oct.-2023 à 19:48:21, Richard Gaskin <rgas...@gmail.com> a écrit :Thank you for including the Lotus Jazz link. Those were some good times.
As for JS, oh so many options, but the examples at my favorite reference site may be a good starting point. e.g.:
https://www.w3schools.com/howto/howto_js_slideshow_gallery.asp
Here's how this script works:
folderPath
variable to the path of the folder containing your slideshow images. You should replace "YourSlideshowFolder"
with the actual folder name or path.the files
function and store them in the fileList
variable.htmlCode
variable, including the HTML, head, and body tags.repeat
loop to generate <img>
tags for each image file in the folder and append them to the htmlCode
.</body>
and </html>
tags.htmlFilePath
where the HTML file will be saved. This script will save it in the "Documents" folder as "slideshow.html."htmlCode
variable to the HTML file using the url
function.Please make sure to customize the folderPath
variable to point to your specific folder, and adjust the script as needed for your requirements. Additionally, you may want to include CSS or JavaScript to enhance your slideshow's appearance and functionality.
Here's how this script works:
folderPath
variable to the path of the folder containing your slideshow images. Replace "YourSlideshowFolder"
with the actual folder name or path.the files
function and store them in the fileList
variable.htmlCode
variable, including the HTML, head, and body tags. It also includes a simple CSS style to ensure the images are responsive and fit within the viewport.repeat
loop to generate <img>
tags for each image file in the folder and append them to the htmlCode
.htmlFilePath
where the HTML file will be saved. This script will save it in the "Documents" folder as "slideshow.html."htmlCode
variable to the HTML file using the url
function.This script creates a basic HTML slideshow with responsive images that adapt to the screen size. You can further customize the HTML and CSS to achieve the desired look and functionality for your slideshow.