Search found 323 matches
- Tue Oct 26, 2021 10:45 am
- Forum: Feature Proposals
- Topic: Replace LiveCode Script with JavaScript, forever
- Replies: 113
- Views: 435006
Re: Replace LiveCode Script with JavaScript, forever
And even if it turns out your bank has sloppy devs, as long as there are millions of examples of web apps that work wonderfully in Safari I'm unclear what case can be made that the issue is somehow the tech and not the team misusing it. If the world wild web was standards-compliant an app that work...
- Mon Oct 25, 2021 10:57 am
- Forum: Feature Proposals
- Topic: Replace LiveCode Script with JavaScript, forever
- Replies: 113
- Views: 435006
Re: Replace LiveCode Script with JavaScript, forever
If LC doesn't work for you, there are dozens of free alternatives for you to use. Perhaps try Pascal or Elixir or Tcl.
- Mon Oct 25, 2021 10:41 am
- Forum: Feature Proposals
- Topic: Replace LiveCode Script with JavaScript, forever
- Replies: 113
- Views: 435006
Re: Replace LiveCode Script with JavaScript, forever
It's not entirely a bad proposal. I see all manner of things "just work" in a web browser with Javascript. Really? I just happened to have been on my bank's website at the moment I was reading this. They're one of the biggest banks in the world. I told them two years ago their banking application d...
- Fri Oct 15, 2021 5:31 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: online rank
- Replies: 5
- Views: 5992
Re: online rank
You need some shared storage space on a network where you can store this information. For example, you could store in on a FTP server, or in Dropbox. You need to think about this question: what if two people using your app simultaneously try to update that variable. Provided your app has a different...
- Sun Oct 10, 2021 2:46 pm
- Forum: Bug Triage
- Topic: List of open bugs?
- Replies: 11
- Views: 1818
Re: List of open bugs?
2382 bugs if you override the 500 limit. Oh and before Bernard jumps in to tear me to shreds for whining - I just paid nearly £500 to livecode so I do have some skin in the game. Paying customers who point out that bugs need fixing and that promised enhancements are missing are not IMO whining. Tho...
- Sun Oct 10, 2021 10:49 am
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: LiveCode 1 - WASM
- Replies: 5
- Views: 5913
Re: LiveCode 1 - WASM
I remember the parallel programming course of my IT degree. Yikes. Semaphores, monitors, mutexes, etc. It was by far the hairiest part of the degree. It would have been less hairy if they had taught how to do multi-threading using Tcl. https://www.activestate.com/blog/threads-done-right-tcl/ I've do...
- Sun Oct 10, 2021 10:41 am
- Forum: Bug Triage
- Topic: List of open bugs?
- Replies: 11
- Views: 1818
Re: List of open bugs?
I suggested this a few months ago. It met with no enthusiasm.
- Mon Oct 04, 2021 7:46 pm
- Forum: Off-Topic
- Topic: LC vs Flutter
- Replies: 50
- Views: 65400
Re: LC vs Flutter
I am quite curious as to what profession you are referring to, that has a starting salary in excess of £100,000 but which an errant apostrophe could spell ruin (presumably £100,000 doesn't buy you staff to check your spelling for you). Corporate lawyers. In their first few well-paid years they will...
- Mon Oct 04, 2021 7:05 pm
- Forum: Off-Topic
- Topic: LC vs Flutter
- Replies: 50
- Views: 65400
Re: LC vs Flutter
Thanks for the example, Bernard. That middle block is something I've been wanting in LC ever since I played with R: named params. I can never remember the order of all the args for "export snapshot", or the specific sugar in between them we use instead of commas, but if I could name those args like...
- Mon Oct 04, 2021 1:55 pm
- Forum: Off-Topic
- Topic: LC vs Flutter
- Replies: 50
- Views: 65400
Re: LC vs Flutter
I thought I'd go and look at an extended tutorial on Flutter. https://www.tutorialspoint.com/flutter/flutter_tutorial.pdf This piece of code creates a dialog button, sets the title and the text of the dialog button and (I think) closes the dialog when the button is pressed. // user defined function ...
Re: CPU usgae
What happens if you repeat that process but you also put empty into the customproperty when you clear the fields (I know that's not a solution, just trying to identify at what point a change causes your problem).
- Mon Oct 04, 2021 11:24 am
- Forum: Off-Topic
- Topic: LC vs Flutter
- Replies: 50
- Views: 65400
Re: LC vs Flutter
Google's Wave developer community was probably far bigger than the paying userbase for Livecode. Google shelved Wave after a couple of years, dumping it on Apache. Years later, Apache discontinued it. So size of company, number of developers, FOSS - none are guarantees that a technology will survive...
- Sat Oct 02, 2021 1:27 pm
- Forum: Off-Topic
- Topic: LC vs Flutter
- Replies: 50
- Views: 65400
Re: LC vs Flutter
Also with that logic one should only use free opensource tools not maintained or promoted by any one company, as any company can change their mind at any time and smaller companies can go under quite easily. I don’t trust google. But do I trust MS or Apple? Or LiveCode for that matter? So with that...
Re: CPU usgae
However, I'd still advise people not to use default buttons except in the circumstance they are designed for - i.e. as the default action button in a modal dialog. I'd noticed probably a decade ago that just having a single "default button" on a card would cause CPU to jump to 10% or so every time ...
- Wed Sep 29, 2021 12:48 pm
- Forum: Getting Started with LiveCode - Complete Beginners
- Topic: Launch Persistent Shell
- Replies: 12
- Views: 18759
Re: Launch Persistent Shell
Assuming you STARTed the program and set the title of that process to (say) _MyTitle_ you should be able to kill off the hidden process when you close your own app using put "_MyTitle_" into tTitle put quote into q shell( merge( "taskkill /FI [[q]]WINDOWTITLE eq [[tTitle]][[q]]" ) ) I just tried kil...