Talking LiveCode • Is Create a game-changer?
I'm contemplating taking the (financial) leap to Create. Has it been an eye-opener or has it been a bit ho-hum. Has it changed your development environment for the better? How would you rate it out of...
View ArticleMac OS • Re: LiveCode 10.0.1 rc-1
Hi AI,I tried to recreate the problem you describe.What I found is when I put an "systemAppearanceChanged" handler into the stack script to the example code from the dictionary:CODE: on...
View ArticleTalking LiveCode • Re: Is Create a game-changer?
I have paid for it and still waiting to see...As it is now, for me, it can't be used.Just to give an example, after the initial campaign a page was created https://livecode.com/create-resources which...
View ArticlechartsEngine • Livecode 10 problems
I have an old app that still uses charts engine and works fine, but when I try to use it with Livecode 10 I get an error message to say Chartsengine needs version 3.5 or more. Is there any chance on...
View ArticlechartsEngine • Re: Livecode 10 problems
Hi Andy,no problems with LC 10.0.0 on macOS 15.01.BestKlausStatistics: Posted by Klaus — Mon Oct 21, 2024 5:59 pm
View ArticleGetting Started with LiveCode - Complete Beginners • Disappearing Windows in...
Am working through new and legacy LiveCode tutorials and find any time I click outside the active stack window, say to pause the tutorial video, my Tools and Inspector windows disappear whilst stack...
View ArticleGetting Started with LiveCode - Complete Beginners • Re: Disappearing Windows...
Hi.An interesting question. This is "normal" behavior, I think; there is nothing in the User Guide that addresses this. There are stacks (everything is LC is a stack) that do indeed stay open when...
View ArticleAndroid Deployment • Solution to copy and paste in an android app developed
I share a library developed with Livecode builder that integrates access through JNI to the android sdk functions to access the clipboard and to be able to implement copy and paste functions in an...
View ArticleSoftware Engineering • Using LiveCode for test automation
Hi all,Is it possible and practical to use LiveCode for automating testing of websites? Perhaps via an integration with Selenium or Python or some other technology? If so, can you steer me toward a...
View ArticleGames • Re: Natural Language Processing Techniques
A "Wellness" chatbot built using the NLP approaches I previously uploaded is attached. For what it's meant to be—a template you can experiment with and alter—this functions "fairly" well. Reducing the...
View ArticleGetting Started with LiveCode - Complete Beginners • keyUp, rawKeyUp
Is it possible to have both of these in one script?For instance:CODE: on rawKeyUp RKP put RKP into fld "myField1"end rawKeyUpon keyUp KUP put KUP into fld "myField2"end keyUpPossibly trying to be too...
View ArticleGetting Started with LiveCode - Complete Beginners • Re: keyUp, rawKeyUp
OK, OK: so I'm talking Bollo: can't be done.--HOWEVER; there must be another way to do this sort of thing . . .This does NOT work:CODE: on rawKeyUp RU if the altKey is down then put RU into fld...
View ArticleAndroid Deployment • LC10 rc1: Drop in support for Phone devices
Goodmorning Vietnam...!Today I tried to uplod to Play Console an update of my app, using LC10.0.1 RC1.A certain number of devices were dopped for two reasons: 1 -Doesn't support required OpenGL ES...
View ArticleAndroid Deployment • Re: LC10 rc1: Drop in support for Phone devices
I solved the GPS problem adding the following line in the untime/android/Manifest.xml of LC10:<uses-feature android:name="android.hardware.location.gps" android:required="false" />PS: this...
View ArticleGetting Started with LiveCode - Complete Beginners • Is LiveCode's Echo...
Am submitting message from text app tutorial's SEND button at end of lesson #5 with following code but never see the message at LiveCode's server at:http://lc1582.livecodehosting.com/revchat/even...
View ArticleInternet • Get text from a web page that requires a username and password
Im trying to get some data from a website that uses a username and passwordthe URLhttps://username:password@www.sampleurl ... /accounts/works fine in a web browser, but the code CODE: put...
View ArticleInternet • Re: Get text from a web page that requires a username and password
Hi,You may try this.CODE: put "https://username:password@www.sampleurl.com/v1/accounts/" into tUrlput url("file:" & tUrl) into tResultanswer tResultBest regardsJean-MarcStatistics: Posted by...
View ArticleGetting Started with LiveCode - Complete Beginners • Dialog box error
Hi. I created one button with CODE: ask "Age"put it into field "age"and in the software works this script but in the standalone software not working, the Inclusions is automatic. Why not insert the...
View ArticleGetting Started with LiveCode - Complete Beginners • Re: Dialog box error
Why do I feel that having a variable and a field with the same name is unwise?Statistics: Posted by richmond62 — Sun Oct 27, 2024 12:05 pm
View ArticleInternet • Getting the contents of a web request using load url
Hi,Im looking to use load url instead of get to save long pauses in my app.I have the codeCODE: on validateAPI put "https://www.sample.com/v1/accounts/" into tURL load url tUrl with message...
View Article