Search found 99 matches

by Emily-Elizabeth
Sat Oct 14, 2023 8:25 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Where are the newbies?
Replies: 110
Views: 810808

Re: Where are the newbies?

Xojo is $399 US for all three desktop platforms (Mac, Windows and Linux)
The same thing for LiveCode is $986.70 US
Guess where I spent my money.

The Xojo trial period also is indefinite, you just can't compile applications but you can use it as long as you want.
by Emily-Elizabeth
Wed Oct 11, 2023 11:33 pm
Forum: Made With LiveCode
Topic: Database Designer (in development)
Replies: 24
Views: 34077

Re: Database Designer (in development)

Released 1.3.0

New: Font Style
New: Font Alignment
Fixed: Font menu

https://github.com/emily-elizabeth/Data ... g/20231011
by Emily-Elizabeth
Tue Sep 26, 2023 9:10 pm
Forum: Databases
Topic: drop column for sqlite [CODE]
Replies: 2
Views: 5308

Re: drop column for sqlite [CODE]

You're welcome.
by Emily-Elizabeth
Wed Sep 20, 2023 6:27 pm
Forum: Made With LiveCode
Topic: Database Designer (in development)
Replies: 24
Views: 34077

Re: Database Designer (in development)

Released 1.2.0 - Note: https://download.cnet.com/Database-Designer/3000-10254_4-78705918.html - Changed: preference file save location on Linux - Changed: can't select the buttons on the main screen - Changed: moved the mode popup to the left - Updated: Getting Started guide - New: font styling of t...
by Emily-Elizabeth
Mon Sep 18, 2023 3:48 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Where are the newbies?
Replies: 110
Views: 810808

Re: Where are the newbies?

The trial version is 10 days for your account, not for each release, so I managed to burn through mine by installing LiveCode and never using it in those 10 days. I am curious about the LiveCode 10 release and wanted to give it a try but am left out in the cold.
by Emily-Elizabeth
Thu Sep 14, 2023 4:20 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Where are the newbies?
Replies: 110
Views: 810808

Re: Where are the newbies?

I'm a newbie and use the outdated Community edition. I looked at the pricing, and as David mentioned, *ouch* for someone who is just playing around. I bought a license to Xojo a year and a half ago and rarely used it, but it was a good deal for three platforms (macOS, Linux and Windows) can't say th...
by Emily-Elizabeth
Sun Jul 23, 2023 10:47 pm
Forum: Internet
Topic: Read from Socket for x Items Problem
Replies: 5
Views: 19626

Re: Read from Socket for x Items Problem

You can always read for each item by reading to the ItemDelimiter character

Code: Select all

read from socket "127.0.0.1:80" until ";"
by Emily-Elizabeth
Fri Jul 14, 2023 12:43 am
Forum: Talking LiveCode
Topic: WARNING RE SONOMA BETA
Replies: 6
Views: 6453

Re: WARNING RE SONOMA BETA

To answer your first question, there was another Sonoma thread talking about LiveCode and it not running properly. https://forums.livecode.com/viewtopic.php?f=104&t=37941
by Emily-Elizabeth
Mon Jun 19, 2023 6:26 pm
Forum: Android Deployment
Topic: how to stop speechSpeakUtterance handler
Replies: 4
Views: 5013

Re: how to stop speechSpeakUtterance handler

From the dictionary
Use the revStopSpeech command to let the user interrupt a lengthy speech, or to stop a speech before it's finished.

You can use the revIsSpeaking function to determine whether there's currently a speech in progress.
by Emily-Elizabeth
Fri Jun 09, 2023 3:20 am
Forum: LiveCode Builder
Topic: macOSDownloadFileFinished
Replies: 1
Views: 3731

macOSDownloadFileFinished

https://github.com/emily-elizabeth/LC_macOSDownloadFileFinished This will bounce the dock folder icon if a file has been downloaded to that folder. Usage: macOSDownloadFileFinished path where path is the path to the downloaded file on MouseUp macOSDownloadFileFinished "/Users/emily-elizabethhoward/D...
by Emily-Elizabeth
Fri Jun 09, 2023 2:53 am
Forum: LiveCode Builder
Topic: macOSRequestUserAttention
Replies: 1
Views: 4324

macOSRequestUserAttention

https://github.com/emily-elizabeth/LC_macOSRequestUserAttention Have your dock icon notify the user that something needs their attention. Usage: RequestUserAttention isCritical where isCritical is a boolean; FALSE bounce the dock icon once, TRUE bounce the dock icon until the application is brought ...
by Emily-Elizabeth
Wed Jun 07, 2023 12:17 am
Forum: Internet
Topic: TCP Socket check if the connection is working
Replies: 11
Views: 12376

Re: TCP Socket check if the connection is working

In your protocol, just send a PING from the client and a PONG reply from the server. If they client does not receive the PONG there's something wrong. This is a check you do every minute or two.

Go to advanced search